step by step
1. Open the Disk Cleanup by clicking Start, point to All Programs, point to Accessories, point to System Tools, and then click Disk Cleanup. Disk Cleanup will then calculate how much space you will be able to free on your hard drive.
2.Select the files by clicking the check box that you would like to delete (e.g. Downloaded Program Files and Temporary Internet Files) and click OK
3. Click Yes to confirm performing these actions.
To read the description of the particular program file, click the appropriate file and the file description is displayed at the bottom. If you want view the files on the particular program file (e.g. Downloaded Program Files and Temporary Internet Files), click View Files.
4. Click More Options tab to free up more space on Windows components, installed programs or System Restore. Click Clean up
The hard disk is inside the computer, the hard *drive* is outside the computer.
Answer:
Explanation:
The following python code loops through each line within a file called text.txt and counts all the words, then it divides this count by the number of sentences in the text file. Finally, output the average number of words per sentence.
f = open("text.txt", "r")
all_words = 0
sentences = 0
for x in f:
list = x.split(' ')
all_words += len(list)
sentences += 1
average = all_words / sentences
print("There are an average of " + str(average.__round__()) + " words in each sentence.")
In the case above, a Compilers is the best translator for a program that is said to be changed or written in a high-level language into machine code.
<h3>Why do you need to translate a program written in a high-level language into
machine language?</h3>
Programming languages are known to be easy for humans to read and understand.
Note that The program (source code) need to be translated into machine language so that the computer can be able to carryout the program.
Therefore, In the case above, a Compilers is the best translator for a program that is said to be changed or written in a high-level language into machine code.
Learn more about machine language from
brainly.com/question/23275071
#SPJ1