R
Q. What is the output of this program?
public class LeftShift_Operator { public static void main(String args[]) { byte A = 65; int i; byte b; i = A << 2; b = (byte) (A << 2); System.out.print(i + " " + b); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. The most used interfaces from the collection framework are?
Q. Which of these Exceptions is thrown by remote method?
Q. In Java, what is the purpose of the final keyword when applied to a class?
Q. Which of the following exceptions is thrown by every method of Runtime class?
Q. Which of these is not a correct statement?.
Discusssion
Login to discuss.