Introduction to Networks Flashcards

1
Q

What is the Internet?

A

A huge network of computers and devices all over the world, connected through wires and signals, that share information using routers and links

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is not the Internet?

A

Web pages belong to the World Wide Web, which runs on top of the Internet.
WiFi is just one way to connect to the Internet, not the Internet itself

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Define computer network and internet (lowercase ‘i’).

A

Computer network: A group of connected computers that share data and resources.
internet (small i): A collection of connected networks making a bigger network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Define the global Internet (capital ‘I’).

A

The worldwide system of all connected networks (internets), made up of devices, cables, routers, and switches that move data everywhere

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is networking?

A

Sending messages from one device to another over a network, using switches to decide the path

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the main types of switching schemes?

A

Broadcast: Send to everyone.

Circuit switching: Set up a fixed path before talking.

Packet switching: Break message into pieces, send each one its own way.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which switching scheme does the Internet use?

A

Packet switching

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the three main parts of the Internet’s structure?

A

Network Edge: The users (like phones, laptops, servers)

Access Network: The connection (like Wi-Fi, cables)

Network Core: The middlemen (routers/switches that move data)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are access ISPs?

A

ISPs are the companies that connect people to the Internet. They can be:

Home ISPs (like broadband at your house)

School/Work ISPs (used in institutions)

Mobile ISPs (like 4G/5G on phones)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the role of the network core?

A

Route and forward packets, it moves data from one router to another until it reaches the final destination.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is an IXP?

A

Internet Exchange Point - ISPs connect to exchange data directly, improving speed and reducing costs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Define a distributed system.

A

Multiple computers work together by sending messages to each other, but there’s no single clock and parts of it might fail

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is an intranet?

A

Private network within an organization, where access rules and firewalls control who can connect and what can be accessed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a firewall?

A

Security system that filters network traffic using rules to protect an intranet from external threats

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Define speed, bandwidth, and throughput.

A

Speed: How fast data travels.

Bandwidth: Maximum data that can be transmitted per unit of time.

Throughput: Actual data successfully transmitted per unit of time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is link delay?

A

Time to send one packet across a single link (e.g., Delay=RL​)
Where L=packet length, R=link bandwidth

17
Q

What causes queueing and packet loss?

A

If packets come in too fast, they wait in a buffer. If the buffer gets full, extra packets are lost

18
Q

What is end-to-end delay?

A

Time it takes for a packet to go from source to destination, including delays for sending, traveling, waiting in queues, and processing

19
Q

What is a protocol?

A

Set of rules that determine how systems in a network communicate, including how messages are formatted and the order in which they are sent

20
Q

Name some key Internet protocols and their uses.

A

HTTP/HTTPS: Used for browsing websites (Web).

SMTP/POP3: Used for sending/receiving emails (Email).

TCP/UDP: Manage how data is sent between computers (Transport).

IP: Routes data to the correct destination (Routing).

Ethernet: Handles the physical transfer of data over networks (Physical).

21
Q

What is protocol layering?

A

A hierarchy where each layer has a specific task and communicates with the layers above and below it

22
Q

What is the Internet Protocol Suite (TCP/IP stack)?

A

A 5-layer stack:
* Application
* Transport
* Network
* Link
* Physical

23
Q

What is encapsulation?

A

Each layer adds its own header to the data before sending it to the next layer

24
Q

What’s a key trade-off of protocol layering?

A

Pros: Easy to manage and fix because each layer has its own job.

Cons: Extra layer info slows things down a bit.