Answer:
Gina did apply Thermal Paste
Explanation:
Thermal Paste contains heat-conductive metals that help to ensure better conduction of heat from the Central Processing Unit and the heat sink of the computer. It is a cooling agent that helps prevents a computer from reaching a high heat level which is harmful to the computer.
Answer:
It depends on the features of the Calculator but most mobile phones are computers.
Explanation:
A computer is an electronic device that can accept data (Both can), process the data (both can), produce the results of the processed data (both can) and store both result and initial data (some calculators can, some cannot but most mobile phones can).
In my opinion, they are computers but that's dependent on their features especially storage.
import random
nums = [x for x in range(50,100) if x%2!=0]
print(random.choice(nums))
We use a list comprehension to create a list of the odd numbers between 50 and 99. Then we randomly choose one of those numbers using the random module.