
Big Idea 3 (Portion) Quiz

Quiz
•
Computers
•
12th Grade
•
Medium
Danzel Umapas
Used 1+ times
FREE Resource
9 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
45 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?
Responses
x and z
2.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Consider the following code segment.
red ← blue
blue ← yellow
red ← red
blue ← blue
What are the values of first and second as a result of executing the code segment?
blue and red
yellow
blue and red
no changes
3.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Assume that both lists and strings are indexed starting with index 1.
The list wordList has the following contents.
["abc", "def", "ghi", "jkl"]
Let myWord be the element at index 3 of wordList. Let myChar be the character at index 2 of myWord. What is the value of myChar?
i
h
f
e
4.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Consider the following code segment.
firstList ← ["guitar", "drums", "bass"]
secondList ← ["flute", "violin"]
thirdList ← []
thirdList ← firstList
firstList ← secondList
secondList ← thirdList
What are the contents of secondList after the code segment is executed?
["flute", "violin", "guitar", "drums", "bass"]
["flute", "violin"]
["guitar", "drums", "bass"]
[]
5.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Consider the following code segment. (see attached image)
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 = 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?
Responses
1
2
3
4
7.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Consider the following procedures for string manipulation.
(see attached image)
Which of the following code segments can be used to store "noon" in the string variable word ?
word ← "no"
word ← concat(reverse(word), word)
word ← "no"
word ← concat(reverse(word), reverse(word))
word ← "on"
word ← concat(reverse(word), word)
word ← "on"
word ← concat(reverse(word), reverse(word))
8.
MULTIPLE SELECT QUESTION
1 min • 2 pts
Consider the following procedures for string manipulation. (see attached image)
Assume that the string oldString contains at least 4 characters. A programmer is writing a code segment that is intended to remove the first two characters and the last two characters from oldString and assign the result to newString.
For example, if oldString contains "student", then newString should contain "ude".
Which of the following code segments can be used to assign the intended string to newString ?
Select two answers.
newString ← substring(oldString, 3, len(oldString) - 4)
newString ← substring(oldString, 3, len(oldString) - 2)
tempString ← substring(oldString, 3, len(oldString) - 2)
newString ← substring(tempString, 1, len(tempString) - 2)
tempString1 ← substring(oldString, 1, 2)
tempString2 ← substring(oldString, len(oldString) - 2, 2)
newString ← concat(tempString1, tempString2)
9.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
The following code segment is used to determine whether a customer is eligible for a discount on a movie ticket.
val1 ← (NOT (category = "new")) OR (age ≥ 65)
val2 ← (category = "new") AND (age < 12)
If category is "new" and age is 20, what are the values of val1 and val2 as a result of executing the code segment?
Responses
val1 = true, val2 = true
val1 = true, val2 = false
val1 = false, val2 = true
val1 = false, val2 = false
Similar Resources on Wayground
10 questions
Variable warm-up activity

Quiz
•
6th Grade - University
12 questions
Python Functions & Library

Quiz
•
12th Grade
13 questions
Computing yr9 Christmas Term

Quiz
•
9th - 12th Grade
12 questions
JavaScript Practices #5

Quiz
•
12th Grade
10 questions
Programming Constructs_Y10

Quiz
•
9th - 12th Grade
10 questions
Year 9 Programming Constructs

Quiz
•
1st - 12th Grade
10 questions
Python Programming Essentials Quiz

Quiz
•
12th Grade
6 questions
AP CSA 4.4 (Nested Loops)

Quiz
•
10th - 12th Grade
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade