Answer:
go to apps and if you seen app that has no like picture on the side is just clear trying to hide a self delete it
The Wrap Text menu.
The positioning of text in Word is sometimes not lined up with the inserted picture. By default, when you insert an image or a picture, its layout is set to inline with text. To change that, double click on the picture and then click the Wrap Text option. A number of options will pop up with text graphics.
Answer:
CPU
I dont know a whole ton about computers. But I'm confident this is correct. Without the CPU the other options on this list wouldnt work so the CPU would be the "heart".
//Program
====================
librarian1.py
==============
# make a empty list to add user input names
lst = []
for i in range(5):
# take input from the user
auth = input("Name: ")
# append user input name into the list
lst.append(auth)
# sort the list
lst.sort()
# print the list
print(lst)
==============================================
//Output