Answer:
A key field is used to uniquely identify each record for retrieval or manipulation.
Explanation:
In a database there are many, having similar entities. So in order to differentiate each entity from other we need to set a key field among all the field which is always unique for each entity.
For example:
In a database of a company having data about its employees, the key field might be their ID. As some employees can have same names, addresses, phone numbers but cannot have the same ID.
The outline of items that one must check is first to know or clarify the issue, break the issue down, etc.
<h3>What is troubleshooting?</h3>
This is known to be a step by step approach to problem handling that is often used to know and handle issues with systems etc.
Others includes:
- Set one's target in working on the issue,
- Analyze the main cause,
- Develop any form of Countermeasures.
- Then you Implement the Countermeasures made
- Monitor the Results that was given
- Go through the Process to Standardize it and tell the user that it is solved.
Conclusively, By following the steps, one can know the issue and solve it.
Learn more about troubleshoot from
brainly.com/question/14394407
There are about 15,000,006
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.