Quiz 4: Java Syntax

Quiz 4: Java Syntax

Professional Development

25 Qs

quiz-placeholder

Similar activities

Python Data Structures and loops

Python Data Structures and loops

Professional Development

20 Qs

1101 Day 11 Review

1101 Day 11 Review

Professional Development

20 Qs

PROGRAMMING (From: Businessenglishsite)

PROGRAMMING (From: Businessenglishsite)

Professional Development

20 Qs

Avaliação de conhecimentos FrontEnd

Avaliação de conhecimentos FrontEnd

Professional Development

29 Qs

DCSMAT-DataStructures-Condititonal-iterative

DCSMAT-DataStructures-Condititonal-iterative

Professional Development

20 Qs

Uji Pemahaman Algoritma dan Pemrograman

Uji Pemahaman Algoritma dan Pemrograman

Professional Development

20 Qs

Module 1- Finite Automata

Module 1- Finite Automata

Professional Development

20 Qs

Máy in, Máy Scan và Máy Photocopy

Máy in, Máy Scan và Máy Photocopy

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?