| A | B |
| Computer Science allows people to | solve problems, communicate, create new software |
| In the next 5 years, there are expected be over _______ unfilled jobs in the United States | 1 millon |
| This language is based on a set of very specific rules for communicatng | Formal Language |
| This language is designed to be very clear andd work consistetly every time used | Formal Language |
| True or False. The print command can be written as PRINT or print | False |
| What is wrong with the following line of code? print(Hello World) | It needs quotation marks around ("Hello World") |
| What is the Python command that can display text and numbers on the screen? | print |
| True or False. When running the print command, print("Hello World!") the text will be displayed with quotaion marks | False |
| This carries out the commands in programs | CPU |
| Programs that run on hardware are called | Software |
| This is information the user sends to the computer | Input |
| Short term memory used by the CPU | Main memory |
| Special characters marked with a \ | Escape characters |
| Notes in the computer code that are ignored by the computer | Comments |
| When the computer translates digital information to information humans can use, it is called | Output |
| \n | new line |
| \" | prints a quote |
| \\ | prints a slash |
| \t | prints a tab |