Types of Software
What are operating systems, applications, middleware, drivers
The symbol we use for comments in Python.
What is the "#" symbol?
A system based on two numbers 0 and 1.
What is Binary (or Binary Code)?
What is a number system based on ten, the number system we normally use?
What is the decimal number system?
The study of principals and use of computers
What is the Central Processing Unit, the "brain" of the computer?
Define a variable in Python.
What is a named storage location for data?
Two main data types in Python.
What are integers and strings?
What is data and information in the real world that can be measured discretely or numerically, instead of continuously?
What is digital data?
What is a name for a spot in the computer's memory where information can be stored?
What is a variable?
List the 5 things all computing devices have in common.What are input, output, memory, processing, and storage?
What are input, output, memory, processing, and storage?
fill in the blank:
name = ?("Enter your name:")
?(name + " How are you?")
What is input and print?
What is the difference between analog and digital?
What is the distinction between continuous and discrete representations of data?
What is a note written in computer code for the programmer to read, which the computer ignores and is marked in Python with a '#' symbol?
What is a comment?
What is the software that supports a computer's basic functions, such as controlling computer memory, scheduling tasks, and running applications?
What is an operating system?
The definition of a computer program.
What are sets of instructions that tell a computer what to do?
The code for the output by the following:
Computer
Science
Blue
Sky
What is
print ("Computer \n\tScience")
print ("Blue ")
print ("Sky")
What does the str command do in Python?
What is the command to convert a value to a string?
What is a program that translates written code into machine language called?
What is a compiler?
The rules that define the written structure of a programming language?
What is Syntax?
The difference between hardware and software
What is the distinction between physical components (hardware) and programs/data (software)?
Write the code to print the following, including quotes, using only one print command:
"Success consists of going from failure to failure without loss of enthusiasm." - Winston Churchill
What is print("\"Success consists of going from failure to failure without loss of enthusiasm.\" - Winston Churchill")?
Write the code to input a number in Python.
What is input("Enter a number: ")?
An electronic device that consist of hardware and software
What is a computer?
To add to strings or data types together.
What is concatenation?