What does the example below represent
1. Obtain two numbers from the user
2. Add the two numbers together
3. Print the two numbers
What is Algorithm?
What are multi-line comments called |
What is Block?
Which is not a characteristic of commenting |
What is Comments begin with a "?
The interaction between the actor and the system can be best described as: |
What is Use Case? |
What would best replace the “?” on Line 4 in the figure:
Begin
get x
get y
?
sum= x + y + z
print sum
End
What is get z?
What best describes the output for the program designed below:
Begin
sum= number1 + number2 + number3 + number4 +number5
avg= sum/5
Print avg
End
What is The average of five numbers? |
What is a list of instructions that contain data for a computer to follow called |
What is Computer program? |
The programming process begins with a meeting between the programmer and the client. Which activity would be the second step in the programming process |
What is Designing the solution? |
Tricia decided that the computer program she was designing should be coded in Visual Basic. She then began to code the program from her pseudocode. This exemplifies which stage in the programming process |
What is Write the Program? |
What is an advantage of using modularization in computer programming |
What is Each sub-problem can be solved in a few steps? |
Which of the choices below is not a Basic Control Structure |
What is Pseudocode control structure? |
Which project type is a desktop application run directly by the end user via forms appearing on the desktop |
What is Windows application? |
What is an acceptable comment for second line of the Visual Basic program below:
‘Execute a simple message box that will say "Hello, World!"
Given the following property value, which RadioButton has been selected:
radChocolate.Checked= false
radStrawberry.Checked= true
radVanilla.Checked= false
radLemon.Checked= false
What is radStrawberry? |
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 |
What is a Group Box? |
Which property value identifies a control in code |
What is (Name)? |
Maggie is programming an ice cream application and has four different toppings: sprinkles, peanuts, almonds, and cherries. Which control would allow the user to choose any or none of the toppings |
What is a Checkbox? |
Which control is used to get written input from the user |
What is a TextBox?
Which area of the IDE is used to change the text displayed in an object on a form |
What is The Properties window? |
Which statement will display the message "Hello There" on two separate lines |
What is Me.lblMessage.Text= "Hello" & vbCrLf & "There"? |
Which window displays the application interface and allows objects to be added, deleted, or resized |
What is The Design window? |
Which button would be clicked before Start in order to run an application using the menu bar |
What is Debug?
Which saves a solution to a disk |
What is Select File, then Save All and use the Browse button to select the appropriate location for the project? |
Which statement would change the color of the form to blue |
What is BackColor= Color.Blue? |
Greg wants to change the size of the text in a label. Which label property should he change |
What is Font?