NEW
Font size
WorksheetsModule 2
Total questions: 8
Worksheet time: 4mins
What is output?
information the computer or program receives from the user or sensor
hardware devices that allow computers to take in information or control signals from a user
the process by which a computer performs the tasks written in a program; running a program
data or information produced and sent out by a computer
Computers were originally invented to...
to share information on the Internet.
make complex mathematical calculations possible and make tasks easier for humans.
to play video games.
to play Fortnite with complete strangers
Problem definition is...
using a dictionary to define words in a computer program.
using the data and information available to you to describe the problem as specifically as possible.
Which of these is an example of problem definition?
asking someone to help solve an argument between two friends
solving an argument between two friends
bringing Mrs. Selbmann a cookie after lunch
describing an argument between two friends in detail
You use the following command to start drawing a line in your program.
sprite.pen_up()
True
False
Which of these commands will make the sprite appear at a place other than the center of the screen?
sprite = codesters.sprite("ufo")
sprite.go_to(200,-200)
sprite.set_size(0.4)
sprite.glide_to(200,-200)
If you debug the following line of code, what will the correct line of code look like?
sprite.set_color(blue)
sprite.set_color(blue)
sprite.set_color"blue"
sprite.set_color(blue")
sprite.set_color("blue")
Problem decomposition can help you in all areas of life.
True
False
