Answer:
please see explaination and attachment
Explanation:
Normalization is a database design technique that organizes tables in a manner that reduces redundancy and dependency of data. Normalization divides larger tables into smaller tables and links them using relationships.
see attachment for the step by step solution
Answer:
Assembly line.
Explanation:
The interchangeable parts was a game-changing concept for the manufacturing industry during the Industrial Revolution.
It was first introduced by Eli Whitney, also the inventor of the Cotton Gin, and later was perfected by Henry Ford, who was the first to create a continuous moving assembly line. The Interchangeable parts are identical pieces created from a master model and are so similar to each other, that they can fit into any line of production of the same kind.
Thanks to these advances, the manufacturing process across all industries could be now faster, more cost-efficient, and profitable.
Typically, in older systems, the GUI would be Text Based
Answer:
size = int(input("How many names will be there? "))
names = []
for _ in range(0, size):
name = input("Enter a name: ")
names.append(name)
names.sort()
print(names[0] + " " + names[-1])
Explanation:
* The code is in Python
- Ask the user for the number of the name
- Initialize an empty list that will hold the name entered
- Inside the for loop, get the names and put them in the names array
- When all the names are entered, sort them and print the first and last of the name