What is the question
there is nothing clear stated here
there are different ones like
Not Otherwise Specified
Network Operating System
Answer:
C. redundant networks are more reliable.
Explanation: I just got a 100 on a test and that question was asked.
Answer:
I'll be using python:
__________________________
a=int(input("Enter a number :"))
b=int(input("Enter another number :"))
c=int(input("Enter last number :"))
lis=[a,b,c]
sort=sorted(lis)
print("The largest number is:", sort[1])
___________________________