click below
click below
Normal Size Small Size show me how
AppCreateSLO
| Question | Answer |
|---|---|
| Who applies their knowledge of computation to create solutions using a computer system? | Computer Scientists |
| Which kind of science creates artifacts and solves problems with the help of a computer? | Computer Science |
| What is an ordered set of instructions used to carry out a task? | An algorithm. |
| an approach to programming where the programmer adds and tests code in small chunks at a time | checking that it works before adding more code. |
| What is the visual part of a computer program or operating system that an end user interacts with? | User Interface |
| Is the consumer for whom a hardware or software product is designed. | End User |
| What is the layer of an app that contains the program telling the app how to behave? | Controller Layer |
| An _________ is an action or occurrence that happens during runtime that will trigger a response from the software. | Event |
| What is runtime? | The period during which a program is running. |
| The _______ block of code is triggered when a certain event occurs. | Event Handler |
| a command that performs different actions depending on whether a condition is true or false. | Conditional Statement |
| a form of mathematics in which an expression is reduced to either True or False. | Boolean Logic |
| A bug is a flaw in a computer program that causes the program to produce incorrect behavior or results. | Bug |
| the process of identifying bugs or errors in computer hardware or programs and fixing them. | Debugging |
| When two people work together to create a computer program. The “driver” controls the computer while the “navigator” instructs the driver on what to do. | Pair Programming |
| What is meant by 'set CheckBox2 Checked to false'? | CheckBox2 will be unchecked or set to off. |
| Look at this flowchart. It is an example of a _________. | Algorithm |
| Look at the image - This flowchart is an example of a/n | Conditional Statement |
| What would happen to the MeaslesButton if it were clicked while already playing? | It would pause. |
| What is the first step in debugging code? | Check the hardware for connection issues. |