Types of Software
Python Fudamentals
PYTHON DATA
Hardware
Computer Science
100

Types of Software

What are operating systems, applications, middleware, drivers

100

The symbol we use for comments in Python.



What is the "#" symbol?

100

A system based on two numbers 0 and 1.

What is Binary (or Binary Code)?

100

 What is a number system based on ten, the number system we normally use?

What is the decimal number system?

100

The study of principals and use of computers

What is Computer Science?
200
The definition of CPU.

What is the Central Processing Unit, the "brain" of the computer?

200

Define a variable in Python.

What is a named storage location for data?

200

Two main data types in Python.

What are integers and strings?

200

What is data and information in the real world that can be measured discretely or numerically, instead of continuously?

What is digital data?

200

What is a name for a spot in the computer's memory where information can be stored?

What is a variable?

300

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?

300

fill in the blank:

name = ?("Enter your name:")

?(name + " How are you?")

What is input and print?

300

What is the difference between analog and digital?

What is the distinction between continuous and discrete representations of data?

300

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?

300

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?

400

The definition of a computer program.

What are sets of instructions that tell a computer what to do?

400

The code for the output by the following:

 Computer

     Science

Blue

Sky

What is

print ("Computer \n\tScience")

 print ("Blue ") 

print ("Sky")

400

What does the str command do in Python?

What is the command to convert a value to a string?

400

What is a program that translates written code into machine language called?

What is a compiler?

400

The rules that define the written structure of a programming language?

What is Syntax?

500

The difference between hardware and software

What is the distinction between physical components (hardware) and programs/data (software)?

500

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")?

500

Write the code to input a number in Python.

 What is input("Enter a number: ")?

500

An electronic device that consist of hardware and software

What is a computer?

500

To add to strings or data types together.

What is concatenation?