179k views
4 votes
Which of the following statements are correct?

byte x = 10;
byte y = 20;
if(x == 10)
Console.Write(x + " ");
Console.Write(y);
A) 10 20
B) 10
C) 20
D) None of the above

1 Answer

7 votes

Final answer:

The correct statement in the code is 10 20. When the condition (x == 10) is true, it will print the value of x, which is 10, followed by the value of y, which is 20.

Step-by-step explanation:

The correct statement in the given code is 10 20. When the condition (x == 10) is true, it will execute the code inside the if statement, which is Console.Write(x + " ") and print the value of x, which is 10. After that, it will execute the next statement, Console.Write(y), and print the value of y, which is 20.

User Sadlil
by
8.5k points