Which statement is correct?
A. compiled programs are very susceptible to unauthorized modification
B. the source program library stores application programs in source code form
C. modifications are made to programs in machine code language
D. the source program library management system increases operating efficiency
Answer: B
You might also like to view...
A(n) ________ effect is animation that highlights an object or text that is already displayed
Fill in the blank(s) with correct word
Suppose the String variable str points to the String object "Sunny day" at the memory address 3600. Then the value of str is:
A. the memory address 3600 B. "Sunny day" C. 3600 + "Sunny day" D. None of these
An accelerometer is a hardware device that senses motion or gravity and reacts to these changes. For example, the accelerometer facilitates a screen flip when the device is turned sideways or upside-down
Indicate whether the statement is true or false.
Identify the significance ofthiskeyword in the following constructor function. function objClass(parameters) { this.prop1 = value1; this.prop2 = value2; … this.method1 = function1; this.method2 = function2; … }
A. It refers to the parameters used by the constructor function. B. It refers to the properties associated withthe object class. C. It refers to any method associated withthe object class. D. It refers to any object instance of the object class.