Pseudocode Flashcards
1
Q
Rules for writing variable names?
A
It shouldn’t be too long
there should be no punctuation other than an underscore
there should be no space
2
Q
The equal and arrow signs are known as your?
A
assignment operators
3
Q
What is a variable?
A
a variable is a symbolic name given to a storage location in a computer. It acts as a container to hold data that can be changed or manipulated during the execution of a program.
4
Q
What is a constant?
A
a constant is a value that does not change during the execution of a program. It is a variable that cannot be altered once it is assigned.
5
Q
Name the different data types?
A
Integer
Floating-point / Real
Character
String
Boolean
6
Q
A