practice

practice

University

21 Qs

quiz-placeholder

Similar activities

C Loops

C Loops

University

25 Qs

Oytie_CoreJava_Quiz

Oytie_CoreJava_Quiz

University

20 Qs

C Language 101

C Language 101

University

18 Qs

Quiz Básico de Java

Quiz Básico de Java

7th Grade - Professional Development

25 Qs

Quiz test formation word

Quiz test formation word

University

19 Qs

Algoritmos e Lógica de Programação

Algoritmos e Lógica de Programação

University

20 Qs

Bài kiểm tra

Bài kiểm tra

University

25 Qs

Repaso general Lenguajes de Programación II

Repaso general Lenguajes de Programación II

University

20 Qs

practice

practice

Assessment

Quiz

Education

University

Hard

Created by

parth bhelonde

FREE Resource

21 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a valid comment in Java? Options: a. /** comment */ b. /* comment */ c. /* comment / d. // comment

/* comment *

# comment

// comment //

c. /* comment /

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? (Code snippet provided) Options: a. NPTEL2024\n44java b. NPTEL44\n44java c. NPTEL2024\n2024java d. NPTEL44\n2024java

NPTEL2024 44java

c. NPTEL2024\n2024java

NPTEL44 44java

NPTEL2024 44java

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is used to find and fix bugs in the Java programs? Options: a. JVM b. JRE c. JDK d. JDB

a. JDK

b. JRE

c. JVM

d. JDB

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value returned by the method f() defined below? (Method provided) Options: a. The sum of x and y, that is, x + y. b. The difference of x and y, that is, x - y. c. The maximum of x and y, that is, the larger value of x and y. d. The minimum of x and y, that is, the smaller value of x and y.

The absolute difference of x and y, that is, |x - y|.

c. The maximum of x and y, that is, the larger value of x and y.

The average of x and y, that is, (x + y) / 2.

The product of x and y, that is, x * y.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following program. What will be the output if it is executed? (Code snippet provided) Options: a. Print fi

Print f

Print if

Print fi

Print fi and more

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the 'static' keyword in Java? Options: a. To define a constant b. To create a class method c. To create an instance variable d. To define an interface

To define a method variable

To implement an abstract class

b. To create a class method

To create a subclass

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid way to declare an array in Java? Options: a. int[] arr; b. int arr[]; c. Both a and b d. None of the above

c. Both a and b

int arr = new int[5];

array int[] arr;

int[] = arr;

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?