Internet Basics for IBPS Clerk — Protocols, URLs, Email & Web Concepts

beginner 18 min read

Concept

The internet is a global network of interconnected computers that communicate using a shared set of rules called protocols. Think of it like India's postal system — every letter (data packet) follows a defined addressing format (IP address), travels via designated routes (routers), and uses specific services depending on the type of content being delivered (web page, email, file).

Here's a useful mental model for IBPS Clerk prep: the internet is the physical and logical infrastructure (cables, routers, servers), while the World Wide Web (WWW) is just one service that runs on top of it — the system of linked web pages you browse. Email, FTP file transfers, and video calls are other services that also run on the internet but are not part of the WWW. Many candidates confuse "internet" with "web" — don't make that error in the exam.

The key players in any internet interaction are:

Every resource on the internet has a unique address called a URL (Uniform Resource Locator). A URL is structured like this:

protocol://domain-name/path/to/resource

Example: https://www.sarkaririse.in/quiz/ibps-clerk

Here, https is the protocol, www.sarkaririse.in is the domain, and /quiz/ibps-clerk is the path to the specific page.

For the IBPS Clerk exam, the most tested areas within internet basics are protocol names and their full forms, port numbers, email protocols (send vs. receive), and the distinction between HTTP and HTTPS. These are direct-recall, one-mark questions — get them right every single time.


Deep Dive

Protocols — The Core of the Topic

A protocol is a set of rules governing how data is transmitted between devices. The exam consistently tests five main protocols:

| Protocol | Full Form | Primary Use | |---|---|---| | HTTP | HyperText Transfer Protocol | Browsing web pages | | HTTPS | HyperText Transfer Protocol Secure | Secure browsing (encrypted) | | FTP | File Transfer Protocol | Transferring files | | SMTP | Simple Mail Transfer Protocol | Sending emails | | POP3 | Post Office Protocol version 3 | Receiving emails (downloads to device) | | IMAP | Internet Message Access Protocol | Receiving emails (stays on server) | | TELNET | — | Remote login to a computer | | DNS | Domain Name System | Translates domain names to IP addresses |

Look — the single most tested distinction is SMTP vs. POP3 vs. IMAP. Remember: SMTP is for sending, POP3 and IMAP are for receiving. Among the receiving protocols, POP3 downloads the email to your device and (typically) deletes it from the server; IMAP keeps the email on the server and syncs across multiple devices.

Port Numbers — A Frequent Direct Question

Every protocol communicates over a specific numbered port. The exam, particularly IBPS Clerk, asks these directly:

| Protocol | Default Port Number | |---|---| | HTTP | 80 | | HTTPS | 443 | | FTP | 21 (data: 20, control: 21) | | SMTP | 25 | | POP3 | 110 | | IMAP | 143 | | DNS | 53 | | TELNET | 23 |

The most commonly tested pair is HTTP = 80, HTTPS = 443. The second most common is FTP = 21, SMTP = 25.

HTTP vs. HTTPS

HTTP transfers data in plain text — anyone intercepting the communication can read it. HTTPS wraps that communication in SSL/TLS encryption (Secure Sockets Layer / Transport Layer Security), making it unreadable to a third party. When you see the padlock icon in your browser's address bar, the site is using HTTPS.

The encryption in HTTPS uses a certificate issued by a Certificate Authority (CA). This certificate verifies the server's identity, preventing impersonation attacks (called "man-in-the-middle" attacks).

URL Structure

A complete URL has several components:

https://www.example.com:443/folder/page.html?query=value

The exam sometimes presents "Universal Resource Locator" as an option. That is a trap. The correct expansion is Uniform Resource Locator.

ISP and Web Browsers

An ISP (Internet Service Provider) is the gateway between your device and the internet. When you type a URL, your request travels through your ISP's network to reach the destination server.

A web browser is client software that retrieves and displays web pages. Common browsers tested: Chrome, Firefox, Safari, Edge (formerly Internet Explorer). The browser uses HTTP/HTTPS to request pages and renders the HTML/CSS content it receives.

A search engine (Google, Bing, DuckDuckGo) is a web service — not a browser. The search engine lives on a server; the browser is the local program you use to access it. Confusing these two is a tested distractor.

HTML Hyperlinks

The anchor tag <a> in HTML creates hyperlinks. Its href attribute holds the destination URL:

<a href="https://example.com">Click here</a>

The exam occasionally asks which tag creates a hyperlink. The answer is <a>, not <link> (which is for stylesheets), not <href> (which is an attribute, not a tag), not <url> (which does not exist in HTML).


Memory Tricks & Shortcuts

patternPort Number Ladder

Arrange the four key ports in ascending order and link them to a phrase:

21 → 25 → 80 → 443 FTP → SMTP → HTTP → HTTPS

Phrase: "Full Speed Here, Heavy Security" (FTP=21, SMTP=25, HTTP=80, HTTPS=443)

Standard recall attempt (no system): 15-20 seconds of hesitation per port. With this ordered pattern: you reconstruct all four in under 5 seconds by counting up the sequence. Step count drops from 4 isolated memorisations to 1 ordered chain.

patternSend-Receive Split for Email Protocols

Use the mnemonic "S for Send, P and I for Inbox":

  • SMTP → Send
  • POP3 → receive (downloads, Pulls to device)
  • IMAP → receive (Inbox stays on server)

When the question asks "which protocol sends email?" — the answer is always SMTP. When it asks "which protocol is used to receive email?" — both POP3 and IMAP qualify, but if SMTP appears as an option, eliminate it first.

Standard method (rote memorise all three uses): ~30 seconds under pressure. With S/P/I pattern: 5 seconds, zero confusion.

eliminationHTTP vs HTTPS — The S Rule

Any question involving the word "secure" or "encrypted" → the answer is HTTPS, full stop. The S literally stands for Secure.

Conversely, any option listing HTTP (without S) is the wrong answer whenever the question mentions security, encryption, padlock, SSL, or TLS.

Use this as a first-pass elimination: in a 4-option question, eliminate HTTP immediately if the question contains any security-related word. This cuts your decision space from 4 options to 3 in under 2 seconds.

eliminationFull-Form Trap Buster for URL

The exam always places "Universal Resource Locator" as a decoy alongside the correct "Uniform Resource Locator".

Anchor on one word: "Uniform" (meaning standardised, consistent). A URL provides a uniform (standardised) way to address any resource — not a "universal" one.

Lock in: U = Uniform. Dismiss "Universal" in 1 second. This single anchor prevents the most common full-form error in this chapter.

patternFTP is for Files — Direct Letter Link

FTP → Files. The F in FTP stands for File, and FTP's job is to transfer Files.

When a question asks "which protocol transfers files over the internet?" — FTP is the only answer. HTTP transfers web pages (HTML documents), SMTP transfers email messages, POP3/IMAP manage email retrieval. None of them are designed for bulk file transfer.

This direct letter-to-function link reduces a potential 4-option analysis to an instant recall in 2 seconds vs. 10-15 seconds of elimination-based reasoning.


Fast-Solving Framework

When you see an internet/networking question in the IBPS Clerk exam, run this decision sequence:

Step 1 — Does the question contain the word "secure" or "encrypted"? Yes → Answer is HTTPS (port 443). Done.

Step 2 — Is the question about email? Yes → Does it say "send" or "sending"? → SMTP (port 25). Does it say "receive" or "retrieve"? → POP3 (port 110) or IMAP (port 143). If both are options, check whether the question mentions "multiple devices" or "server sync" — that points to IMAP.

Step 3 — Is the question about file transfer? Yes → FTP (port 21).

Step 4 — Is it a full-form question? URL = Uniform (not Universal) Resource Locator. HTTP = HyperText Transfer Protocol (not Transmission, not High). ISP = Internet Service Provider. WWW = World Wide Web.

Step 5 — Is it about HTML hyperlinks? The tag is <a>, the attribute is href. These are distinct — tag vs. attribute.

This 5-step filter handles approximately 90% of internet basics questions you will see in IBPS Clerk. Do not overthink — these are direct-recall questions.


Solved PYQs

Why this question: The HTTP vs. HTTPS distinction is the single most tested concept in internet basics. Knowing the "S = Secure" rule closes this in under 3 seconds.

Previous Year Questionपिछले वर्ष का प्रश्न
Which protocol is used for secure web browsing?
सुरक्षित वेब ब्राउज़िंग के लिए कौन से protocol का उपयोग किया जाता है?
  1. HTTP
  2. HTTPS
  3. FTP
  4. TELNET
  1. HTTP
  2. HTTPS
  3. FTP
  4. TELNET
Solutionसमाधान
HTTPS (HyperText Transfer Protocol Secure) is used for secure web browsing. It encrypts the communication between the web browser and server using SSL/TLS, protecting data from interception and tampering.
HTTPS (HyperText Transfer Protocol Secure) सुरक्षित वेब ब्राउज़िंग के लिए उपयोग किया जाता है। यह SSL/TLS का उपयोग करके वेब ब्राउज़र और सर्वर के बीच संचार को एन्क्रिप्ट करता है, डेटा को अवरोधन और छेड़छाड़ से बचाता है।

Solving path: The question asks for the protocol used for secure web browsing. The word "secure" is the trigger. HTTPS = HyperText Transfer Protocol Secure. HTTP lacks encryption. FTP is for file transfers. TELNET is for remote login. Answer: HTTPS.


Why this question: File transfer protocol questions appear regularly. The trap is selecting HTTP because "the internet" is mentioned.

Previous Year Questionपिछले वर्ष का प्रश्न
Which of the following is used to transfer files over the internet?
इंटरनेट पर files transfer करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
  1. HTTP
  2. SMTP
  3. FTP
  4. POP3
  1. HTTP
  2. SMTP
  3. FTP
  4. POP3
Solutionसमाधान
FTP (File Transfer Protocol) is specifically designed for transferring files between computers over a network. HTTP is for web pages, SMTP for sending emails, and POP3 for receiving emails.
FTP (File Transfer Protocol) विशेष रूप से नेटवर्क पर कंप्यूटरों के बीच फ़ाइलों को स्थानांतरित करने के लिए डिज़ाइन किया गया है। HTTP वेब पेजों के लिए, SMTP ईमेल भेजने के लिए, और POP3 ईमेल प्राप्त करने के लिए है।

Solving path: The question is about transferring files — F in FTP stands for File. HTTP serves web pages (HTML content), SMTP sends emails, POP3 retrieves emails. None of them are designed for file transfer as a primary function. Answer: FTP.


Why this question: The SMTP vs. POP3 confusion is extremely common and directly exploited in options.

Previous Year Questionपिछले वर्ष का प्रश्न
Which protocol is primarily used for sending emails?
ईमेल भेजने के लिए मुख्य रूप से कौन सा प्रोटोकॉल इस्तेमाल किया जाता है?
  1. POP3
  2. IMAP
  3. SMTP
  4. FTP
  1. POP3
  2. IMAP
  3. SMTP
  4. FTP
Solutionसमाधान
SMTP (Simple Mail Transfer Protocol) is primarily used for sending emails from a client to a server or between servers. POP3 and IMAP are used for receiving emails, while FTP is for file transfer.
SMTP (Simple Mail Transfer Protocol) मुख्य रूप से क्लाइंट से सर्वर या सर्वरों के बीच ईमेल भेजने के लिए उपयोग किया जाता है। POP3 और IMAP ईमेल प्राप्त करने के लिए उपयोग किए जाते हैं, जबकि FTP फ़ाइल ट्रांसफर के लिए है।

Solving path: "Sending emails" → SMTP. POP3 and IMAP are for receiving. FTP is for file transfer. The S-P-I mnemonic (Send/Pull/Inbox) makes this a 2-second decision. Answer: SMTP.


Why this question: Port number questions are direct one-mark gifts — but only if you have the table memorised.

Previous Year Questionपिछले वर्ष का प्रश्न
What is the default port number for HTTPS?
HTTPS के लिए डिफ़ॉल्ट पोर्ट नंबर क्या है?
  1. 80
  2. 443
  3. 21
  4. 25
  1. 80
  2. 443
  3. 21
  4. 25
Solutionसमाधान
The default port number for HTTPS is 443. Port 80 is used for HTTP, port 21 for FTP, and port 25 for SMTP. HTTPS uses SSL/TLS encryption for secure communication.
HTTPS के लिए डिफ़ॉल्ट पोर्ट नंबर 443 है। पोर्ट 80 HTTP के लिए, पोर्ट 21 FTP के लिए, और पोर्ट 25 SMTP के लिए उपयोग किया जाता है। HTTPS सुरक्षित संचार के लिए SSL/TLS एन्क्रिप्शन का उपयोग करता है।

Solving path: From the port ladder — 21 (FTP), 25 (SMTP), 80 (HTTP), 443 (HTTPS). Port 80 = HTTP. Port 443 = HTTPS. Port 21 = FTP. Port 25 = SMTP. The question asks for HTTPS → 443. Answer: 443.


Why this question: Full-form questions for URL appear almost every year. The "Universal vs. Uniform" trap catches unprepared candidates.

Previous Year Questionपिछले वर्ष का प्रश्न
What does URL stand for?
URL का पूरा नाम क्या है?
  1. Universal Resource Locator
  2. Uniform Resource Locator
  3. Universal Reference Link
  4. Uniform Reference Locator
  1. Universal Resource Locator
  2. Uniform Resource Locator
  3. Universal Reference Link
  4. Uniform Reference Locator
Solutionसमाधान
URL stands for Uniform Resource Locator. It is a reference or address used to access resources on the internet, specifying the location and method for retrieving the resource.
URL का मतलब Uniform Resource Locator है। यह इंटरनेट पर संसाधनों तक पहुंचने के लिए उपयोग किया जाने वाला एक संदर्भ या पता है, जो संसाधन के स्थान और पुनर्प्राप्ति की विधि को निर्दिष्ट करता है।

Solving path: Both "Universal Resource Locator" and "Uniform Resource Locator" appear as options. The correct expansion is Uniform — it provides a standardised (uniform) addressing format. Lock in: U = Uniform. Answer: Uniform Resource Locator.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →