Home / Programming MCQs / JAVA MCQs / Question
R
Q. What is the output of Java program with Right Shift Operator (>>)?
byte b = 0b00000101; System.out.print(b + ","); b = (byte)(b >> 1); System.out.print(b);
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
What is the output of the below Java program with Enums?
What is the output of following Java Program?
Right Shift >> in Java is equivalent to?
An interface is a blueprint of a class. It has static constants and abstract methods
Which of these methods of a Thread class is used to suspend a thread for a period of time?
Which of these is not a correct statement?
Which field cannot be changed after the object has been constructed?
Discusssion
Login to discuss.