Answer:
An operating system, or "OS," is software that communicates with the hardware and allows other programs to run
Answer:
(c) A list of words
Explanation:
<em>First let's format the code properly</em>
fin = open('words.txt')
for line in fin:
word = line.strip()
print(word)
<em>Second, let's explain each line of the code</em>
Line 1:
The open() function is a built-in function that takes in, as argument, the name of a file, and returns a file object that can be used to read the file.
In this case, the name of the file is <em>words.txt. </em>Therefore, the variable <em>fin </em>is a file object which contains the content of the file - <em>words.txt</em>
Line 2:
The <em>for </em>loop is used to read in each line of the content of the file object (fin).
Line 3:
Each line of the contents is stripped to remove any trailing and leading white spaces by calling on the <em>strip()</em> function. The result of the strip is stored in the variable <em>word.</em>
Line 4:
The content of word at each of the cycles of the loop is printed to the console.
Therefore, the overall output of the program is a list of words where each word represents a line in the target file (words.txt)
Procedures are part of the information system that consist of the rules or guidelines for people to follow. Procedures are one of the main components of the information system, together with the hardware, software, telecommunications, databases, data warehouses and human resources. The procedures are policies that specify the requirements and standards for operation of the computer.
I hope it is helpful for you ......
<h3>Mark me as Brainliest ......</h3>
When opening the CMD prompt from the RUN menu, right-click the option and select "Run as Administrator" in order to elevate permissions.