Python Basics
Python and computer terminology from the first unit of Python. Covers variables, types, expressions and basic computer concepts
Created Date
09.28.20
Last Updated
09.29.20
Viewed 23 Times
Create multiple-choice games on Wisc-Online and play them on our Chakalaka mobile app!
But that's not all! Explore educational games created by others. Simply search by category or enter agame code number and dive into a world of learning and fun.
Download the Chakalaka mobile app here:
Topics of this game:
-
The four major functions of a computer are input, __________, processing, and output.
-
The ____ is the component in a computer responsible for the main system processing.
-
Computers store all information in tiny pieces of data called _____.
-
The earliest computers were made out of ________ and ________
-
A bit is a electrical signal that represents ________
-
Using binary numbers you can count up to ____________
-
There are ________ bits in an byte
-
A __________ is a named space in memory used to store information.
-
A __________ is a single executable line of code
-
A _________ is a type of constant or variable that represents an alphanumeric character.
-
Integers and Floating Point variable types both represent numbers, the different being Floating Point numbers include ________.
-
Today's computers store information as an ____________.
-
____________ is a coding system used to represent alphanumeric characters as numbers.
-
The = charcter is used by programs to __________ a value to a variable.
-
In the line of code "x=5+6*7"" the numbers to the right of the = are ____________ prior to being assigned to x.
-
Mice, keyboards, microphones are all __________ devices.
-
The computer monitor, speaker, and __________ are all output devices.
-
The number 17 is stored in the variable x. To convert the variable to a string use the statement____________
-
The message you get if you try to convert the string "apple" to a float is _________.
-
What you type to convert the integer variable Distance to a float
-
You type in ___________ to assign the value of 100 to the variable Number
-
The Python programming language follows ___________ for the order of operations
-
If you first assign the value 10 to the variable x, and then you type in x=100, what will be the value of x?
-
If the variable time=2 and ther variable speed=100 and the variable distance=time*speed, what is the value stored in distace
-
________ is the operator used to concatenate two strings.
-
_____ is the operator used to find the remainder for two variables.
-
The operator _______ calculates how many times one value will "go into" another value evenly.
-
The value of x=3**2 is __________.
-
The value of x=11%2 is _________.
-
If the variable x is an integer, fill in the blank in the print statement shown - print("The distance is: "___ x)
-
The value of the variable x is the integers 10. What is wrong with the line of code shown: print((x+5)
-
What will print when the code shown is run: print(len("Hello"))
-
If word1="apple" and phrase1="My favorite fruit is an ", what will print when the code runs: print(phrase1+word1)
-
The binary representation of false is ______
-
The number 3 in binary is
-
The ASCII value for the tab character is 9. What will print out if you pressed the tab character between the quotes in the code: print(ord(' '))
User comments are currently unavailable. We apologize for the inconvenience and are working to restore this feature as soon as possible.