click below
click below
Normal Size Small Size show me how
T2CP obj2-4 correc
| Question | Answer |
|---|---|
| Which step should NOT be taken when planning an application | Code the user interface |
| Which act gives individuals the right to see information maintained about them | Electronic Communications Privacy act of 1986 |
| Why is a flowchart used to design a programming solution | To minimize logic errors by graphically showing steps in solution |
| In flowchart symbols, which symbol is used to show decisions | Diamonds |
| What is a list of instructions that contain data for a computer to follow called | Computer program |
| What is a set of steps that create an ordered approach to a problem solution called | Algorithm |
| In flowchart symbols, which symbol is used to show processes | Rectangles |
| Which of the choices CAN be an expectation for commenting | Any line that causes confusion should be commented |
| What are multi-line comments called | Block |
| Angie is programming an application where the user needs to select their age from five different choices. Which control is BEST to contain the choices | Group Box |
| Which of the choices CAN be an expectation for commenting | Any line that causes confusion should be commented |
| Which property value must be utilized to show a radio button as selected | radProgram.checked=TRUE |
| Which statement would change the color of the form to blue | Backcoor=color.blue |
| How do you declare a variable whose value cannot be changed after assignment | Replace Dim with Const |
| Kirk wants to declare a variable that holds its value beyond the normal lifetime. How should he declare it | Static intGrade As integer |
| Variable Names | Must begin with a letter |
| What is an appropriate naming convention for according to Hungarian notation | $_RATE |
| The words "A Double data type should be always stored as a Double data type!" would be best stored in which one of the following data types | String |
| What data type is returned from a text box control | String |