2023-2024 Fall final study guide

2023-2024 Fall final study guide

9th - 12th Grade

•

37 Qs

quiz-placeholder

Similar activities

if else

if else

Chapter 4 Conditional Execution Test Review

Chapter 4 Conditional Execution Test Review

APCS module 4 review

APCS module 4 review

Conditional Statements

Conditional Statements

AP CSA Conditionals

AP CSA Conditionals

if else conditionals

if else conditionals

AP CSA Conditionals

AP CSA Conditionals

math.random in Java

math.random in Java

2023-2024 Fall final study guide

2023-2024 Fall final study guide

Assessment

Quiz

•

Computers

•

9th - 12th Grade

•

Medium

Created by

John Kim

Used 3+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

37 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code print?


System.out.println(2 % 3);

2

0

3

1

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following code print?


System.out.println(1 / 3);

0.3333333333333333

0

It will result in a run time error

It will result in a compile time error

0.3

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the value of b after the code is run?


double a = 9.6982;

int b = 12;

b = (int) a;

9.6982

9

10

12

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the result of the following?


double value = Math.random();

int num = (int) (value * 5) + 5;

A random number from 0 to 4

A random number from 1 to 5

A random number from 5 to 9

A random number from 5 to 10

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output ?


System.out.println(1.0 / 3);

0

3

0.333333333333333

0.3 with an infinite number of 3's following the decimal point

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code print when x has been set to 187?


if (x < 0)

System.out.println("x is negative");

else if (x == 0)

System.out.println("x is zero");

else

System.out.println("x is positive");

x is negative

x is positive

x is zero

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is printed when the following code executes and x equals 4 and y equals 3? (hint, read carefully)


if (!(x < 3 || y > 2))

System.out.println("first case");

else

System.out.println("second case");

first case

second case

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?