Answer the following statements true (T) or false (F)
1. The complement of <= is >.
2. Arithmetic underflow can result from multiplying two very small fractions
3. An enumeration type variable cannot be used in the switch statement
4. Given the declaration
enum day {mon, tues, wed, thurs, fri};
the condition mon < fri is true.
5. Given the declarations
enum weekend {sat, sun};
enum party {today, tomorrow};
the expression int(sat) + int(today) is valid
1. True
2. True
3. False
4. True
5. True
Computer Science & Information Technology