Quiz 4: Java Syntax

Quiz 4: Java Syntax

Professional Development

25 Qs

quiz-placeholder

Similar activities

JS-QUIZ

JS-QUIZ

Professional Development

25 Qs

JavaScript Quizz

JavaScript Quizz

Professional Development

20 Qs

Java Inntro and Variables

Java Inntro and Variables

Professional Development

20 Qs

PHP QUIZ

PHP QUIZ

Professional Development

20 Qs

Ruby

Ruby

Professional Development

20 Qs

SQL Multiple Choice Questions

SQL Multiple Choice Questions

Professional Development

25 Qs

Java Fundamentals - Exame Final - Seção 7 (Classes Java)

Java Fundamentals - Exame Final - Seção 7 (Classes Java)

Professional Development

21 Qs

Avaliação de conhecimentos FrontEnd

Avaliação de conhecimentos FrontEnd

Professional Development

29 Qs

Quiz 4: Java Syntax

Quiz 4: Java Syntax

Assessment

Quiz

Information Technology (IT)

Professional Development

Hard

Created by

MADHURI KETHARI

Used 2+ times

FREE Resource

25 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt


Insert the missing part of the code below to output "Hello World".


public class MyClass {

public static void main(String[] args) {

______.___.________("Hello World");

}

}

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Comments in Java are written with special characters. Insert the missing parts:


___This is a single-line comment

___This is a multi-line comment___

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Create a variable named carName and assign the value Volvo to it.


____________ _________ = ___________;

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Create a variable named maxSpeed and assign the value 120 to it.


____ ___________ = _____;

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Display the sum of 5 + 10, using two variables: x and y.

----- ----- = ---- ;

int y = 10;

System.out.println(x + y);

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Create a variable called z, assign x + y to it, and display the result.

int x = 5;

int y = 10;

--- -- = x + y;

System.out.println();

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Fill in the missing parts to create three variables of the same type, using a comma-separated list:


--- x = 5-- y = 6-- z = 50;

System.out.println(x + y + z);

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?