Font size
WorksheetsProgramming Terms & Structures
Total questions: 18
Worksheet time: 9mins
a device that detects important physical quality or quantity about surrounding environment.
a group of interacting, interrelated elements that work together.
shorthand notation for programming which uses a combination of informal programming structures and verbal descriptions of code, a detailed algorithm
a detailed algorithm in visual form to show how the code will be designed and organized using specific shapes and brief descriptions
Logic errors
will not generate any error messages but will not output the right thing
only appear until you run the program.
use a # and the text will be green.
While loop is
a control flow statement that allows code to be executed repeatedly.
occurs when the programmer does not follow the rules of the language.
code that functions improperly or badly.
used to count the number of iterations for a (group of) statements.
A Match statement is:
A selection structure in Python
A loop structure in Python
An output structure in Python
An input structure in Python
The process of translating PYTHON code to machine language is:
Compiler
Interpreter
Neither
Both
Which type of programming languages are in a form that (only) the computer can understand.
High Level languages
Assembly Language(s)
Machine Language
Programming Languages
Which type of programming languages are written by people?
High Level languages
Assembly Language(s)
Machine Language
Programming Languages
a Flowchart is defined as
a device that detects important physical quality or quantity about surrounding environment.
a group of interacting, interrelated elements that work together.
shorthand notation for programming which uses a combination of informal programming structures and verbal descriptions of code, a detailed algorithm
a detailed algorithm in visual form to show how the code will be designed and organized using specific shapes and brief descriptions
This is a type of error or exception that will not allow a program to run based on mistakes made by the programmer.
Syntax Error
Logic Error
Run-Time Error
Debug
This is a type of error or exception that will crash the program while it is running and is often based on user input or impossible calculations.
Syntax Error
Logic Error
Run-Time Error
Debug
This is what programmers do when they encounter a variety of errors or exceptions in their code.
Syntax Error
Logic Error
Run-Time Error
Debug
The 'def' in Python falls into this category:
Sequences (I/O)
Repetition
Selection
Modularity
These are the original instructions for one program written by a programmer before their file is translated into machine language.
Code
Statement
Object Code
Source Code
