JAVA Programming QUIZ - 1

JAVA Programming QUIZ - 1

University

20 Qs

quiz-placeholder

Similar activities

Logika & Pemrograman (ID)

Logika & Pemrograman (ID)

10th Grade - Professional Development

20 Qs

WORKSHOP

WORKSHOP

University

20 Qs

Pemodelan & Simulasi Sistem PRAK

Pemodelan & Simulasi Sistem PRAK

University

21 Qs

Java Control and Loop -2

Java Control and Loop -2

University

20 Qs

Lenguaje de Definición de Datos

Lenguaje de Definición de Datos

University

18 Qs

Java Quiz 3

Java Quiz 3

University

15 Qs

JAVA - Arrays

JAVA - Arrays

University - Professional Development

15 Qs

PBO Inheritance Episode 2

PBO Inheritance Episode 2

University

18 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

Access all questions and much more by creating a free account

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

Already have an account?

Discover more resources for Computers