Answer:
false
Explanation:
Ms word is only an application software
Give the type and value of each result of the following Java expressions. a. (5 / 2) * 2.0 type is float value is 4.0 b. (5/2.0) * 2 type is integer value is 5c. "1.3" + "5.2" type is string value is 1.35.2d. 1 + 7.0 + "2" + "x" this will produce an error because we cannot add variables of different type
Answer:
over heating
Explanation:
in computers dust acts as a blanket which traps heat, excessive heat causes components to burn up and short out
Answer:
4 bits
Explanation:
With 4 bits you can count to 15, because 2⁴=16. The maximum number you can express is always one less, i.e., 16-1=15.
In general, with n bits you can count to 2ⁿ-1.