CP1
CP2
CP3
CP4
CP5
100

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?

100

What are multi-line comments called

What is Block?

100

Which is not a characteristic of commenting

What is Comments begin with a "?

100

The interaction between the actor and the system can be best described as:

What is Use Case?

100

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?

200

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?

200

What is a list of instructions that contain data for a computer to follow called

What is Computer program?

200

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?

200

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?

200

What is an advantage of using modularization in computer programming

What is Each sub-problem can be solved in a few steps?

300

Which of the choices below is not a Basic Control Structure

What is Pseudocode control structure?

300

Which project type is a desktop application run directly by the end user via forms appearing on the desktop

What is Windows application?

300

What is an acceptable comment for second line of the Visual Basic program below:

‘Execute a simple message box that will say "Hello, World!"

300

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?

300

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?

400

Which property value identifies a control in code

What is (Name)?

400

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?

400

Which control is used to get written input from the user

What is a TextBox?

400

Which area of the IDE is used to change the text displayed in an object on a form

What is The Properties window?

400

Which statement will display the message "Hello There" on two separate lines

What is Me.lblMessage.Text= "Hello" & vbCrLf & "There"?

500

Which window displays the application interface and allows objects to be added, deleted, or resized

What is The Design window?

500

Which button would be clicked before Start in order to run an application using the menu bar

What is Debug?

500

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?

500

Which statement would change the color of the form to blue

What is BackColor= Color.Blue?

500

Greg wants to change the size of the text in a label. Which label property should he change

What is Font?

M
e
n
u