A programmer is building a script that will test a condition of either true or false. Which data type would the programmer use?
- char
- Bool
- int
- float
Explanation & Hint:
The basic data types used in a script include:
int represents integerschar represents charactersfloat represents decimal numbersstrings represent alphanumeric characters Bool represents true or false |