Answer:
it serves as the phone book for the Internet by translating human-friendly computer hostnames into IP addresses. ... The DNS reflects the structure of administrative responsibility in the Internet.
(Credit: Wikipedia)
Explanation:
TLDR: Translates computer hostnames into IP Addresses.
Answer:
class Example:
def __init__(self, val):
self.val = val
def __gt__(self, other):
return self.val > other.val
def __sub__(self,other):
return abs(len(self.val) - len(other.val))
def main():
obj1 = Example('this is a string')
obj2 = Example('this is another one')
print(obj1 > obj2)
print(obj1 - obj2)
main()
\color{red}\underline{Output:}
The first question is B.), acronym, and the second one is c.) acrostic.
Hope this helps!