J
Q. Determine output
public class Test{ int i = 34; public static void main(String args[]){ Test t1 = new Test(); Test t2 = new Test(); t1.i = 65; System.out.print(t1.i); System.out.print(t2.i); } }
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 'implements' keyword is used to ___.
Q. Is Session a thread-safe object?
Q. An ELSE statement must be preceded by ___ statement in Java.
Q. What software compiles a Java Program?
Q. Which among the following is a Short Circuit AND operator?
Q. Which of the following is used to read input from the user in Java?
Discusssion
Login to discuss.