V
Q. What will be the output of the following Java code?
class bool_operator { public static void main(String args[]) { boolean a = true; boolean b = !true; boolean c = a | b; boolean d = a & b; boolean e = d ? b : c; System.out.println(d + " " + e); } }
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 does setAutoCommit(false) do?
Q. What is the output of the following code snippet?
Q. Which thread is executed in the background?
Q. In which file database table configuration is stored?
Q. Classes and Methods are stored in which space?
Q. What is the purpose of the charAt() method of a String object in Java?
Discusssion
Login to discuss.