Java Programming Quiz

Java Programming Quiz

University

57 Qs

quiz-placeholder

Similar activities

куиз с шарп

куиз с шарп

University

56 Qs

EXPERIMENTAL PSYCH QUIZ REVIEW

EXPERIMENTAL PSYCH QUIZ REVIEW

University

52 Qs

Rad Path Chapter 3 Respiratory

Rad Path Chapter 3 Respiratory

University

59 Qs

python

python

KG - Professional Development

60 Qs

Accounting Test 3 Practice

Accounting Test 3 Practice

University - Professional Development

60 Qs

Mastering Java Interfaces

Mastering Java Interfaces

University

61 Qs

PSY 230 Midterm Practice

PSY 230 Midterm Practice

8th Grade - University

61 Qs

Psychology Chapter 1

Psychology Chapter 1

5th Grade - University

60 Qs

Java Programming Quiz

Java Programming Quiz

Assessment

Quiz

Other

University

Medium

Created by

Niveditha N

Used 1+ times

FREE Resource

57 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which method is used to sort an array in Java?

Collections.sort()

Arrays.sort()

array.sort()

sort.array()

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is a valid declaration of a 2D array?

int[][] arr = new int[2][3];

int arr[][] = new int[2,3];

int arr[] = new int[2][3];

int arr[2][3];

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What does this code print? int[][] matrix = { {1, 2}, {3, 4} }; System.out.println(matrix[1][1]);

2

3

4

1

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which loop is best for traversing arrays in Java?

while

do-while

for

goto

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the output of the following code? String s1 = "Java"; String s2 = "Java"; System.out.println(s1 == s2);

true

false

error

null

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which method is used to compare two strings by ignoring case?

equals()

equalsIgnoreCase()

compareTo()

compareIgnoreCase()

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is used to concatenate two strings?

concat()

append()

+ operator

All of the above

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?