Answer:
Changing Margins
Selecting the Printer
Viewing a preview
Selecting the pages to print
Changing the page orientation
Explanation:
Answer:
The python function is as follows:
def fact(N):
factorial = 1
for i in range(1,N+1):
factorial = factorial * i
return(factorial)
Explanation:
This line defines the function
def fact(N):
This line initializes the product of 1 to N to 1
factorial = 1
This line iterates through 1 to N
for i in range(1,N+1):
This line calculates the product of 1 to N i.e. factorial
factorial = factorial * i
This line returns the factorial
return(factorial)
Answer:
80 gigs of storage
Explanation:
it gives a bunch of room because of the calculations the vomputer
What kind of question is this?
Answer:
C.
Explanation:
An operating system is a route between the software system and hardware system in computers. This program helps to perform actions and execute applications. <u>Functionc performed by an operating system includes process management, handling files, controlling devices such as printers</u>.
The step which is not performed by an operating system while printing a document is that it does not create the document that has to be printed.
While printing, an operating system helps other system know if printer is busy with other operations. Other actions performed by an OS while printing document is that it sends the file, document, or data to be printed to the printer, it connects the computer system with printer.
Thus the correct option is C.