click below
click below
Normal Size Small Size show me how
Stack #4560041
| Question | Answer |
|---|---|
| incremental | An approach to programing where the programmer adds and tests code in small chunks at a time to make sure it behaves the way they want it to, before adding more code. |
| program | A set of instructions that a computer executes (or uses) to achieve a particular objective. |
| end user | A representive consumer for whom a hardware or software product is desighed. |
| user interface | The visual part of computer app or operating system, through which an end user interacts with the computing device of software. |
| view layer | the layer of an app that the user sees and interacts with. |
| controller layer | the layer of an app that comtains the program that yells the app how to behave. |
| event | an action or occurrence that happens during runtime that will trigger a response or behavoir by the software. User-initated events, such as the device receving an SMS text message. |
| runtime | The period when a program is running. Runtime begins when a program is opened (or exected) and ends when the program is closed. |
| event-driven programming | type of computer programming where the program responds to an input (or trigger) mouse clicks or a video game that responds to user inputs |
| event handlers | a block of code that is triggered when a certain event happens |
| user-initated event | In a program, an event that is triggered by user interaction with the user interface. |