click below
click below
Normal Size Small Size show me how
Visual Basic 2019
Visual Basic 2019 Mind Trap Chapter 3 var, const, cal.
| Qusetion - Term | Answer - Definition |
|---|---|
| Pseudocode | a planning tool that uses phrases to describe the steps a procedure must take to accomplish its purpose |
| flowchart | a planning tool that uses standardized symbols to illustrate the steps a procedure must take to accomplish its purpose |
| start/stop symbol | the ovals in a flowchart |
| process symbols | the rectangles in a flowchart |
| flowlines | the lines connecting the symbols in a flowchart |
| random access memory (RAM) | the main memory of a computer |
| declaring a memory location | reserving a location in the computer’s main memory for use within an application’s code |
| Variable | a computer memory location where programmers can temporarily store data, as well as change the data, during run time |
| Dim | comes from the word dimension, which is how programmers in the 1960s referred to the process of allocating the computer’s memory. Dimension refers to the size of something. |
| Boolean | bln |
| Decimal | dec |
| Double | dbl |
| Integer | int |
| String | str |