Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Q 1/44
Score 0
What is the symbol used for comments in Python?
30
#
<!--
/*
//
Q 2/44
Score 0
What is the command to print 'Hello, World!' in Python?
30
echo('Hello, World!')
printLine('Hello, World!')
display('Hello, World!')
print('Hello, World!')
Q 3/44
Score 0
What does the 'len()' function do?
30
Converts a string to lowercase
Reverses a string or list
Returns the maximum value in a list
Returns the length of a string or list
Q 4/44
Score 0
What is the syntax for a 'for' loop in Python?
30
while i < 10:
for i in range(10):
for i in range(1, 10):
for i in (1, 10):
Q 5/44
Score 0
Which keyword is used to define a function in Python?
30
func
function
def
define
Q 6/44
Score 0
Which data structure is ordered and changeable in Python?
30
list
dictionary
tuple
set
Q 7/44
Score 0
What is the command used to print output in Python?
30
output()
print[]
disp()
print()
Q 8/44
Score 0
Which of the following is NOT a control structure in Python?
30
for-each
for
if-else
while
Q 9/44
Score 0
What is a variable in Python?
30
A named location in memory used to store data
A type of function
A way to execute code repeatedly
A way to import modules
Q 10/44
Score 0
What is a function in Python?
30
A way to represent text
A block of reusable code that performs a specific task
A keyword used to declare variables
A way to declare conditions
Q 11/44
Score 0
What is a list in Python?
30
A way to declare conditions
A collection of ordered, changeable, and indexed elements
A named location in memory used to store data
A type of function
Q 12/44
Score 0
What is a string in Python?
30
A block of reusable code that performs a specific task
A way to declare conditions
A type of loop
A sequence of characters
Q 13/44
Score 0
What is a boolean in Python?
30
A keyword used to declare variables
A data type that can have either True or False values
A type of function
A way to represent text
Q 14/44
Score 0
What is a module in Python?
30
A way to import functions
<P>something at the end of the code</P>
A type of loop
A file containing Python definitions and statements
Q 15/44
Score 0
What is an if statement in Python?
30
A way to execute code only if a certain condition is met
A type of function
A way to import modules
A keyword used to declare variables
Q 16/44
Score 0
What is a for loop in Python?
30
A block of reusable code that performs a specific task
A way to declare conditions
A way to execute code repeatedly
A type of loop that executes a block of code for each item in a sequence
Q 17/44
Score 0
What is the output of the following statement? print(5 + 3)
30
6
8
9
7
Q 18/44
Score 0
What is the output of the following statement? print('hello world')
30
world hello
hello world
Hello World
helloworld
Q 19/44
Score 0
What is the output of the following statement? print('apple' + 'banana')
30
applebanana
apple / banana
apple, banana
Q 20/44
Score 0
What is the output of the following statement? print(2 * 3)
30
6
5
8
7
Q 21/44
Score 0
What is the output of the following statement? print(10 % 3)
30
1
0
2
10
Q 22/44
Score 0
What is the output of the following statement? print(len('hello'))
30
6
7
4
5
Q 23/44
Score 0
What is the output of the following statement? print(2 ** 3)
30
6
8
10
9
Q 24/44
Score 0
What is the output of the following statement? print('apple' * 3)
30
apple3
appleapple
appleappleapple
apple, apple, apple
Q 25/44
Score 0
What is the output of the following statement? print(5 == 5)
30
True
False
Error
Null
Q 26/44
Score 0
What is the output of the following statement? print(3 ** 0)
30
0
Null
1
3
Q 27/44
Score 0
What is an algorithm?
30
A type of function
A type of variable
A set of steps to solve a problem
A type of loop
Q 28/44
Score 0
What is a Boolean?
30
A type of data that represents true or false
A type of variable
A type of loop
A type of function
Q 29/44
Score 0
What is an IDE?
30
Integrated Development Environment
Integrated Design Environment
Independent Data Environment
Intelligent Development Engine
Q 30/44
Score 0
What is a loop?
30
A type of variable
A type of function
A data structure
A programming structure that repeats a set of instructions
Q 31/44
Score 0
What is a function?
30
A data structure
A type of loop
A type of variable
A named set of instructions that performs a specific task
Q 32/44
Score 0
What is a conditional statement?
30
A type of variable
A statement that executes code based on a true/false condition
A type of loop
A data structure
Q 33/44
Score 0
What does the acronym PLTW stand for?
30
Programming Language Translation Wizard
Physical Learning Teaching Workshop
Political Legislative Technical Writer
Project Lead The Way
Q 34/44
Score 0
What is the name of the programming language taught in PLTW Computer Science Essentials?
30
Ruby
C++
Java
Python
Q 35/44
Score 0
<P>A joining together of separate items —without changing them—into one place.</P>
30
<P>Concatentation</P>
Incorrect answers will be populated from other questions
Q 36/44
Score 0
<P> The text "Hello World!" is what data type?</P>
30
<P>String</P>
Incorrect answers will be populated from other questions
Q 37/44
Score 0
<P> In MIT App Inventor there are two views the App developer uses to make an App: the Design View and the Blocks view. The Design View is where . . .</P>
30
<P>the app developer makes changes to what the end user will sees when they interact with the app</P>
<P>the app developer writes the code that changes what happens when the app is used.</P>
<P>arguments and procedures are stored.</P>
<P>The backlog is keep before it becomes the sprint list.</P>
Q 38/44
Score 0
<P> The process of saving your App as you develop it with different names to indicate which iteration of the app is most current is called ....</P>
30
<P>version control.</P>
<P>SCRUM</P>
<P>using a naming convention.</P>
<P>procedure building</P>
Q 39/44
Score 0
<P>Output is</P>
30
<P>Information or signals produced or delivered by a computer system.</P>
<P>When you take something outside</P>
<P>Information or signals entered into a computer system. Examples are buttons, keys on a keyboard, touch screens, and accelerometers.</P>
<P>A method of delivery</P>
Q 40/44
Score 0
<P>An action or occurrence that happens during runtime that will trigger a response or behavior by the software. This can be user input, such as clicking a button, or external, such as a device receiving an SMS text message.</P>
30
<P>Happening</P>
<P>prompt</P>
<P>Event</P>
<P>Holiday</P>
Q 41/44
Score 0
<P>According to this class, what is FLOAT</P>
30
<P>a moving target</P>
<P>An optional item in a program</P>
<P>something you do in a pool</P>
<P>a number with digits after the decimal place</P>
Q 42/44
Score 0
<P>What is Abstraction?</P>
30
<P>How something is made</P>
<P>a mathematical equation</P>
<P>You can use something, but don’t need to know exactly how it works</P>
<P>knowing every detail of what makes something work</P>
Q 43/44
Score 0
<P>Abstraction makes coding ________________ for beginners.</P>
30
<P>about the same level of difficulty</P>
<P>easier</P>
Q 44/44
Score 0
<P>Which of these are Arithmetic operators</P>
30
<P>+ - / *</P>
<P>on off</P>
<P>true false</P>
<P>> < /=</P>
44 questions
Q.What is the symbol used for comments in Python?
1
30 sec
Q.What is the command to print 'Hello, World!' in Python?
2
30 sec
Q.What does the 'len()' function do?
3
30 sec
Q.What is the syntax for a 'for' loop in Python?
4
30 sec
Q.Which keyword is used to define a function in Python?
5
30 sec
Q.Which data structure is ordered and changeable in Python?
6
30 sec
Q.What is the command used to print output in Python?
7
30 sec
Q.Which of the following is NOT a control structure in Python?
8
30 sec
Q.What is a variable in Python?
9
30 sec
Q.What is a function in Python?
10
30 sec
Q.What is a list in Python?
11
30 sec
Q.What is a string in Python?
12
30 sec
Q.What is a boolean in Python?
13
30 sec
Q.What is a module in Python?
14
30 sec
Q.What is an if statement in Python?
15
30 sec
Q.What is a for loop in Python?
16
30 sec
Q.What is the output of the following statement? print(5 + 3)
17
30 sec
Q.What is the output of the following statement? print('hello world')
18
30 sec
Q.What is the output of the following statement? print('apple' + 'banana')
19
30 sec
Q.What is the output of the following statement? print(2 * 3)
20
30 sec
Q.What is the output of the following statement? print(10 % 3)
21
30 sec
Q.What is the output of the following statement? print(len('hello'))
22
30 sec
Q.What is the output of the following statement? print(2 ** 3)
23
30 sec
Q.What is the output of the following statement? print('apple' * 3)
24
30 sec
Q.What is the output of the following statement? print(5 == 5)
25
30 sec
Q.What is the output of the following statement? print(3 ** 0)
26
30 sec
Q.What is an algorithm?
27
30 sec
Q.What is a Boolean?
28
30 sec
Q.What is an IDE?
29
30 sec
Q.What is a loop?
30
30 sec
Q.What is a function?
31
30 sec
Q.What is a conditional statement?
32
30 sec
Q.What does the acronym PLTW stand for?
33
30 sec
Q.What is the name of the programming language taught in PLTW Computer Science Essentials?
34
30 sec
Q.A joining together of separate items —without changing them—into one place.
35
30 sec
Q. The text "Hello World!" is what data type?
36
30 sec
Q. In MIT App Inventor there are two views the App developer uses to make an App: the Design View and the Blocks view. The Design View is where . . .
37
30 sec
Q. The process of saving your App as you develop it with different names to indicate which iteration of the app is most current is called ....
38
30 sec
Q.Output is
39
30 sec
Q.An action or occurrence that happens during runtime that will trigger a response or behavior by the software. This can be user input, such as clicking a button, or external, such as a device receiving an SMS text message.
40
30 sec
Q.According to this class, what is FLOAT
41
30 sec
Q.What is Abstraction?
42
30 sec
Q.Abstraction makes coding ________________ for beginners.