Single Choice Not Set

QDetermine 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);
	}
}

ID: #2016 Java Data Types and Variables - MCQ 1,644 views
Question Info
#2016Q ID
Not SetDifficulty
Java Data Types and Variables - MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 34 34
  • B 65 34
  • C 65 65
  • D 34 65
Correct Answer

Explanation

65 34

Share This Question

Challenge a friend or share with your study group.