Quiz 4: Java Syntax

Quiz 4: Java Syntax

Professional Development

25 Qs

quiz-placeholder

Similar activities

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

Python Data Structures and loops

Python Data Structures and loops

Professional Development

20 Qs

Topic 1 Question 161 to 180

Topic 1 Question 161 to 180

Professional Development

20 Qs

HiTech Quiz 7

HiTech Quiz 7

Professional Development

21 Qs

Java Inntro and Variables

Java Inntro and Variables

Professional Development

20 Qs

React Redux

React Redux

Professional Development

20 Qs

Ruby

Ruby

Professional Development

20 Qs

Quiz 4: Java Syntax

Quiz 4: Java Syntax

Assessment

Quiz

Created by

MADHURI KETHARI

Information Technology (IT)

Professional Development

2 plays

Hard

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?