Answer:
c. Wait about 30 minutes for the system to cool down and try again
Explanation:
When troubleshooting it is important to eliminate all possible faults one at a time. In this scenario, the first problem could be an overheating CPU. To eliminate overheating the first step would be to let the system cool down for some time then restart the computer. If the computer turns on and then hangs again after 15 minutes, the next step would be to install an additional fan and then monitor its performance. If the problem is eliminated, it means there was a problem with the cooling system of the computer. However, if the problem persists, it could be a problem with the power supply which might need replacing.
Answer:
You need to send a file to someone who does not have Word
Explanation:
In this case the answer is You need to send a file to someone who does not have Word.
But we use PDF to send files without changing its format.
A.all of the above it is correct
Save as is the command that you would use to save anything when using microsoft
Answer:
The program is as follows:
<em>5 INPUT A,B</em>
<em>6 PROD = A * B</em>
<em>7 PRINT PROD</em>
<em>8 TOTAL = A + B</em>
<em>9 PRINT TOTAL</em>
<em>10 DIFF = A - B</em>
<em>11 PRINT DIFF</em>
<em>12 END</em>
Explanation:
This gets input for the two numbers
<em>5 INPUT A,B</em>
This calculates the product
<em>6 PROD = A * B</em>
This prints the calculated product
<em>7 PRINT PROD</em>
This calculates the sum
<em>8 TOTAL = A + B</em>
This prints the calculated sum
<em>9 PRINT TOTAL</em>
This calculates the difference
<em>10 DIFF = A - B</em>
This prints the calculated difference
<em>11 PRINT DIFF</em>
This ends the program
<em>12 END</em>