Vidyalelo
Java Programming · Q75

Operators

Programming · Java Programming · question 75

Q75

What is the value stored in x in the following lines of Java code? int x, y, z; x = 0; y = 1; x = y = z = 8;

A.
0
B.
1
C.
9
D.
8
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board