The physical machine; anything you can touch.
What is Hardware?
The study of the principles and use of computers
What is Computer Science?
A numerical data type is also known as an
What is an Integer?
The Python command that displays text and numbers on the screen.
What is print()?
print(Hello Grace Hopper)
An electronic device consisting of hardware and software.
What is a computer?
Using a formal language in order to create software.
What is Coding?
Data and information in the real world.
What is Analog?
The Python command that sends information into the computer from the user.
What is input()?
print("Hello Hedy Lamarr"
No. It's not. What is it missng?
Programs that run on hardware.
What is software?
A program that converts commands so that a computer can understand and execute them.
What is a Compiler?
Numeric data stored in a computing device.
What is Digital?
Notes in computer code for the programmer -- the computer ignores them.
Marked in Python with a #.
What are Comments?
PRINT("Hello Ada Lovelace")
No. It's not. What's wrong?
Operating System, Compiler, Applications
Software or an application that combines multiple tools in one window.
What is Integrated Development Environment (IDE)
A number system based on two.
What is Binary?
Special characters marked with the \
1. \n – new line 2.\t – tab
Are known as...
What are Escape Sequences?
a = input("Enter a word: ")
b = input("Enter a word: ")
print(a + " " + b)
Yes.
Runs the computer and controls the memory.
What is the Operating System?
A computer program used to test other programs. Allows the programmer to track malfunctioning code.
What is the Debugger?
Relating to or denoting a system of numbers and arithmetic based on the number ten, tenth parts, and powers of ten.
What is Decimal?
In Python, PRINT and print are the same. Yes or No.
No.
print("hello" + "world")
No.