MCQs > IT & Programming > Java > Consider below code: class Ex1{ public static void main(String[] args) { int a[] = { 1,2,053,4}; int b[][] = { {1,2,4} , {2,2,1},{0,43,2}}; System.out.print(a[3]==b[0][2] ); System.out.print(' ' + (a[2]==b[2][1])); } } What is the result?

Java MCQs

Consider below code: class Ex1{ public static void main(String[] args) { int a[] = { 1,2,053,4}; int b[][] = { {1,2,4} , {2,2,1},{0,43,2}}; System.out.print(a[3]==b[0][2] ); System.out.print(" " + (a[2]==b[2][1])); } } What is the result?

Answer

Correct Answer: true true

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Java Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Java Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it