No student devices needed. Know more
18 questions
What is the purpose of a flowchart?
To plan a solution before it is implemented
Because it is easier to draw
To see if a solution will work
To make programmers follow rules
What is this symbol used for in a flowchart?
A decision/question
A task to carry out
A function
A subroutine
Which statement will go inside this symbol in a flowchart?
A= A+1
output A
if a >100
A = 200
What is an Algorithm?
A sequence of finite instructions to solve a specific problem
A task for the computer
A programming language
A collection of code in high level language
What do we mean by COMPUTATIONAL THINKING?
Understanding a complex problem and developing possible solutions.
Breaking a task into smaller tasks.
Selecting a computer to use.
Focusing on what is important, ignoring what is unnecessary.
Define ABSTRACTION
Breaking a task into smaller tasks.
Drawing a map to show how to reach a destination.
Creating step by step instructions.
Focusing on what is important and ignoring what is unnecessary.
Define DECOMPOSITION
Breaking a task into smaller tasks.
Looking for similarities and trends.
A sequence of instructions.
Focusing on what is important and ignoring what is unnecessary.
Define PATTERN RECOGNITION.
A sequence of instructions.
Looking for similarities and trends.
Breaking a task into smaller tasks.
Focusing on what is important and ignoring what is unnecessary.
Which statement will go inside this symbol in a flowchart?
A=A+1
while A > 100
A = 201
if A < 100
Choose all apply, ways to represent algorithms
Flowchart
Psuedocode
shortened English
Database
In our approved psuedocode notations, what is the result of 5 MOD 2?
1
2.5
2
5
Which one(s) is a variable in the following psuedocode:
FOR count<--0 TO 5
sum = sum + count
NEXT
sum
count
NEXT
FOR
What is the value of sum in the following psuedocode:
WHILE sum < 15 DO
sum = sum + 1
ENDWHILE
14
15
1
13
Explore all questions with a free account