SMTP MCQs Quiz | Class 10

This quiz covers Class X Computer Applications (Code 165), Unit 1: Networking, focusing on SMTP MCQs. It delves into the Email sending protocol and its role in digital communication. Test your knowledge on these crucial topics, then submit your answers to see your score and download a detailed PDF answer sheet.

SMTP: The Workhorse of Email Delivery

The Simple Mail Transfer Protocol (SMTP) is a fundamental application-layer protocol used for sending and receiving email messages over the internet. It acts as the backbone of email delivery, ensuring that your messages travel from your email client or webmail service to the recipient’s mail server. While you might use protocols like POP3 or IMAP to retrieve emails, SMTP is exclusively dedicated to the transmission of mail.

Key Role of SMTP

SMTP plays a crucial role in the entire email ecosystem:

  1. Sending Emails: When you hit “Send” on an email, your email client (like Outlook, Gmail in a browser) communicates with your outgoing mail server (an SMTP server) to send the message.
  2. Server-to-Server Transfer: If the recipient’s email address is hosted on a different mail server, your outgoing SMTP server will communicate with the recipient’s SMTP server to deliver the email.
  3. Relaying: SMTP servers act as relays, passing emails from one server to another until they reach their final destination.

How SMTP Works (Simplified)

The process involves a client (sender) and a server (receiver) establishing a connection:

  1. Connection Establishment: The client connects to the server, typically on port 25 (unencrypted) or 587 (submission with encryption, SMTPS).
  2. Greeting: The client identifies itself using HELO or EHLO command.
  3. Sender Identification: The client specifies the sender’s email address using MAIL FROM.
  4. Recipient Identification: The client specifies one or more recipient email addresses using RCPT TO.
  5. Data Transfer: The client sends the actual email content (headers, body) using the DATA command.
  6. Termination: After sending, the client sends a QUIT command to close the connection.

SMTP Commands

Command Purpose
HELO/EHLO Initiates the SMTP session.
MAIL FROM Specifies the sender’s email address.
RCPT TO Specifies the recipient’s email address.
DATA Begins the transfer of the email body.
RSET Aborts the current mail transaction.
QUIT Terminates the SMTP session.

Securing SMTP: SMTPS

To address security concerns like eavesdropping and unauthorized access, SMTP is often secured using Transport Layer Security (TLS) or Secure Sockets Layer (SSL). This is commonly referred to as SMTPS. When SMTPS is used, the communication is encrypted, protecting the email content and credentials during transit. Port 587 (for mail submission) and port 465 (for implicit SMTPS) are frequently used for secured SMTP connections.

Quick Revision List

  • SMTP is for sending emails.
  • Common ports: 25 (unencrypted), 587 (submission, encrypted via STARTTLS), 465 (implicit SMTPS).
  • It is an application layer protocol.
  • Works over TCP.
  • MAIL FROM specifies sender, RCPT TO specifies recipient.
  • SMTPS uses TLS/SSL for secure communication.

Practice Questions

  1. What is the primary function of the DATA command in an SMTP session?
  2. Differentiate between SMTP and POP3.
  3. Why is SMTPS important in modern email communication?
  4. Which port is commonly associated with encrypted SMTP submissions using STARTTLS?
  5. Explain the greeting process when an SMTP client connects to a server.

Author

  • CBSE Quiz Editorial Team

    Content created and reviewed by the CBSE Quiz Editorial Team based on the latest NCERT textbooks and CBSE syllabus. Our goal is to help students practice concepts clearly, confidently, and exam-ready through well-structured MCQs and revision content.