I think it’s A, but sorry if I’m wrong it just looks like the one. :) Also this is my first time answering a question!
Answer:B) Wide-Area Network (WAN)
Explanation: WAN(Wide area network)is the network which constitutes a large geographical region.This network consist of the small network unit as well as large network connections.This network does not have the geographic dispersion of the components of networks.
WAN works in geographic region for the dispersion between any two locations. Other options are incorrect because they connect the network components geographically. Thus the correct option is option(B).
Answer:
def ask():
x = int(input("Pick a number: "))
p = x - 1
s = x + 1
print("The predecessor is {} and the successor is {}.".format(p, s))
ask()
Explanation:
"def ask():" and everything indented defines the function and "ask" calls the function.