Flashcards in Module 1 Chapter 1 Programming Basics Deck (4)
Loading flashcards...
1
What is an algorithm?
An algorithm is a set of rules or a sequence of steps specifying how to solve a problem. They all have input, processing and output.
2
Give five examples of the different data types used in programming
- Integer
- Real/ Float
- Boolean
- Character
- String
3
What are variables?
Identifiers given to memory locations whose contents will change during the course of the program.
4