Java Programming Flashcard - unit 1a

Java Programming Flashcard - unit 1a

Assessment

Flashcard

Information Technology (IT)

9th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

22 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which of the following correctly declares an integer variable in Java? Options: int num = 3;, int num <- 3;, integer num = 3;, int num == 3;

Back

int num = 3;

2.

FLASHCARD QUESTION

Front

Which statement will correctly print "Hello, World!" to the console in Java? Options: print("Hello, World!");, println("Hello, World!");, System.out.println("Hello, World!");, System.print.out("Hello, World!");

Back

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

3.

FLASHCARD QUESTION

Front

What is the correct statement to import the Scanner class in Java?

Back

import java.util.Scanner;

4.

FLASHCARD QUESTION

Front

What is the correct way to create a Scanner object to read user input?

Back

Scanner sc = new Scanner(System.in);

5.

FLASHCARD QUESTION

Front

Which method is used to read an integer input from a Scanner object? Options: nextLine(), nextInt(), getInt(), readInt()

Back

nextInt()

6.

FLASHCARD QUESTION

Front

Which of the following correctly assigns the value 10 to the variable x, in Java? Options: x == 10;, x = 10;, int x <- 10;

Back

x = 10;

7.

FLASHCARD QUESTION

Front

Which of the following correctly concatenates two strings str1 and str2? Options: str3 = str1.concat(str2);, str3 = str1 + str2;, Both a and b, None of the above

Back

str3 = str1 + str2;

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?