JAVA Programming QUIZ - 1

JAVA Programming QUIZ - 1

University

20 Qs

quiz-placeholder

Similar activities

JAVA FINAL QUIZ FOR ASSESSMENT

JAVA FINAL QUIZ FOR ASSESSMENT

University

15 Qs

Code Junction 4

Code Junction 4

University

20 Qs

Java Quiz 1

Java Quiz 1

University

20 Qs

Programming Java

Programming Java

University

20 Qs

msp quiz

msp quiz

University - Professional Development

23 Qs

Java Programming

Java Programming

University

20 Qs

Java Coding Questions

Java Coding Questions

University

20 Qs

Susulan PBO XIRPL (2021/2022)

Susulan PBO XIRPL (2021/2022)

11th Grade - University

20 Qs

JAVA Programming QUIZ - 1

JAVA Programming QUIZ - 1

Assessment

Quiz

Computers

University

Hard

Created by

Anitha R

Used 6+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the invalid constant declaration:

final int strength = 100;

final intpass_mark = 50;

final int max value = 50

final float P1 = 3.14159;

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In java characters are compared based on their _______ values.

Bytecode

Unicode

Ascii code

Assembly code

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output of the following code:

public class Main {

public static void main(String[] args) {

String[] fruits = {"Apple","Mango","orange","Grapes"};

fruits[1] ="pineapple";

System.out.println(fruits[1]);

}

}

Apple

Mango

orange

pineapple

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Find the output of the following code:

public class Main {

public static void main(String[] args) {

int[][] myNumbers = { {1, 2, 3, 4}, {5, 6, 7} };

int x = myNumbers[1][2];

System.out.println(x);

}

}

1

2

5

7

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

public class Main {

public static void main(String[] args) {

System.out.println(Math.abs(-9.7));

}

}

-9.7

9,7

. 9

error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these operators can be used to concatenate two or more String objects?

+

+=

&

||

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Output of the progrm

classMain {

public static void main(String args[]) {

int x = 0;

int y = 10;

int z = y/x;

}

}

Compiler error

Compiles and Run file

Compiles fine but throws arithmetic exception.

None

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?