Question
Which of the following statements about the OSI
Model’s Transport Layer is true?ÂSolution
The Transport Layer (Layer 4) of the OSI model is responsible for providing end-to-end communication, ensuring reliable data delivery, and managing flow control between devices. It uses protocols like TCP and UDP to establish logical communication between processes, handle error detection, and ensure that data is delivered in the correct sequence. This layer also controls the flow of data to prevent congestion. Option A (Defines data formatting): Data formatting is done at the Presentation Layer (Layer 6), not the Transport Layer. Option B (Ensures reliable data transfer): While the Transport Layer does provide reliable data transfer (e.g., using TCP), error detection and correction are done at both the Data Link (Layer 2) and Transport Layer, not solely at Layer 4. Option C (Routing data): Routing is the responsibility of the Network Layer (Layer 3), which is concerned with the logical addressing and forwarding of packets across networks. Option E (Logical addressing): Logical addressing is handled by the Network Layer (Layer 3) using IP addresses, not the Transport Layer.
Consider the following Java code:
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexGroup {
...
Which of the following characteristics is NOT essential for cloud computing?
Which involve two factor authentication
Which network security device typically enforces a policy based on IP, port and protocol and can operate at transport and application layer when deep in...
Which statement is FALSE regarding Zener diode?
Complete the insert_at_beginning function for a singly linked list. Assume Node has data and next attributes.
class Node:
  def __init...
Consider generating all permutations of the string "ABC" using a backtracking approach. Which of the following sequences represents a valid path in the ...
In C++, how is abstraction primarily achieved when defining a class that cannot be instantiated directly but serves as a blueprint for derived classes?
In dimensional modeling, what is a fact table?
Which heuristic search strategy uses both cost so far and estimated cost to goal?