Java Printing Quiz

Java Printing Quiz

8th Grade

11 Qs

quiz-placeholder

Similar activities

Writing your first program in Python

Writing your first program in Python

8th Grade

10 Qs

Python Year 9 Final Recall Activity

Python Year 9 Final Recall Activity

7th - 9th Grade

15 Qs

Python Basics Quiz

Python Basics Quiz

7th Grade - University

10 Qs

Python Basic

Python Basic

6th - 8th Grade

10 Qs

Python Selection

Python Selection

8th - 9th Grade

10 Qs

Python Basics - Year 8

Python Basics - Year 8

7th - 9th Grade

14 Qs

Python Revision

Python Revision

8th Grade

16 Qs

Python Intro 1

Python Intro 1

7th - 12th Grade

11 Qs

Java Printing Quiz

Java Printing Quiz

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Elisa Lovejoy

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the proper syntax for the print method for printing in Java?

print()

println()

printf()

display()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to print variables and literals in Java?

print()

println()

printf()

display()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? int x = 5; System.out.print(x);

5

0

null

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? String name = "John"; System.out.println("Hello, " + name);

Hello, John

Hello, name

Hello, null

Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid way to print the value of a variable in Java?

System.out.print(variable)

System.out.print("variable")

System.out.print('variable')

System.out.print("'variable'")

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? int a = 10; int b = 20; System.out.println(a + b);

1020

30

Error

null

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? System.out.print(10 + "20");

1020

30

Error

null

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?