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
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
65 34
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic