Java Basics MP1 Test 3

Java Basics MP1 Test 3

11th Grade

18 Qs

quiz-placeholder

Similar activities

CSA 1.1.2 Variables & Data Types

CSA 1.1.2 Variables & Data Types

11th - 12th Grade

13 Qs

2D Array Test

2D Array Test

9th Grade - University

20 Qs

PEMBOLEHUBAH,PEMALAR DAN JENIS DATA

PEMBOLEHUBAH,PEMALAR DAN JENIS DATA

7th - 12th Grade

20 Qs

AP CS A Unit 3

AP CS A Unit 3

9th - 12th Grade

20 Qs

Struktur Data dan Modular

Struktur Data dan Modular

11th Grade

20 Qs

Java Casting & Booleans

Java Casting & Booleans

10th - 12th Grade

20 Qs

Coding Pre Test

Coding Pre Test

9th - 12th Grade

15 Qs

Ulangan C++ Class XI TKJ

Ulangan C++ Class XI TKJ

11th Grade

20 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?