Solved

If a and B Are Both Int Arrays, Then a =

Question 32

Multiple Choice

If a and b are both int arrays, then a = b will


A) create an alias
B) copy all elements of a into b
C) copy the zero element of b into the zero element of a
D) return true if each corresponding element of b is equal to each corresponding element of a (that is, if a[0]is equal to b[0], a[1] is equal to b[1]and so forth) and return false otherwise
E) return true if a and b are aliases and return false otherwise

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions