Q3-2 How Does Data Move over a Network? Flashcards

1
Q

What is the role of protocols in network communication?

A

Protocols are sets of rules used by devices to communicate over a network.

They ensure that data flows seamlessly across the Internet by standardizing communication methods and conventions, allowing devices with different operations and designs to interact efficiently.

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

What is the IEEE 802.3 protocol and what does it specify?

A

The IEEE 802.3 protocol, also known as Ethernet, is used for wired LAN connections.

It specifies hardware characteristics, such as which wire carries which signals.

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

What is the difference between the IEEE 802.11 protocol versions?

A

IEEE 802.11 is used for wireless LAN connections.

As of 2017, the most current standard is IEEE 802.11ac, which allows speeds up to 1300 Mbps, a 100% increase in speed over the previous standard, IEEE 802.11n.

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

How does encapsulation help in data transmission over the Internet?

A

Encapsulation involves wrapping data in a series of protocol layers to ensure secure and reliable transmission across the Internet.

Each layer encapsulates the data with additional information, akin to placing a message within multiple envelopes, which are systematically removed by the recipient to reveal the original message.

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

What is the TCP/IP Protocol architecture?

A

The TCP/IP Protocol architecture is a layered arrangement of protocols used to handle data communication over the Internet.

It includes various protocols at different layers, ensuring organized and efficient data handling.

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

What is the function of the Hypertext Transport Protocol (HTTP)?

A

HTTP is the protocol used between web browsers and servers.

It facilitates the transmission of web pages from servers to browsers using predefined request and response formats, enabling seamless interaction without prior direct communication between the browser and server.

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

What is HTTPS and why is it important?

A

HTTPS is a secure version of HTTP that encrypts data transmission between a user’s browser and a web server, protecting sensitive information like credit card numbers from interception.

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

What are some common TCP/IP protocols besides HTTP?

A

Common TCP/IP protocols include:

SMTP (Simple Mail Transfer
Protocol)
: Used for email transmissions.

FTP (File Transfer Protocol): Used for transferring files over the Internet.

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

How does the Internet Protocol (IP) facilitate data movement on the Internet?

A

IP assigns a unique address to every device on the Internet and stamps a destination address on every packet of data.

This helps in routing each packet to its correct destination, ensuring accurate data delivery across various network paths.

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

What is an IP address?

A

An IP address is a unique number that identifies the location of a device on the Internet.

Every device that connects to the Internet must have an IP address.

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

What is the difference between public and private IP addresses?

A

Public IP addresses identify devices on the public Internet.

Private IP addresses identify devices on a private network, such as a LAN.

Private addresses are controlled within the LAN.

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

What happens to your IP address when you connect to the Internet via an ISP?

A

When you connect to the Internet through an ISP, your device receives a private IP address on your LAN, and the ISP assigns a public IP address, which may be temporary, for your connection to the Internet.

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

What are IPv4 and IPv6?

A

IPv4 is an older IP address format using a four-decimal dotted structure (e.g., 104.193.184.125).

IPv6 is the more recent version with a much longer address format designed to accommodate more devices on the Internet.

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

What is a domain name, and why is it used?

A

A domain name is a worldwide-unique name that is affiliated with a particular public IP address, making it easier to identify websites.

For example, http://Snapchat.com points to a public IP address, but is more user-friendly than using the IP address itself.

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

Can multiple domain names point to the same IP address?

A

Yes, several domain names can point to the same Internet address.

Additionally, the affiliation of domain names with IP addresses is dynamic and can be changed by the owner of the domain.

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

What is a markup language?

A

A markup language is a system used to annotate a document in a way that is distinguishable from the text.

It provides instructions for how the text should be displayed, but it is not a language used to write the content itself.

17
Q

What is the purpose of a markup language?

A

The purpose of a markup language is to allow the text to be written once but formatted dynamically across different devices, such as smartphones, tablets, or TV screens.

18
Q

What are two important markup languages used on the Web?

A

Two important markup languages used on the Web are:

HTML (Hypertext Markup Language)

XML (Extensible Markup Language)

19
Q

What is HTML and what does it do?

A

HTML (Hypertext Markup Language) is a markup language that defines the structure and layout of Web pages.

It uses tags enclosed in angle brackets < > to indicate how text should be displayed in a browser.

20
Q

What are HTML tags and how are they formatted?

A

HTML tags are enclosed in angle brackets < >, with the start of the tag indicated by <tag> and the end of the tag indicated by </tag>.

For example, <h2> defines a level-two heading.

21
Q

What is a hyperlink in HTML?

A

A hyperlink is a pointer to another web page.

It contains the URL of the target web page and allows users to click the link to navigate to that page.

22
Q

What are attributes in HTML tags?

A

Attributes in HTML tags provide additional properties about the tag.

For example, the href attribute in a hyperlink tag specifies the URL of the web page to be linked.

23
Q

What is CSS and how does it relate to HTML?

A

CSS (Cascading Style Sheets) defines the fonts, layouts, and styles of elements on a web page, ensuring a consistent look across all pages.

It works in conjunction with HTML to control the presentation of web content.

24
Q

What is XML, and how is it used?

A

XML (Extensible Markup Language) is a markup language similar to HTML but is designed to be machine-readable.

It is used to exchange structured data over the Web, allowing information to be shared between different systems.

25
Q

What is an example of an XML tag?

A

An example of an XML tag is <customer_address>, which tells the web application that the content inside the tag represents a customer's address.</customer_address>

26
Q

What is Service-Oriented Architecture (SOA)?

A

SOA is a design philosophy that allows apps on a network to communicate with each other by using standard protocols to publish services.

These services define the structure of the data exchanged, how the data is processed, and how clients request and receive these services.

27
Q

How does SOA facilitate communication between apps?

A

SOA uses standard protocols that define the services an application provides, the data it expects to receive, and the data it will produce.

Clients use these protocols to request services, and providers (such as web servers) specify the work they will perform.

28
Q

What is an analogy for understanding SOA?

A

SOA can be compared to a city providing services like water, electricity, and transportation to houses.

The people in the house know how to use the services but don’t need to know how they work.

Similarly, apps in SOA know how to request services without needing to understand how they are provided.

29
Q

How does SOA simplify service requests for applications?

A

SOA automates service requests by using standard protocols, eliminating the need for clients to contact each service provider directly and describe in detail what they need.

30
Q

How does Instagram use SOA in its service?

A

Instagram uses SOA standards for services like login and uploading.

Clients, such as your device, use these services without needing to specify what a photo is or how it should be stored.

31
Q

What are Tier 1 network providers?

A

Tier 1 network providers, such as AT&T, Verizon, Sprint, and Century, form the Internet backbone and operate large WANs.

They sell services to ISPs, allowing them to connect to the Internet.

32
Q

What is peering in the context of Tier 1 network providers?

A

Peering refers to the agreements between Tier 1 network providers that govern how they exchange data freely with each other.

33
Q

What is the main issue concerning bandwidth usage on Tier 1 networks?

A

Some Internet participants, like Netflix, use a large portion of the bandwidth on Tier 1 networks, leading to debates over whether these providers should charge more for heavy traffic users.

34
Q

What is net neutrality?

A

Net neutrality is the principle that all data on the Internet should be treated equally, without giving preferential treatment to certain content providers or charging them extra for higher traffic usage.

35
Q

What is the Internet of Things (IoT)?

A

The Internet of Things (IoT) refers to the collection of objects connected to the Internet that communicate and share data for various purposes, such as parking sensors or home appliances like thermostats and wearables.

36
Q

How many IoT devices are estimated to exist?

A

It is estimated that there are now more than 26 billion IoT devices worldwide, designed to improve convenience, energy efficiency, and safety.