R
Q. What is the output of the Java code snippet?
int a=10, b=20; int c = a++*2; int d = --b*2; System.out.println(c +"," + d);
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. What will be the output of the following code –
Q. We can use_________ to convert primitive data types to wrapper class types automatically
Q. Which data type has this Minimum and Maximum value from 3.4e-038 to 3.4e+038?
Q. In how many states Threads can be explained ?
Q. What is the error in this code? byte b = 50; b = b * 50;
Q. What is the correct way to check if a string starts with a specific prefix in Java?
Q. When an array is passed to a method, what does the method receive?
Q. Interface methods can be declared with which the following modifiers?
Q. Which of these keywords is used by a class to use an interface defined previously?
Discusssion
Login to discuss.