Answer: Planned data redundancy
Explanation: Planned data redundancy is the problem that occurs in the single database where the same data unit gets stored in two different places. Data redundancy can acquire unnecessary space of the database.
Planned data redundancy can effect the processing and make modification of the data difficult. It can also create the corruption in the database .Thus , the definition mentioned in the question of data redundancy.
You have to think about, what could happen to you if you shared this information.
Hope this helped!
~Izzy
Answer:
a. at least once
Explanation:
A loop is a code snippet that uses a condition to run repeatedly for multiple times which could be zero, one or more times. As long as the condition is true, the loop statement executes over and over again. Three common types of loop are;
i. for loop
ii. while loop
iii. do while loop
In a for or while loop, the condition for the loop is first tested before the statements in the loop are executed. Statements in the body of the loop are executed zero or more times. i.e the loop statement (statement in the body of the loop) may or may not be executed.
In a do..while loop, the statements in the loop are executed first before the condition of the loop is tested. In this case, the statements in the body of the loop are executed one or more times. i.e the loop statement is executed at least once.
Answer:
Source port number and destination port numbers for segment travelling from HOST B to HOST A are : Source port number is y , and Destination port number is x.
Explanation:
Because in problem statement it given that the TCP segments traveling from Host A to Host B have source port number x and destination port number y. So it is clear that that Host A has a port named x and Host B has a port named y and when segments travels from Host B to Host A the Host B's port becomes source and Host A's port becomes source.