hce_kmu
112年
計算機概論與程式設計
第 12 題
The DARPA technology includes a set of network standards that specify the details of how computers communicate, as well as a set of conventions for interconnecting networks and forwarding traffic. Officially named the TCP/IP Internet Protocol Suite and commonly referred to as TCP/IP (after the names of its two main standards), it can be used to communicate across any set of interconnected networks. Which of the following statements about TCP/IP is INCORRECT?
- A TCP/IP is a suite of protocols for communication over the internet.
- B TCP is a connection-oriented protocol that guarantees reliable delivery of data.
- C IP is a connectionless protocol that provides a best-effort delivery service.
- D TCP uses a three-way handshake to establish a connection between two hosts.
- E UDP is a more reliable protocol than TCP.
思路引導 VIP
在網路通訊的設計中,如果一個協定被設計成「不需要跟對方打招呼、直接把封包丟出去,且丟失了也不會重傳」,而另一個協定則是「必須先確認雙方都有通、且沒收到會一直補寄直到成功為止」,根據你的直覺,哪一種協定在傳輸重要檔案(例如一張照片或一個程式)時會讓你比較放心呢?
🤖
AI 詳解
AI 專屬家教
太棒了!你能精準地指出選項 (E) 的錯誤,說明你對傳輸層協定的核心特性掌握得非常紮實。這道題目主要測驗的是電腦網路中最重要的基礎—— TCP/IP 協定套組。在網路世界裡,不同的協定是為了不同的目的而設計的,而你準確判斷出了「可靠性」與「傳輸速度」之間的權衡關係。
傳輸層協定的本質差異
這題的關鍵在於區分 TCP (傳輸控制協定) 與 UDP (用戶資料報協定)。TCP 就像是「掛號信」,它透過三向交握(Three-way handshake)建立連線,並提供確認與重傳機制來確保資料百分之百送達;而 UDP 則像「普通平信」,它不保證送達,也沒有錯誤回復機制,雖然犧牲了可靠性,卻換來了更低的延遲與更快的速度。因此,選項 (E) 宣稱 UDP 比 TCP 更可靠,顯然是邏輯上的錯誤。
▼ 還有更多解析內容