Previous Module
Next Module

COMPUTER SYSTEMS: Encoding and compression

COMPUTER SYSTEMS: Network topologies

COMPUTER SYSTEMS: Wired and wireless networks, protocols, and layers

COMPUTER SYSTEMS: Threats to computer systems and networks

COMPUTER SYSTEMS: Operating systems and utility software

COMPUTER SYSTEMS: Impact of technology on society

ALGORITHMS AND PROGRAMMING: Types of data

ALGORITHMS AND PROGRAMMING: Producing robust programs

ALGORITHMS AND PROGRAMMING: Designing, creating, and refining algorithms

ALGORITHMS AND PROGRAMMING: Programming languages

  Definition Example
Variable A named storage location that holds a value which can change during program execution

Value = 2

Value = 5

Constants A value that does not change once set during the program (in Python, constants are written in uppercase) PI = 3.14159
Input Data entered by the user name = input(“Enter your name:”)
Output Information displayed to the user print(“Hello”, name)
Assignments Storing a value in a variable using the = symbol x = 5
Syntax error An error caused by breaking the rules of the programming language Missing a colon at the end of an if statement in Python

Unlock Key terms in programming

Subscribe to SnapRevise+ to get immediate access to the rest of this resource.

Premium accounts get immediate access to this resource.

Previous Module
Next Module