NEW
Font size
WorksheetsPLTW CSE 3.1- 3.2
Total questions: 50
Worksheet time: 29mins
people = ["John", "Rob", "Bob"]
print (people[4])
what would this result be?
name = 'Dave'
print (name)
name = 'Dave'
greeting = "Good morning" + name
print (greeting)
print(Hello world!)
print("3+4")
amount = 2 + 5 * 2
word= "computer"
for num in range(1,6):
print(word)
What numbers are included in this range call: range(2, 10, 2)
2, 4, 6, 8, 10
2, 4, 6, 8
1, 2, 3, 4, 5, 6, 7, 8, 9
2, 3, 4, 5, 6, 7, 8, 9
A sequence of actions or instructions to follow in solving a problem or accomplishing a task is known as?
Event
Block Based Programming
Procedure
Code
A function of an application or user interface is known as?
Abstraction
Feature
Debugging
Itiration
A process of repeating a set of instructions a specified number of times or until a condition is met is known as?
Abstraction
Feature
Debugging
Itiration
A means to create computer programs by manipulating elements graphically rather than using text is known as?
Python
Block Based Programming
Code
Abstraction
algorithm
You create the user interface
identify errors in programs and fix them
a set of step to accomplish a task
smallest unit of data storage that a program can use
variable
You create the user interface
identify errors in programs and fix them
a set of step to accomplish a task
smallest unit of data storage that a program can use
debugging
You create the user interface
identify errors in programs and fix them
a set of step to accomplish a task
smallest unit of data storage that a program can use
component
a function in an app that you can add in the Designer View
you program the features you added in the Designer View.
an algorithm using symbols in decision making like TRUE/FALSE, YES/NO
a value passed to a storage location to be used by the program
The science of creating artifacts and solving problems using the power of a computer.
user-centered
code
input
computer science
Information or signals entered into a computer system (ex: buttons or touch screens).
user-centered
computer science
input
code
A set of program instructions
abstraction
code
user-centered
iteration
A(n) arithmetic operator is:
Values that a program provides to a function or subroutine
Type of code to perform a math operation, such as + - * /
A set of steps to accomplish a task.
Way to manage complexity, hide details or remove duplication
A(n) string is:
An object such as a number or word. A _____ is an expression that cannot be evaluated any further. Variables are evaluated to a final ____ before operators (arithmetic, relational, or logical) are then used on them.
An action (such as clicking a button) or occurrence (receiving a text message) that happens during runtime that will trigger a response or behavior by the software.
The smallest unit of data storage that a program can use.
A type of variable that holds text (characters, numbers, punctuation or math symbols). Uses quotes to tell the computer to not treat what is inside the string (inside the quotes) as code.
A software application, especially one that a user downloads to a mobile device.
app
append
API
argument
A structured collaborative process in which two people create code together, each with a specific role. The "driver" types at the keyboard and the "navigator" directs the code creation based on the requirements of the development.
pair programming
output
parameter
operating system
True or False: You should be careful when an app that you are downloading ask for personal information?
True
False
An example of an output function would be?
Mouse
Keyboard
Printer
Touch screen
Which below is an example of Computer Science in our lives?
Programable Thermostats
Ring Door bell with Camera
A person with an insulin monitor
All of the above
A(n) integer is:
A programming statement that directs control flow - it uses BOOLEAN expressions to make a choice between different paths (IF (condition) THEN (path1) ELSE (path2)
A precise number by including values after the decimal place
A whole number, it does not have any digits after a decimal.
A data type that can have only 2 values - TRUE or FALSE
A(n) value is:
A type of variable that holds text (characters, numbers, punctuation or math symbols). Uses quotes to tell the computer to not treat what is inside the string (inside the quotes) as code.
An object such as a number or word. A _____ is an expression that cannot be evaluated any further. Variables are evaluated to a final ____ before operators (arithmetic, relational, or logical) are then used on them.
An action (such as clicking a button) or occurrence (receiving a text message) that happens during runtime that will trigger a response or behavior by the software.
The smallest unit of data storage that a program can use.
What does Modulo do
Gives the difference of two numbers
Does simple arithmetic
Give the product when mutiplying
Returns the reminder when divding
