Chapter 8
- What data type is used to store whole numbers?
INT
- What is a floating-point number?
A decimal number.
- What data type is used to store a floating-point number?
REAL
orLREAL
- What data type would you use to store the result of 3/2?
REAL
orLREAL
- What is a strongly typed language?
A language that evaluates data types before an operation is preformed.
- What is a data type?
The type of data a variable can hold. For example, a whole number or string of characters.
- What is a weakly typed language?
A language that does not evaluate data types before operations are preformed .
- What is a dynamically typed language?
A language that figures out the data type for you.
- What is a statically typed language?
A language that requires you to explicitly declare the data type of a variable.
- Is CODESYS dynamically or statically typed?
Statically typed.