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.
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.
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 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).
A complete URL has several components:
https://www.example.com:443/folder/page.html?query=value
https → Protocolwww.example.com → Domain name (the ISP's DNS translates this to an IP address):443 → Port number (usually omitted when using defaults)/folder/page.html → Path to the resource?query=value → Query string (optional parameters)The exam sometimes presents "Universal Resource Locator" as an option. That is a trap. The correct expansion is Uniform Resource Locator.
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.
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).
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.
Use the mnemonic "S for Send, P and I for Inbox":
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
Confusing ISP with IP: ISP is the company that provides your internet connection (BSNL, Jio). IP (Internet Protocol) is the set of rules for addressing data packets. They are entirely different concepts despite the similar abbreviation.
Treating WWW and Internet as synonyms: The internet is the underlying global network. The WWW is one service running on that network. Email, FTP transfers, and online gaming are also internet services but are not part of the WWW.
Selecting HTTP when the question says "secure": HTTP is plaintext — it has no encryption. Any question with the words secure, encrypted, SSL, or TLS points to HTTPS. This trap works because HTTP appears in the options and looks familiar.
Writing URL as "Universal" instead of "Uniform": The exam specifically places "Universal Resource Locator" as a distractor. Uniform is the correct word. Anchor on: a URL gives a uniform (standardised) address for any resource.
Confusing <a> tag with <link> tag in HTML: <link> is used in the <head> section to link external resources like CSS stylesheets. <a> (anchor tag) is what creates clickable hyperlinks in the body of a page. Also note: href is an attribute inside the <a> tag, not a tag itself.
Assuming FTP and HTTP are interchangeable for file transfers: HTTP can technically download files, but FTP is the protocol specifically designed for file transfer between computers. In the exam context, "file transfer over the internet" always points to FTP.