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;
int x, y, z; x = 0; y = 1; x = y = z = 8;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; Correct Answer 8
মোঃ আরিফুল ইসলাম
Feb 20, 2025