Font size
WorksheetsLaboratory Preparation 2 - Flowcharting and Pseudo Code
Total questions: 21
Worksheet time: 11mins
The role of creating a correct algorithm or flowchart is needed before the actual coding.
TRUE
FALSE
A graphical representation of an algorithm to follow and program to execute.
Algorithm
Pseudocoding
Flowcharting
USE CASE
A sequence of steps or rules to follow in solving a problem.
Algorithm
Flowcharting
Pseudocoding
Task Lists
Writing pseudocode has no restriction of styles and its only objective is to describe the high-level steps of the algorithm in a much realistic manner in natural language.
TRUE
FALSE
Which is NOT considered as a correct convention of writing pseudocode?
Each instruction is written in one line.
Each set of instructions is written from top to bottom, with only one entry and one exit.
Keywords and indentation are used to signify particular control structures.
Statements are written in simple English.
Which of the following symbol represents off page connector?
A control structure which defined as the straightforward execution of one processing step after another.
Sequence
Iteration
Decison
Selection
A reserved word that cannot be used in writing pseudocode specifically in repeating a group of actions in a program.
IF..THEN...ELSE
DO...WHILE
WHILE
FOR...
Using the basic idea of repetitive code means that a block of statements is executed again and again until a terminating condition occurs.
TRUE
FALSE
Arrows are use to..
confuse the programmer
guide the user
implement a code
connect the boxes or symbols in a flowchart
In flowcharting, PROCESS is represented by___.
Oval
Parallelogram
Rectangle
Diamond
The Input/Output box is used when a question is asked to the user, or something is printed on the screen.
TRUE
FALSE
This is a diagram that shows a process, system, or computer algorithm
Procedure
Process
Flowchart
Pseudocode
What symbol is shown here
Process
Decision
Terminator
Input/Output
What symbol is shown here
Process
Decision
Terminator
Input/Output
What symbol is shown here
Process
Decision
Terminator
Input/Output
It should not use any specific programming language
Which one of the following statements is TRUE about Pseudo codes?
It can be run on a computer.
It can be expressed in diagrams.
It is a method to represent an algorithm.
It is written in JavaScript syntax only.
