nerdexam
CompTIA

SK0-004 · Question #192

Which of the following protocols is considered stateless and utilizes TCP when communicating between a server and client?

The correct answer is C. HTTP. HTTP is stateless because the server retains no session context between individual requests, yet it relies on TCP for reliable transport.

Server administration

Question

Which of the following protocols is considered stateless and utilizes TCP when communicating between a server and client?

Options

  • AIMAP
  • BSMTP
  • CHTTP
  • DSSH

How the community answered

(25 responses)
  • B
    4% (1)
  • C
    96% (24)

Why each option

HTTP is stateless because the server retains no session context between individual requests, yet it relies on TCP for reliable transport.

AIMAP

IMAP (Internet Message Access Protocol) is stateful because it maintains persistent session state, tracking mailbox synchronization and folder subscriptions across connections.

BSMTP

SMTP (Simple Mail Transfer Protocol) is stateful within a mail transaction - it tracks the progression of commands (EHLO, MAIL FROM, RCPT TO, DATA) and maintains sender/recipient context until the transaction completes.

CHTTPCorrect

HTTP (Hypertext Transfer Protocol) is defined as a stateless protocol - each request from a client is treated as an independent transaction with no memory of prior interactions retained by the server at the application layer. Despite this statelessness, HTTP uses TCP (port 80 for plain HTTP) as its underlying transport to ensure reliable, ordered delivery of packets. This pairing of application-layer statelessness with connection-oriented TCP transport is a core characteristic tested in networking certifications.

DSSH

SSH (Secure Shell) is a stateful protocol that establishes an authenticated, encrypted session and preserves connection state - including channel multiplexing - throughout the entire session.

Concept tested: HTTP stateless protocol behavior over TCP

Source: https://www.rfc-editor.org/rfc/rfc9110

Topics

#HTTP#stateless protocol#TCP#network protocols

Community Discussion

No community discussion yet for this question.

Full SK0-004 Practice