Basic Java Programming Pre-test

Basic Java Programming Pre-test

Assessment

Flashcard

Computers

11th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

11 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which method is used to print Hello World in Java?

Back

System.out.println("Hello World");

2.

FLASHCARD QUESTION

Front

How to create a variable with the numeric value 5? Options: x = 5;, num x = 5, float x = 5;, int x = 5;

Back

int x = 5;

3.

FLASHCARD QUESTION

Front

Which of these statements about Data Types is FALSE?
int stores whole numbers,
double stores fractional numbers,
boolean stores true or false values,
char store a sequence of characters

Back

char store a sequence of characters

4.

FLASHCARD QUESTION

Front

Which library is used to receive input?

Back

java.util.Scanner;

5.

FLASHCARD QUESTION

Front

What is the correct way of using if conditions in Java? Options: if (x = 10), if (x == 10), if (x === 10), if (x != 10)

Back

if (x == 10)

6.

FLASHCARD QUESTION

Front

What is the correct way to start a while loop in Java? Options: while x > y {, while (x > y), while x > y:, x > y while {

Back

while (x > y)

7.

FLASHCARD QUESTION

Front

Which is the correct way of using a For Loop? Options: for (int i==0;i<10;i++), for (m=10;m>10;m--), for (j<1;j=10;j++), for (int k==0;i<=10;i--), for (int l++;l=1;l<10)

Back

for (m=10;m>10;m--)

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?