The variable age is to be used to represent a person’s age, in years. Which of the following is the most appropriate data type for age?

Programming 1 Quiz

Quiz
•
Computers
•
9th Grade
•
Medium
James Behne
Used 1+ times
FREE Resource
9 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Boolean
number
string
list
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
The variable isOpen is to be used to indicate whether or not a store is currently open. Which of the following is the most appropriate data type for isOpen?
Boolean
number
string
list
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Let n be an integer value. Which of the following expressions evaluates to true if and only if n is a two-digit integer (i.e., in the range from 10 to 99, inclusive)?
n = (n MOD 100)
(n ≥ 10) AND (n < 100)
(n < 10) AND (n ≥ 100)
(n > 10) AND (n < 99)
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Consider the following code segment. x ← 23 z ← x MOD y Which of the following initial values of the variable y would result in the variable z being set to 2 after the code segment is executed?
1
2
3
4
5.
MULTIPLE SELECT QUESTION
30 sec • 1 pt
What is displayed as a result of executing the code segment?
10 20 30 40
21 30 40 50
21 40 30 40
21 40 30 50
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Consider the following code segment.:
x ← 25
y ← 50
z ← 75
x ← y
y ← z
z ← x
Which of the variables have the value 50 after executing the code segment?
x only
y only
x and z only
x, y, and z
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Fill in the blank: To find the distance between num1 and num2, you should ________ the absolute values of num1 and num2.
Add
Subtract
Multiply
Divide
8.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
A teacher is writing a code segment that will use variables to represent a student’s name and whether or not the student is currently absent. Which of the following variables are most appropriate for the code segment?
A string variable named s and a Boolean variable named a
A string variable named s and a numeric variable named n
A string variable named studentName and a Boolean variable named isAbsent
A string variable named studentName and a numeric variable named numAbsences
9.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
To attend a particular camp, a student must be either at least 13 years old or in grade 9 or higher, but must not yet be 18 years old. Let age represent a student’s age and let grade represent the student’s grade level. Which of the following expressions evaluates to true if the student is eligible to attend the camp and evaluates to false otherwise?
((age ≥ 13) OR (grade ≥ 9)) AND (age ≤ 18)
((age ≥ 13) OR (grade ≥ 9)) AND (age < 18)
((age ≥ 13) OR (grade ≥ 9)) OR (age ≤ 18)
((age ≥ 13) OR (grade ≥ 9)) OR (age < 18)
Similar Resources on Wayground
13 questions
APCSA Unit 3 Review

Quiz
•
9th - 12th Grade
11 questions
J277 Programming - Data Types

Quiz
•
9th - 11th Grade
12 questions
Python

Quiz
•
7th - 9th Grade
10 questions
Variable warm-up activity

Quiz
•
6th Grade - University
10 questions
Python Data Types

Quiz
•
9th - 12th Grade
8 questions
Python

Quiz
•
KG - 9th Grade
10 questions
KS4 Programming Techniques (1)

Quiz
•
8th - 10th Grade
12 questions
Python Programming Basics

Quiz
•
7th - 11th Grade
Popular Resources on Wayground
25 questions
Equations of Circles

Quiz
•
10th - 11th Grade
30 questions
Week 5 Memory Builder 1 (Multiplication and Division Facts)

Quiz
•
9th Grade
33 questions
Unit 3 Summative - Summer School: Immune System

Quiz
•
10th Grade
10 questions
Writing and Identifying Ratios Practice

Quiz
•
5th - 6th Grade
36 questions
Prime and Composite Numbers

Quiz
•
5th Grade
14 questions
Exterior and Interior angles of Polygons

Quiz
•
8th Grade
37 questions
Camp Re-cap Week 1 (no regression)

Quiz
•
9th - 12th Grade
46 questions
Biology Semester 1 Review

Quiz
•
10th Grade