Java Basics MP1 Test 3

Java Basics MP1 Test 3

11th Grade

18 Qs

quiz-placeholder

Similar activities

CodeHS APCSP Python

CodeHS APCSP Python

11th - 12th Grade

22 Qs

CodeHS APCSP

CodeHS APCSP

11th - 12th Grade

22 Qs

Exam 4 Review

Exam 4 Review

9th - 12th Grade

20 Qs

Codehs

Codehs

9th - 12th Grade

15 Qs

Coding Pretest

Coding Pretest

9th - 12th Grade

15 Qs

GCSE Computer Science Data types

GCSE Computer Science Data types

10th - 12th Grade

18 Qs

APCSP CodeHS Python

APCSP CodeHS Python

11th - 12th Grade

22 Qs

AP Final Review

AP Final Review

11th - 12th Grade

22 Qs

Java Basics MP1 Test 3

Java Basics MP1 Test 3

Assessment

Quiz

Computers

11th Grade

Hard

Created by

Patrick Bryar

FREE Resource

18 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

A variable that holds a decimal number
String
boolean
int

double

2.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

It is a data type used to hold multiple characters, like words and sentences.

float

char

date

String

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What output will be produced by:

System.out.println("Hello");

System.out.print("Karel");

Hello

Karel

HelloKarel

Hello\nKarel

Error

4.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

Media Image

What does the code segment output?

Media Image
Media Image
Media Image
Media Image

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value of x after this code runs?

int x = 5;

x = 10;

x = 4;

5

10

4

true

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What will the following code print? int n = 5; n++; n++; n += n; System.out.println(n);

12

40

14

18

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Refer to the following code segment:

The student wanted the output to be: 1 / 4 = 0.25

Which change to the first line would get the correct answer?

int myDouble = 1/4;

double myDouble = (double) 1/4;

double myDouble = (int) 1/4;

double myDouble = (int) (1.0/4.0);

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?