M
Q. Determine output:
class A{ public static void main(String args[]){ int x; x = 10; if(x == 10){ int y = 20; System.out.print("x and y: "+ x + " " + y); y = x*2; } y = 100; System.out.print("x and y: " + x + " " + y); } }
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. Which class can handle any type of request so that it is protocol-independent?
Q. Enumeration returned by ArrayList is
Q. What is -Xms and -Xmx while starting jvm?
Q. How can we take input text from user in HTML page?
Q. Which driver is called as thin-driver in JDBC?
Q. What method must be implemented by all threads?
Q. In Java, which access modifier allows a class member to be accessed from anywhere in the code?
Discusssion
Login to discuss.