GATE GUIDE

Computer Networks for GATE CSE 2027: Important Topics

By MD ANISH AHAMADUpdated 17 Sep 20269 min read

Computer Networks is the section whose wording changed most in the GATE 2027 syllabus, but its marks have stayed remarkably stable. The GATE computer networks important topics for 2027 are TCP congestion control, CIDR and subnetting, sliding-window arithmetic and delay calculations, followed by fragmentation, routing, CSMA/CD and CRC. This guide covers what the new syllabus names, a priority table, how each topic is asked, the traps and a short plan.

In this guide
  1. Key takeaways
  2. What the GATE 2027 CN syllabus names
  3. How many marks CN carries
  4. CN priority table for GATE 2027
  5. The most-tested CN topics and how they are asked
  6. Common CN traps
  7. A short CN preparation plan

Key takeaways

What the GATE 2027 CN syllabus names

The official GATE 2027 CS syllabus (Section 10) reads:

Principles of Layering; Basics of switching (circuit, packet and virtual circuit) and performance metrics; Data link layer: error detection, Medium Access Control, Ethernet; Distance vector and link state routing; IPv4 - Fragmentation, CIDR Notation, Network Address Translation; TCP - flow control and congestion control, socket API; DNS and HTTP.

Compared with 2026, the changes fall into three groups:

The clause-by-clause comparison is in GATE 2027 Computer Networks syllabus changes explained. Confirm the final text at gate2027.iitm.ac.in.

How many marks CN carries

The figures below are third-party analyst compilations from gateexam.info, GeeksforGeeks, careers360, goclasses and PW. They are not official, and analysts differ by 2–3 marks on questions that sit between subjects.

Period or paper CN marks (analyst figures)
Average, 2009–2017 about 8.3
Average, 2018–2026 about 8.0
Overall average, 2009–2026 about 8.2
Lowest and highest 6 (2011, 2020, 2026 Shift 1) and 11 (2022)
2026 Shift 1 6 (two 1-mark and two 2-mark questions)

The trend is flat: CN never fell below 6 or rose above 11 in eighteen papers. Topics reported across the 2026 shifts included subnetting and CIDR, routing, TCP congestion phases, sliding-window efficiency, DNS resolution and CRC, and analysts singled out a TCP connection question in Shift 2.

What does the syllabus cut do to these marks? The book estimates that 75–85 percent of CN marks from 2009 to 2026 fell on topics that remain in the 2027 syllabus. This is an estimate, not a measurement. The practical reading is that roughly the same marks now spread over fewer topics. To compare CN with other subjects, see the GATE CSE subject-wise weightage.

CN priority table for GATE 2027

The book ranks each retained CN subtopic with an eight-factor analytical score, including a factor for topics whose share rises because others were removed. The tiers are that ranking, not probabilities of a topic appearing.

Tier Topics Usual format
Tier 1 (Very High) TCP congestion control; CIDR and subnetting; sliding-window arithmetic (stop-and-wait, Go-Back-N, Selective Repeat); delay and performance metrics NAT 2 marks; some 1-mark MSQ or MCQ
Tier 2 (High) IPv4 fragmentation; distance vector routing; CSMA/CD computations; TCP connection management; CRC and error detection; DNS resolution; switching modes; longest prefix match and aggregation; TCP flow control NAT 2 marks or MSQ 1–2 marks
Tier 3 (Moderate) HTTP; Ethernet and switch counting; ALOHA and backoff; link state routing; Network Address Translation; socket API; Hamming code, parity and checksum Mostly 1-mark MSQ or MCQ; some NAT
Tier 4 (Lower) Layering principles; RTO estimation 1-mark MCQ; NAT for RTO

Based on this analysis, a 2027 CN block of four to six questions would typically hold two or three NAT calculations from the templates below, one or two MSQ statement sets, and at most one short MCQ on a principle. The CN chapter of the GATE CSE 2027 book adds the factor scores for all 22 subtopics, a topic-by-year map marking the 2027 status of each past question type, and a high-probability question bank with worked solutions written for the new syllabus.

The most-tested CN topics and how they are asked

TCP congestion control

The classic form: cwnd starts at 1 MSS with a given ssthresh, a timeout happens in one round and a triple duplicate ACK in another, and you find cwnd or ssthresh at a later round. Other forms ask how many RTTs a file transfer takes with no loss, or present an MSQ on how Tahoe and Reno react to each event. A round-by-round table with three rules solves all of them.

CIDR and subnetting

Two structures recur. "Given a mask, find hosts, subnets or the broadcast address" (2005, 2008, 2010, 2019) and "given a requirement, find the block or the valid allocation" (2012, 2020). Longest-prefix-match forwarding and aggregation of contiguous blocks are close relatives.

A quick example: a /27 block has 2^5 = 32 addresses and 30 usable hosts. Blocks start at multiples of 32 in the last octet, so 10.0.0.64/27 runs from .64 to .95, and .95 is its broadcast address.

Sliding-window arithmetic

The most repeated CN computation. You find the minimum sequence-number bits for a target utilisation, the window size needed for a utilisation, or the throughput of stop-and-wait or a window of W frames. The same underlying idea, the bandwidth-delay product, has been asked as sequence bits (2009, 2014, 2015, 2017), window size (2021), throughput (2003, 2016) and wraparound time (2018).

Delay and performance metrics

Transmission delay = L / R and propagation delay = d / v, combined into store-and-forward questions: total time for n packets across k links. The 2012 and 2023 questions (1,000 packets over 3 links; 1,000 chunks through one router) share the same structure: first-packet delay plus (n − 1) extra transmission times.

Tier 2 templates

Common CN traps

More cross-subject traps are in common mistakes that cost marks in GATE CSE.

A short CN preparation plan

  1. Drop the removed topics first. Do not spend revision time on ARP and DHCP message flows, UDP header fields, SMTP and FTP, or OSI layer trivia. Skim them once as background only.
  2. Build the four Tier 1 templates. For each, solve every relevant previous-year question and keep a one-page note of the formula and its convention. Always draw a round-by-round table for TCP congestion questions.
  3. Add the Tier 2 calculations. Fragmentation, CSMA/CD, CRC and a distance vector update are each one procedure. Practise until each takes under three minutes.
  4. Prepare MSQ statement sets. TCP handshake and states, Tahoe versus Reno, which header fields Network Address Translation rewrites, DNS and HTTP behaviour, and socket call order. MSQ has no partial credit, so learn exact rules, not impressions. The MCQ, MSQ and NAT strategy guide explains how to attempt them.
  5. Give the newly explicit items a short pass. The socket API sequence (socket, bind, listen, accept on the server; socket, connect on the client) and HTTP connection and RTT counting are small topics that the new wording brings forward.
  6. Revise with formulas and units side by side. The GATE CSE formula sheet collects the key CN formulas.

Frequently asked questions

Which Computer Networks topics are most important for GATE CSE 2027?

The book's analysis puts four topics in Tier 1: TCP congestion control, CIDR and subnetting, sliding-window arithmetic, and delay calculations under performance metrics. Tier 2 covers IPv4 fragmentation, distance vector routing, CSMA/CD, TCP connection management, CRC, DNS resolution, switching modes, longest prefix match and TCP flow control.

How many marks does Computer Networks carry in GATE CSE?

Third-party analyst compilations place Computer Networks at 6 to 11 marks in every paper from 2009 to 2026, with an average of about 8.2 marks. That is usually 4 to 6 questions. The figures are unofficial, and analysts can differ by 2 to 3 marks because some questions sit on subject boundaries.

Are ARP, DHCP, ICMP and UDP in the GATE 2027 syllabus?

They are no longer named. The GATE 2027 Computer Networks syllabus dropped the ARP, DHCP and ICMP clause, UDP as a named topic, SMTP, FTP and email, framing and Ethernet bridging. Treat them as low priority. At most they may appear as background inside questions on retained topics such as TCP, the socket API or IPv4.

Is sliding window protocol still in the GATE CSE 2027 syllabus?

It is not named word for word, but it is reached through performance metrics and TCP flow control, both of which the 2027 syllabus names. Sliding-window arithmetic has been the most repeated Computer Networks computation in past papers, so the book keeps it in Tier 1 for 2027.

What type of Computer Networks questions come in GATE?

Most 2-mark CN questions since 2014 have been NAT items with a small numerical answer, such as a window size, a fragment offset or a congestion window. Since 2021, MSQ statement sets on TCP, Network Address Translation, error detection and DNS or HTTP have been common. The analysis expects a 2027 block to mix two or three NATs with one or two MSQs.

Sources

Dates, fees and the syllabus are set by the GATE 2027 organising institute and can change. Always confirm at gate2027.iitm.ac.in.

Keep reading

GATE CSE 2027 book1,016 pages · ₹250 ₹300
Buy now — ₹250