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

🎲 Try a Random Question  |  Total Questions in Quiz: 80  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Core Java — practice the complete quiz, review flashcards, or try a random question.


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