P
Q. What will be the output of the following Java program?
class bitwise_operator { public static void main(String args[]) { int a = 3; int b = 6; int c = a | b; int d = a & b; 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. Java is designed for _______ environment of the internet.
Q. Which http method send by browser that asks the server to get the page only?
Q. Which of these packages contains all the event handling interfaces?
Q. What does an interface contain?
Q. What is the preferred way to handle an object's events in Java 2?
Q. What is the output of the Java program?
Q. An interface is a blueprint of a class. It has static constants and abstract methods
Q. Evaluate the following Java expression, if x=3, y=5, and z=10: ++z + y - y + z + x++
Discusssion
Login to discuss.