Name that Network
What the IP?
Ground the Socket
100

This network formed in 1969 was the precursor to the internet 

What is ARPANET?

100

This is the principal communications protocol for relaying datagrams across network boundaries. Its routing function enables interconnection of multiple networks.

What is Internet Protocol (IP)?

100

This is the combination of a port and an ip address?

What is a socket?

200

This is a computer network that interconnects computers within a limited area such as CSW.

What is LAN (Local Area Network)

200

This is a numerical label assigned to each device connected to a computer network that uses the Internet Protocol for communication

What is IP address?

200

This is a function which belongs to an object within Python.

What is a method?

300

The most common network topology. Within this framework, each node is independently connected to a central hub

What is StarNetwork ?

300

This command line text sends packets of data to a specified ip address?

What is ping?

300

A socket is bound to this so that the TCP layer can identify the application that data is destined to be sent to

What is a port number?

400

By extending a private network across the Internet, this network lets its users send and receive data as if their devices were connected to the private network – even if they’re not.

What is VPN? (Virtual Private Network)

400

There are 232 of this protocol available and we humans somehow managed to use a significant portion of them?

What is IPv4

400

#Code below does something.....

import socket

ip = socket.gethostbyname('www.google.com')
print (ip)



What is get Google's ip Address?

500

This gives users access to networking resources through a centralized third-party provider operating inter-connected servers. This involves connecting to a Wide Area Network (WAN) or other internet-based technology.

What is Cloud Networking?

500

This provides reliable, ordered, and error-checked delivery of a stream of octets (bytes) between applications running on hosts communicating via an IP network.

What is TCP?

500

This is the most common type of socket. The two communicating parties first establish a socket connection, after which any data passed through that connection is guaranteed to arrive in the same order in which it was sent

What is Stream Socket?