What does the program below print?
int first = 10;
int second = first + 5;
first = 20;
System.out.println(second);
AP-Computer Science A
Quiz
•
Computers
•
12th Grade
•
Medium
Abdelsalam Bakr
Used 11+ times
FREE Resource
19 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does the program below print?
int first = 10;
int second = first + 5;
first = 20;
System.out.println(second);
10
15
20
25
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does the following program print?
int age = 32;
int height = 178;
height = age + 10;
System.out.println(age);
32
178
188
42
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does the program below print?
int dividend = 3;
int divisor = 2;
double result = dividend / divisor * 1.0;
System.out.println(result);
3.0
2.0
1.5
1.0
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does the program below print?
int second = 32;
int first = 25;
second = 17;
first = second;
System.out.println(second);
32
17
25
49
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following ways are valid method of declaring and initializing a variable of type double, named money, to equal 3.55?
double money,
money = 3.55;
double money = 3.55;
int money = 3.55;
int money = 3-55;
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What variable type should be used to represent the number of children in a class?
boolean
double
String
int
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
int x = 1;
int y = 2;
int z = 3;
z = x;
x = 0;
y = y + 1;
x = 0, y = 2, z = 1
x = 0, y = 3, z = 3
x = 0, y = 3, z = 1
x = 3, y = 2, z = 3
20 questions
JAVA FUNDAMENTALS
Quiz
•
9th - 12th Grade
18 questions
AP CSA U1L01-03
Quiz
•
11th - 12th Grade
20 questions
Using Data
Quiz
•
10th - 12th Grade
20 questions
Week 6 - CP1
Quiz
•
12th Grade
15 questions
JavaScript and Graphics
Quiz
•
9th - 12th Grade
20 questions
Arrays in Java
Quiz
•
9th - 12th Grade
15 questions
Java Math
Quiz
•
9th - 12th Grade
19 questions
AP Computer Science A Unit 1
Quiz
•
9th - 12th Grade
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
20 questions
Taxes
Quiz
•
9th - 12th Grade
17 questions
Parts of Speech
Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression
Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing
Quiz
•
9th - 12th Grade
10 questions
Identifying equations
Quiz
•
KG - University