Problem Solving
Algorithms
Data Type
Constants and Variables
Pseudocodes
100
The steps to solve a problem consist of how many steps?

6

100

How to you call a set of instruction steps to solve a given problem?

Algorithm

100

Which data type is used for whole numbers?

Integers

100
How do you call data that has a known value and keeps that value throughout a program?

Constant

100

What is the first step when writing a pseudocode?

Declare the variables and its data type

200

What is the first step to solve a problem?

Identify and define the problem.

200

Algorithms can be written in three different ways. Name two of those ways. 

Narrative, flowchart, pseudocode

200

Give an example of data that is "real".

Price of an item

200

_______ can change their value throughout a program, or do not have a known, fixed value. 

Variables
200

What is the correct term used when you ask a user to enter information?

Prompt the user for instruction

300

What does IPO chart stand for?

Input, Processing and Output
300

Which algorithm means writing out the step-by-step solution to the problem in full sentences?

Narrative

300

a, e, I, o, u each of these fall under which data type?

Char

300

the speed of light is a variable or a constant?

Constant

300

A:=(CurrentYear-YearOfBirth)

Display A

What is the result?

Your age

400

Name the method that breaks a problem into smaller problems?

Top-down design

400

Which algorithm is language that mimics real programming language?

Pseudocode

400

The name of a person falls under which data type?

String

400

A constant can be a non-numerical value such as your name or address. True or False?

True

400

What is the correct term for this

If (A>10) and (A<100) Then

Boolean Operator

500

List the six steps to solve a problem.

Identify and define the problem

Analyse the problem

Develop and Algorithm

Test the Algorithm

Write a program in a programming language

Test and debug the program

500

Name the shapes used in flowcharts.

(Oval) Start/stop, (Diamond) Decision, (Parallelogram) Input, (Rectangle)Process and Output

500

Name all the data type.

Integer, real, string, char

500

Give two examples of constants and two examples of variables related to you.

The number of months in a year and the year you were born

You age and grade in a test

500

What are the two types of looping constructs?

Counter-Controlled

Condition-Controlled