Which of the following statements about assigning values to arrays is false?

A. We can assign values to individual elements in a fixed-length array.
B. An expression value can be assigned to an array element.
C. When the array values follow a pattern, we can use a loop to assign values.
D. Given two arrays of the same type and size, one array can be assigned to the other.
E. Exchanging values in an array requires the use of a temporary hold area.

Answer: D

Computer Science & Information Technology

You might also like to view...

Which of the following encapsulates Fiber Channel traffic within Ethernet frames?

A. iSCSI B. FCoE C. FCP D. NFS

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

1. Overriding is when a derived class redefines a method from the base class. 2. A constructor for a derived class begins with an invocation of a constructor for the base class. 3. The call to the base class constructor (super) must always be the last action taken in a constructor definition. 4. You may substitute the keyword this for super() to call a constructor of the derived class. 5. An instance variable (or method) that is private in a base class is accessible by name in the definition of a method in any other class.

Computer Science & Information Technology