JAVA Programming QUIZ - 1

JAVA Programming QUIZ - 1

University

20 Qs

quiz-placeholder

Similar activities

TEST1.PY

TEST1.PY

10th Grade - University

20 Qs

Telecommunications

Telecommunications

University

20 Qs

Computer Science Quiz

Computer Science Quiz

University

15 Qs

Microprocessor

Microprocessor

University

20 Qs

C Programming Unit-1 Test-2

C Programming Unit-1 Test-2

University

20 Qs

Java Quiz 1

Java Quiz 1

University

20 Qs

quiz pertemuan 2 asik ddp

quiz pertemuan 2 asik ddp

University

15 Qs

QUIZ 1: REVIEW ON C

QUIZ 1: REVIEW ON C

University

15 Qs

JAVA Programming QUIZ - 1

JAVA Programming QUIZ - 1

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

Anitha R

Used 6+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?