#This is a way without a loop
friends = list(map(str,input("Enter Names: ").split()))
print(sorted(friends))
#This is a way with a loop (for&&while)
friends = list(map(str,input("Enter Names: ").split()))
cool = True
while cool:
cool = False
for i in range(len(friends)-1):
if friends[i] > friends[i+1]:
coo = friends[i]
friends[i] = friends[i+1]
friends[i+1] = coo
cool = True
print(friends)
Answer:
A) ALU
Explanation:
The arithmetic logic unit (ALU) performs the arithmetic and logical functions that are the work of the computer.
So, the correct option is - A) ALU
Small programs stored on the harddrive that provide basic functionality for he devices listed would be called Hardware Drivers.
I hope this helps!
Answer:
True
Explanation:
As employees might be accessing business/client data, security of data access is a topmost priority.