Solved

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

Question 63

Multiple Choice

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


A) create an alias
B) copy all elements of b into a
C) copy the 0ᵗʰ element of b into the 0ᵗʰ element of a
D) return True if each corresponding element of b is equal to each corresponding element of a (that is, 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