Question: 8. Determine output of the following program public class Test{ int i = 34; public static void main(String args[]) { Test t1 = new

 8. Determine output of the following program public class Test{ int i  

8. Determine output of the following program 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); }

Step by Step Solution

3.40 Rating (150 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Sure Lets go through the program step by step and explain what each line does 1 class A This line de... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!