Quiz 4: Java Syntax

Quiz 4: Java Syntax

Professional Development

25 Qs

quiz-placeholder

Similar activities

Curso Básico de Programación Android en Java-Quizizz 01

Curso Básico de Programación Android en Java-Quizizz 01

Professional Development

20 Qs

HTML, CSS, Terminal & JavaScript

HTML, CSS, Terminal & JavaScript

Professional Development

20 Qs

JavaScript Quizz

JavaScript Quizz

Professional Development

20 Qs

EDIT

EDIT

Professional Development

30 Qs

PHP QUIZ

PHP QUIZ

Professional Development

20 Qs

Python Programming Basics

Python Programming Basics

Professional Development

20 Qs

JS-QUIZ

JS-QUIZ

Professional Development

25 Qs

Quiz 1: Exception Handling

Quiz 1: Exception Handling

Professional Development

20 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?