Explanation:
USE SOCRACTIC IT WOULD REALLY HELP
Answer:
Written in Python
filenm = input("File name: ")
myfile = open(filenm+".txt")
for i in range(10):
line = myfile.readline()
print(line)
print("End of file")
Explanation:
This line prompts user for file name
filenm = input("File name: ")
This line creates an instance of the file
myfile = open(filenm+".txt")
This line iterates through the 10 lines
for i in range(10):
This line reads the line
line = myfile.readline()
This line prints each line
print(line)
This line prints a message indicating that all possible lines have been printed
print("End of file")
Answer: D.) Discretionary access control
Explanation: Access control modes provides networks with a security system used for moderating, risk prevention and privacy maintainance of data and computing systems. Several access control modes exists depending on the degree of control required. In the discretionary access control approach, users are afforded the freedom and flexibility of making choices regarding permissions granted to programs. Hence, in this mode, permission are user-defined and as such sets privileges based on how the user deems fit.
Answer:
In spreadsheet software, the automatic recalculation feature ensures that the results in every cell are accurate for the information currently entered in the worksheet.
Explanation:
Entering new data in spreadsheets and calculating the changes has been made a lot easier due to the automatic recalculation tool of spreadsheets. One can simply enter a data, organize it and even make modifications with the right calculations every time by this feature. Spreadsheets like excel are programmed to recalculate the formulas after every single change made in the spreadsheets. This capability of spreadsheets has helped a lot to maintain data consisting of huge amounts of complex mathematical formulas.
Answer:
- personallity is an individual's unique combination of attitudes, behaviors, and characteristics.
-(maybe)Being aware of personality characteristics helps people identify their natural abilities and determine potential careers.
Explanation:
hope helped