Save
A LEVEL AAAAAAAAAAAAAA
Computing AAAAAAAAAAAAAAAA
Flowcharts and Pseudocodes
Save
Share
Learn
Content
Leaderboard
Learn
Created by
OOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
Visit profile
Cards (14)
This symbol is a:
A)
Start / End
1
This symbol is a:
A)
Process
1
This symbol is a:
A)
Input / Output
1
This symbol is a:
A)
Subroutine
1
This symbol is a:
A)
Decision
1
This symbol is a:
A)
Connector
1
Input the correct terms:
A)
Dry Run
B)
Test Plan
C)
Test Case
D)
Test Data
4
Fill in the blanks:
//
This is a comment
Fill in the blanks:
DECLARE
realNumber :
REAL
DECLARE
name :
STRING
DECLARE
alphabet :
CHAR
DECLARE
wholeNumber :
INTEGER
Fill in the blanks:
CONSTANT
race
=
"Chinese"
Fill in the blanks:
IF number = 1
THEN
x <- x + 1
ELSE
x <- 10
ENDIF
Fill in the blanks:
WHILE
count < 101
DO
PRINT count
count <- count - 1
ENDWHILE
Fill in the blanks:
REPEAT
PRINT count
count <- count + 1
UNTIL
count = 100
Fill in the blanks:
FOR count <- 1 TO 100 STEPS 2
PRINT count
NEXT