Answer:
D Reflection
Explanation:
It reflects the light from the sun. Then when the earth gets in the way, it casts a shadow causing crescent moons.
Answer:
MIS HIEVOSTES bbbbbbbbbbbb MIS HUEVOTES
Answer:
LOTS
Explanation:
Catapults, Towers, and Trebuchets were all used by Saladin to capture Jerusalem in 1187
Answer:
The code is given below in Python with appropriate comments
Explanation:
# convert list to set
male_names = set(['Oliver','Declan','Henry'])
# get remove and add name from user
remove_name = input("Enter remove name: ")
add_name = input("Enter add name: ")
# remove name from set
male_names.remove(remove_name)
# add new name ij set
male_names.add(add_name)
# sort the set
a = sorted(male_names)
# print the set
print(a)