Key terms Flashcards
flowchart
a diagram representing an algorithm
algorithm
a set of step by step instructions to solve a problem
output
information that the computer displays to the user
input
information that the user gives to the computer
shell
where all the output (answers) is displayed
command used to output messages
variable
labelled memory space that stores information
integer
represents a whole number
string
represents a text
floats
represents a decimal number
Boolean
only has two values: true or false
casting
changing of data type from one type to another
decomposition
breaking a problem down into smaller more manageable parts, which are then easier to solve
abstraction
the process of removing or hiding unnecessary information so that only the important points remain
nesting
using an if statement inside an if statement. You can use nesting for solving complex problems.