NEW
Font size
WorksheetsS3 Programming with Visual Basic
Total questions: 12
Worksheet time: 6mins
Which data type stores text/characters?
String
Integer
Single
Which data type stores whole numbers?
String
Integer
Single
Which data type stores real numbers?
String
Integer
Single
Which operation uses the "&" symbol?
Sum
Concatenation
Include
Insert
What programming construct runs code when a condition has been met?
If Statement
Fixed Loop
Conditional Loop
What standard algorithm stores a value and adds onto it within a loop?
Input Validation
Running Total
What programming construct repeats code for a set amount of times?
If Statement
Fixed Loop
Conditional Loop
What is the following code doing: TotalMarks = 8
Declaring a variable
Assigning a value to a variable
Performing a calculation
Finding the running total
Which data type stores either true or false?
String
Single
Integer
Boolean
Which programming construct repeats code until a condition is met?
If statement
Fixed loop
Conditional loop
Which standard algorithm ensures values entered by the user are valid?
Running Total
Input Validation
Which way can you write a conditional loop?
Loop Until
Do While
Both
