SV
StudyVirus
Get our free app!Download Free

OSI Model — Set 5

Computers · OSI मॉडल · Questions 4150 of 70

00
0/10
1

What is the primary function of the 'LLC' sublayer in the Data Link Layer?

💡

Correct Answer: C. Flow and error control

• **LLC (Logical Link Control) sublayer** = the upper sublayer of the Data Link Layer whose primary function is flow control, error control, and identifying which Network Layer protocol (IP, IPX, etc.) the frame is carrying. • **LLC vs MAC** — the MAC sublayer below LLC handles physical addressing (MAC addresses) and medium access control; LLC sits above MAC and acts as the interface to the Network Layer, multiplexing multiple network protocols over the same physical link. • LLC is standardized by IEEE 802.2 and uses Service Access Points (SAPs) to identify the Network Layer protocol inside each frame. • 💡 Option A (Physical addressing) is wrong because MAC addresses and physical addressing belong to the MAC sublayer, not LLC; Option B (Routing) is wrong because routing decisions are made at the Network Layer by routers; Option D (Signal generation) is wrong because converting data to electrical or optical signals is a Physical Layer responsibility.

2

Which layer is responsible for 'Source-to-Destination' delivery of a complete message?

💡

Correct Answer: D. Transport Layer

• **Transport Layer** = the OSI layer responsible for source-to-destination delivery of the complete message, tracking every segment from the sending application to the receiving application and ensuring the full message is correctly reassembled. • **Transport vs Network** — the Network Layer delivers individual packets and may drop or reorder them without recovery; the Transport Layer sits above it, using sequence numbers and acknowledgements to guarantee the entire message arrives intact. • TCP (Transmission Control Protocol) at the Transport Layer provides this reliable, ordered, error-checked delivery, while UDP provides faster but unreliable delivery. • 💡 Option A (Network Layer) is wrong because it routes individual packets and does not guarantee complete message delivery; Option B (Physical Layer) is wrong because it handles raw bit-by-bit signal transmission; Option C (Data Link Layer) is wrong because it performs hop-to-hop frame delivery between adjacent nodes, not full message delivery.

3

Which OSI layer is responsible for the bit-by-bit delivery of data?

💡

Correct Answer: A. Physical Layer

• **Physical Layer** = the OSI layer responsible for bit-by-bit delivery, transmitting individual binary bits (1s and 0s) over the physical medium as electrical, optical, or radio signals without interpreting their meaning. • **No structural awareness** — unlike the Data Link Layer which assembles bits into meaningful frames with headers, the Physical Layer treats every bit identically and simply ensures each signal is faithfully reproduced at the next node. • Physical Layer devices — cables, repeaters, hubs, modems — are all concerned solely with moving individual bits from one point to another. • 💡 Option B (Data Link Layer) is wrong because it works with structured frames and uses MAC addresses for hop-to-hop delivery; Option C (Network Layer) is wrong because it handles packet routing using IP addresses across multiple networks; Option D (Transport Layer) is wrong because it manages segments and provides reliable end-to-end delivery.

4

At which layer are 'Bridges' commonly found in a network?

💡

Correct Answer: C. Data Link Layer

• **Data Link Layer** = the OSI layer where bridges operate, because bridges connect two network segments and use MAC addresses — a Data Link Layer concept — to filter and selectively forward frames between segments. • **How bridges reduce congestion** — a bridge builds a table of MAC addresses on each segment; it only forwards a frame to the other segment when the destination MAC is there, keeping purely local traffic local and cutting down unnecessary broadcast load. • Modern Layer 2 switches are essentially multi-port bridges, offering the same MAC-address filtering across many ports simultaneously. • 💡 Option A (Physical Layer) is wrong because Physical Layer devices like hubs and repeaters forward all signals without any filtering; Option B (Network Layer) is wrong because devices there (routers) use IP addresses and operate at a higher level; Option D (Transport Layer) is wrong because no standard forwarding device works purely at the Transport Layer.

5

Which layer is responsible for 'Token Management' to prevent data collisions?

💡

Correct Answer: D. Session Layer

• **Session Layer** = the OSI layer responsible for token management, providing a control mechanism that determines which device has the right to transmit at any given moment, preventing simultaneous transmissions that cause data collisions. • **Token passing** — only the device currently holding the logical 'token' is permitted to send data; once it finishes, it passes the token to the next device, ensuring orderly, collision-free access to the shared medium. • The Session Layer combines token management with synchronization checkpoints and session establishment/teardown to fully coordinate two-way dialogue. • 💡 Option A (Data Link Layer) is wrong because its media access methods (CSMA/CD, CSMA/CA) handle collision detection at the frame level, not explicit session-level token passing; Option B (Transport Layer) is wrong because it handles segmentation and end-to-end flow control; Option C (Physical Layer) is wrong because it only transmits raw bits and has no awareness of tokens or turn-taking.

6

The 'ICMP' protocol used for diagnostics like 'Ping' operates at which layer?

💡

Correct Answer: D. Network Layer

The Internet Control Message Protocol (ICMP) is a vital part of the Network Layer. It is used by network devices to send error messages and operational information. Tools like 'ping' and 'traceroute' rely on ICMP to test network connectivity.

7

Which layer of the OSI model is responsible for providing 'Translation' between different character sets?

💡

Correct Answer: D. Presentation Layer

The Presentation Layer translates data between the format used by the application and the standard network format. This includes converting between character sets like ASCII and EBCDIC. This ensures that computers with different internal representations can still exchange information.

8

Data units at the Data Link Layer are commonly called?

💡

Correct Answer: A. Frames

A 'Frame' is the protocol data unit at the Data Link Layer. It consists of the payload from the Network Layer wrapped in a header and a trailer. Frames are the units of data that are physically transmitted between local network nodes.

9

Which layer is responsible for 'Congestion Control' within a single network subnet?

💡

Correct Answer: D. Network Layer

The Network Layer implements strategies to manage and reduce congestion across the entire network. It can use techniques like load balancing or dropping low-priority packets during peak traffic. Congestion control at this layer focuses on the health of the routers and links.

10

What is the standard unit of data at the Transport Layer?

💡

Correct Answer: B. Segment

A 'Segment' is the data unit at the Transport Layer when using TCP. When using the connectionless UDP protocol, it is often referred to as a 'Datagram'. Segments contain port numbers and sequence information necessary for end-to-end delivery.