The naming scheme would be b
Its false nothing comes up when u press that key
Answer:
WAN(wide area network) is the network that is used for the connection in the geographical areas on large scale.They are used for connecting the areas like cities, countries, states etc.The connection of various LANs(Local area network) and MAN(Metropolitan area network) form the WAN.
There are several components that are used in the wide area network structure. Some of the constituents are as follows:-
- ATM()Asynchronous transfer mode
- Fiber optic communication path
- Modem having cables
- Frame relay
- Dial up internet etc.
Answer and Explanation:
#take input from user
n = int(input("Enter any number: "))
#sum variable to store sum
sum=0
#condition to exit from loop
while n!=-999:
#adding entered number in sum variable
sum=sum+n
#take input from user
n = int(input("Enter any number : "))
#print the sum
print("sum =",sum)
output:
Enter any number: 10
Enter any number : 100
Enter any number : -999
sum = 110