theory Flashcards
sequence
code runs in the same order every time
selection
only runs a line of code if a condition is true
iteration
a loop, the code repeats
variable
a named location on the memory which stores information that can change during the running of the program
float
a decimal number e.g. price=float(2.4)
integer
a whole number e.g. age=int(6)
string
a set of alphanumeric characters e.g. name=str(jack)
boolean
true or false e.g. canMoveRight=true
algorithm
a set of instructions which when followed solve a problem
decomposition
breaking a problem down into smaller problems to make it easier to solve
abstraction
taking away unnecessary information to allow you to focus on the main elements of the problem
network
an interconnected collection of computers
advantages of networking
it enables sharing of data, files, sharing of peripherals e.g. printers. It also provides control and security as backups and updates can be rolled out centrally
network protocol
a set of rules that determine how data is transmitted between different devices in the same network
data packet
a part of a file
standard protocols
-http : hypertext transfer protocol, used for transferring data over the internet
-https : hypertext transfer protocol secure, to transfer encrypted data over the internet, especially those that require login credentials
-pop : post office protocol, used when receiving emails
-imap : internet message access protocol, used when receiving emails
-smtp : simple mail transfer protocol, used when sending emails
syntax error
doesn’t meet the rules / grammar of the language and will not run
logic error
program runs but generates an unexpected output
input devices and example
allows data to be transferred from the user into the computer e.g.
-mouse
-keyboard
-scanner
output devices and examples
shows result of processed data to the user e.g.
-moniter
-printer
-speaker
storage devices and examples
allows you to save information when the computer is turned of e.g
-RAM (random access memory)
-HDD (hard disc drive)
-SSD (solid state drive)