A. Hypothesis can be tested and proven.
Answer:
The main benefit of the ordered list is that you can apply Binary Search( O( n log n) ) to search the elements. Instead of an unordered list, you need to go through the entire list to do the search( O(n) ).
The main cost of the ordered list is that every time you insert into a sorted list, you need to do comparisons to find where to place the element( O( n log n) ). But, every time you insert into an unsorted, you don't need to find where to place the element in the list ( O(1) ). Another cost for an ordered list is where you need to delete an element, you have an extra cost rearranging the list to maintain the order.
The SOA is the specific record type found in every zone and contains information that identifies the sever primarily responsible for the zone as well as some operational properties for the zone.
Explanation:
The Start of Authority Records (SOA) has the following information they are
Serial Number: This number is used to find when zonal information should be replicated.
Responsible person: The Email address of a person is responsible for managing the zone.
Refresh Interval: It specifies how often a secondary DNS server tries to renew its zone information.
Retry Interval: It specifies the amount of time a secondary server waits before retrying the zone information has failed.
Expires After: IT specifies the amount of time before a secondary server considers its zone data if it can't contact with the primary server.
Minimum TTL: It specifies the default TTL value for a zone data when a TTL is not supplied.
Microsoft company was founded in 1975