Answer:
During the medieval period, having membership in a guild was important for trade. It would ensure the products traded/sold were held to the standard and sold for the fair price.
Answer:
A spanning tree is a subset of Graph G, which has all the vertices covered with minimum possible number of edges. Hence, a spanning tree does not have cycles and it cannot be disconnected.. By this definition, we can draw a conclusion that every connected and undirected Graph G has at least one spanning tree.
Answer:
yellow
Explanation:
SmartArt tab is part of Microsoft Office. This tab is available in the Illustrations group, which is inside the insert tab. SmartArt tab is used to provide a new type of graphical tools that includes a list, process, cycles, etc.
The advantages of the SmartArt tab is given below:
- The SmartArt tab normally provides a way to make an organized presentation.
- This tab is mainly used on word, excel, and PowerPoint.
In python:
i = 1
lst1 = ([])
lst2 = ([])
while i <= 5:
person1 = int(input("Enter the salary individual 1 got in year {}".format(i)))
person2 = int(input("Enter the salary individual 1 got in year {}".format(i)))
lst1.append(person1)
lst2.append(person2)
i += 1
if sum(lst1) > sum(lst2):
print("Individual 1 has the highest salary")
else:
print("Individual 2 has the highest salary")
This works correctly if the two individuals do not end up with the same salary overall.
I included a picture of my code below. Best of luck with your assignment.