2.2-2.3 Flashcards
What is an integer
Whole number
Int
What is a real/float
Numbers with decimals
real
What is a Boolean
Can take one of two values(true/false)
bool
What is a character
Single letter,number or symbol
char
What is a string
Text
string
What do strings and characters always need when coding
Speech marks
Advantages of data types
Make code more memory efficient, robust and predictable
What is casting and give an example of coding
Converting between data types
real(1) converts integer to real 1.0
What do arithmetic operators do
Take two values and perform maths functions on them
Work on real or integer values
What is DIV
Returns while number of the division
What is MOD
Returns remainder of the division
What are the three types of operators
Arithmetic, assignment and comparison
What do assignment operators do and give an example
Assign values to constants or variables
What are comparison operators and give an example
Compare value from left to right side to produce a Boolean value(true/false)