E ExamMaster

RRB JE Junior Engineer · Computer Knowledge

Networking & Internet

Network types, devices, protocols, ports and IP — the networking half of SSC's networking & cyber security module (internet/e-mail is the next topic).

Eight concepts. Networking in banking and SSC papers is classification — PAN to WAN, hub versus switch versus router, protocol and port pairs — plus a few named bit-widths. Tables and pegs carry the load; almost nothing computes.

  • RRB JE Junior Engineer
  • Medium level
  • 8 concepts
  • 41 practice questions

1PAN, LAN, MAN and WAN by area

Networks are sorted by the area they cover. In increasing size the order is PAN < LAN < MAN < WAN. A LAN covers a building or campus; a MAN covers a city; a WAN spans countries. The Internet is the largest WAN in the usual exam phrasing.

Order by area covered — Personal, Local, Metropolitan, Wide — not by which one is "faster".

Figure. Area grows outward: PAN inside LAN inside MAN inside WAN.

Network types by area
TypeArea cueEveryday picture
PANPersonal / very short rangeBody / desk-scale personal net
LANBuilding / campusOffice or school network
MANCity / metroCity-wide network
WANCountries / long distanceInternet = largest WAN
A college links labs inside one campus building, a city government links offices across the metropolitan area, and branch banks in two countries exchange data over long-haul links. Which type order matches those three from smallest area to largest?
  1. WAN, then MAN, then LAN
  2. LAN, then MAN, then WAN
  3. MAN, then PAN, then LAN

Campus/building = LAN; city = MAN; cross-country = WAN. The notes' size order is PAN < LAN < MAN < WAN.

2Network topologies

Topology names how nodes are linked. Bus uses a single backbone. Star uses a central switch or hub. Ring forms a loop. Mesh interconnects nodes richly (every node interconnected in the full-mesh exam picture). Tree is hierarchical.

Star is easiest to troubleshoot because faults often localise at the centre; mesh is most fault-tolerant but costliest.

Figure. Star links every node to a centre; bus hangs nodes on one shared backbone.

Topology cue sheet
TopologyStructureExam cue
BusSingle backboneOne shared cable
StarCentral switch/hubEasiest to troubleshoot
RingLoopNodes in a circle
MeshMany / all-to-all linksMost fault-tolerant; costliest
TreeHierarchicalBranched levels
A small office wants the topology that is easiest to troubleshoot when one cable fails, accepting a central device as a single point of dependency. Which topology matches, and which is the fault-tolerant but expensive alternative named in the notes?
  1. Ring easiest; bus most fault-tolerant
  2. Star easiest to troubleshoot; mesh most fault-tolerant but costliest
  3. Mesh easiest; star most fault-tolerant

Star localises faults at the centre and is the easy-troubleshoot cue; mesh is the fault-tolerant/costly cue. Swapping those is the usual trap.

3Hub, switch and router by layer

Three devices are paired with layers and jobs. A hub broadcasts to all ports and is treated as Layer 1 (physical). A switch forwards by MAC address at Layer 2. A router connects different networks by IP address at Layer 3.

Router = routes between networks (IP); switch = within one network (MAC). A hub or switch alone does not replace a router when two different IP networks must exchange packets.

Figure. Hub floods at Layer 1; switch filters on MAC at Layer 2; router forwards on IP at Layer 3.

Hub / switch / router
DeviceLayer (exam)Forwards byJob cue
HubLayer 1Broadcast to all portsPhysical / shared broadcast
SwitchLayer 2MAC addressWithin a LAN
RouterLayer 3IP addressConnects different networks
Two LANs use different IP ranges and must exchange packets. A switch is already available inside each LAN. Which additional device is required, and why is a switch alone not enough?
  1. Another hub — hubs work at Layer 3 and route by IP
  2. A router — it connects networks by IP; a switch forwards by MAC inside a network
  3. Only a second switch — MAC forwarding always crosses IP networks

Crossing different IP networks is the router's Layer-3 job. Switches work within a network by MAC; hubs are Layer-1 broadcast devices, not IP routers.

4Key application protocols

Protocol questions match a job to a name. HTTP and HTTPS carry the web; FTP transfers files; SMTP sends mail; POP3 and IMAP receive mail. TCP/IP is the core suite underneath everyday Internet communication.

SMTP = Sending Mail (both start with S); POP/IMAP retrieve. HTTPS is HTTP plus SSL/TLS security — the padlock cue means the connection is encrypted.

Figure. Match each protocol to its job: web, file transfer, outbound mail, name lookup.

Protocol → job
ProtocolJob
HTTP / HTTPSWeb; HTTPS adds SSL/TLS encryption
FTPFile transfer
SMTPSending mail to a server
POP3 / IMAPReceiving / retrieving mail
TCP/IPCore Internet protocol suite
A mail client must push a new message out to the organisation's mail server. Receiving older mail into the same client uses a different protocol family. Which protocol sends, and which family receives?
  1. POP3 sends; SMTP receives
  2. SMTP sends; POP3 or IMAP receive
  3. FTP sends mail; HTTP receives mail

SMTP sends mail to the server; POP3/IMAP retrieve. FTP is file transfer; HTTP/HTTPS are web protocols.

5Default ports

Default port numbers are paired with protocols in static GK: HTTP = 80, HTTPS = 443, FTP = 21, SMTP = 25, DNS = 53. Questions usually ask the number for a named service, or the service for a named number.

Do not invent ports outside this sourced list for this topic.

Figure. Default ports are fixed exam facts: HTTP 80, HTTPS 443, FTP 21, SMTP 25, DNS 53.

Default ports
ServiceDefault port
HTTP80
HTTPS443
FTP21
SMTP25
DNS53
A firewall rule must allow encrypted web traffic to a public site and separately allow DNS lookups. Which default port pair matches those two services?
  1. HTTP on 80 and SMTP on 25
  2. HTTPS on 443 and DNS on 53
  3. FTP on 21 and HTTPS on 80

HTTPS defaults to 443; DNS defaults to 53. HTTP is 80 (not encrypted web); SMTP is mail; FTP is 21; HTTPS is not 80.

6IPv4 and IPv6 address sizes

An IPv4 address is 32 bits, written as four octets (each 0–255), for example 192.168.1.1. An IPv6 address is 128 bits. Bit width is the fact papers test — not a weekly "current adoption rate".

Four octets × 8 bits = 32 bits is the structure of the IPv4 notation, not a pacing-style multi-step method problem.

Figure. Address width is the cut: IPv4 is 32 bits; IPv6 is 128 bits.

IP versions
VersionBitsNotation cue
IPv432Four octets, each 0–255 (e.g. 192.168.1.1)
IPv6128Longer address space
A configuration screen shows 192.168.1.1 and a second field for a much longer hexadecimal address used by the newer Internet protocol. Which bit-width pair matches those two address families?
  1. IPv4 = 128 bits; IPv6 = 32 bits
  2. IPv4 = 32 bits (four octets); IPv6 = 128 bits
  3. Both are 32 bits; only the punctuation differs

Dotted four-octet form is IPv4 at 32 bits; IPv6 is 128 bits. Swapping 32/128 is the common trap.

7WWW, URL and DNS

The World Wide Web (WWW) is a service — collections of web pages accessed through browsers — not a synonym for the entire Internet. A URL locates a resource. DNS maps human-readable domain names to IP addresses so browsers can find hosts.

When a stem says a name must become a number before a page loads, it is describing DNS resolution.

Figure. A URL names a resource; DNS resolves the host name to an IP; then the browser fetches the page.

Name to address

  1. User enters a URLThe browser needs the host's IP address, not only the domain string.
  2. DNS lookupDNS resolves the domain name to an IP address (default port 53).
  3. Fetch the resourceThe client contacts that IP using web protocols (HTTP/HTTPS) to load the page.
A user types a shop's domain into a browser. Which service turns that name into the IP address the browser needs, and what is WWW relative to the Internet in the notes?
  1. SMTP turns names into IPs; WWW is another name for the whole Internet
  2. DNS maps domain names to IP addresses; WWW is a web-pages service accessed via browsers, not the entire Internet
  3. FTP maps names to IPs; URL and DNS are the same thing

DNS performs the name→IP mapping. WWW is a service of web pages, not identical to the Internet. SMTP/FTP are mail/file protocols; a URL locates a resource and is not itself DNS.

8Bandwidth in bits per second

Bandwidth is measured in bits per second (bps). The notes fix the mega scale as 1\ \mathrm{Mbps} = 10^{6} bits/second. Questions that name Mbps are asking for that power-of-ten meaning, not for a live ISP plan price.

Keep bits per second distinct from bytes in storage questions — networking bandwidth here is in bits.

Figure. Bandwidth is bits per second. Kbps, Mbps and Gbps are thousand-fold steps.

Bandwidth unit
UnitMeaning
bpsBits per second — base measure of bandwidth
Mbps10^{6} bits/second
A brochure advertises a 10 Mbps link. In the sense fixed by the notes, what does that rating measure?
  1. 10 million bytes of disk storage on the router
  2. A bandwidth of 10 \times 10^{6} bits per second
  3. Layer-3 routing capacity counted in MAC addresses per second

Mbps is megabits per second: 10^{6} bits/second each, so 10 Mbps is 10 \times 10^{6} bps. It is not a byte storage figure and not a MAC-address counter.

Notes

  • Network types by area: PAN < LAN < MAN < WAN; LAN covers a building, MAN a city, and WAN spans countries (the Internet is the largest WAN).
  • Topologies: Bus (single backbone), Star (central switch/hub), Ring (loop), Mesh (every node interconnected), and Tree (hierarchical).
  • Devices: Hub broadcasts to all ports (Layer 1), Switch forwards by MAC (Layer 2), Router connects networks by IP (Layer 3).
  • Key protocols: HTTP/HTTPS for web, FTP for file transfer, SMTP for sending mail, POP3/IMAP for receiving, and TCP/IP as the core suite.
  • WWW is a service of collections of web pages accessed via browsers; a URL locates a resource and DNS maps domain names to IP addresses.

Formulas

  • IPv4 address = 32 bits, written as four octets (0-255) e.g. 192.168.1.1; IPv6 = 128 bits.
  • Range order by size: PAN < LAN < MAN < WAN.
  • Default ports: HTTP=80, HTTPS=443, FTP=21, SMTP=25, DNS=53.
  • A switch works at Layer 2 (MAC), a router at Layer 3 (IP), a hub at Layer 1 (physical).
  • Bandwidth is measured in bits per second (bps); 1 Mbps = 10^6 bits/second.

Exam traps & shortcuts

  • Order LAN-MAN-WAN by area covered: Local, Metropolitan, Wide.
  • Star topology is easiest to troubleshoot (one central device); mesh is most fault-tolerant but costliest.
  • HTTPS = HTTP + SSL/TLS security; the padlock icon means the connection is encrypted.

Reference tables

Area order, devices by layer, protocols, ports and IP widths for revision.

Night-before networking sheet
TopicHold this
Area orderPAN < LAN < MAN < WAN (Internet = largest WAN)
TopologiesStar easiest to troubleshoot; mesh most fault-tolerant/costliest
DevicesHub L1 broadcast; Switch L2 MAC; Router L3 IP
MailSMTP sends; POP3/IMAP receive
PortsHTTP 80; HTTPS 443; FTP 21; SMTP 25; DNS 53
IP widthsIPv4 = 32 bits (4 octets); IPv6 = 128 bits
DNSDomain name → IP address
Bandwidthbps; 1 Mbps = 10^6 bits/s

Recap

If you keep only pegs, keep these.

Area order
PAN < LAN < MAN < WAN; Internet = largest WAN
Star / mesh
Star easiest to troubleshoot; mesh most fault-tolerant, costliest
Hub
Layer 1 — broadcasts to all ports
Switch
Layer 2 — forwards by MAC
Router
Layer 3 — connects networks by IP
Mail protocols
SMTP sends; POP3/IMAP receive
HTTPS
HTTP + SSL/TLS; padlock → encrypted
Ports
HTTP 80; HTTPS 443; FTP 21; SMTP 25; DNS 53
IPv4 / IPv6
IPv4 = 32 bits (four octets); IPv6 = 128 bits
DNS
Maps domain names to IP addresses
Bandwidth
Measured in bps; 1 Mbps = 10^6 bits/s

Practise Networking & Internet

Reading is free and needs no account. Practice, mocks and progress live in the app.

  • 41 exam-style questions on this topic, with explanations
  • A 5-question practice set that ends the chapter
  • Timed mocks scored with the real marking scheme
  • Readiness tracked per topic, kept on your device
Continue with Google — freeNo card, no trial. Works offline once installed.