1/19
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
What is an algorithm that’s about writing normal sentences?
Plain English
What is an algorithm that’s about drawing the steps in shaped boxes with arrows?
Flowcharts
What is an algorithm which is like a simplified programming?
Pseudocode
What is an algorithm that’s written a formal language like python?
Code
What would print(314) do?
314
What would print(“hi everyone”) do?
hi everyone
What is the sign for subtraction in Python?
-
What is the sign for addition in Python?
+
What is the sign for multiplication in Python?
*
What is the sign for division in Python?
/
What would print(7//3) do?
2
What would print(“7” + “3”) do?
73
What shapes come in a flowchart?
Oval, flow line, parallelogram and rectangle
What does the oval in the flowchart do?
Denotes the ____ or the ___ of an algorithm.
start, end
What does the flow line in the flowchart do?
Denotes the _______ of _____ ____ in a program.
direction, logic flow
What does the parallelogram in the flowchart do?
Denotes either an _____ or an _____.
output, input
What does the rectangle in the flowchart do?
Denotes a ______ to be carried out
process
What does unambiguous mean?
Clear and precise
What does input mean?
Data sent to a computer for processing
What does output mean?
Data processed and sent out by a computer