Careers360 Logo
ask-icon
share
    GATE 2026 CSE Shift 1 Question Paper with Solutions Available: Download PDF Here

    GATE 2026 CSE Shift 1 Question Paper with Solutions Available: Download PDF Here

    Shivani PooniaUpdated on 19 Mar 2026, 07:17 PM IST

    GATE 2026 CSE Question Paper with Solutions-The GATE CSE exam was conducted in 2 sessions, as it has 2 papers: GATE CS Paper I and GATE CS Paper II. Both sessions were conducted on 8 Feb. Candidates can now access the official GATE CS question paper and analysis below. Based on the initial analysis, the GATE 2026 CSE question paper was considered moderate to tough. Going through the GATE 2026 CSE question paper with solutions will help students understand the difficulty of the exam, question pattern and high-weightage topics. It provides the detailed analysis required to test the GATE 2026 performance. The GATE 2026 CS official answer key and question paper have been released on the official website gate2026.iitg.ac.in.

    LiveGATE 2026 Result LIVE (OUT): IIT Guwahati MTech entrance exam result at gate2026.iitg.ac.in; toppers, branchesMar 20, 2026 | 11:33 PM IST

    The computer-based test GATE 2026 was conducted on February 7, 8, 14, and 15, 2026 by the Indian Institute of Technology (IIT) Guwahati.

    Read More

    This Story also Contains

    1. GATE 2026 CSE Question Paper with Solutions PDF Free Download
    2. CSE Paper II ( Memory-based questions):
    3. GATE CS Question Paper: Overview
    4. GATE 2026 CSE Question Paper with Solutions: Marking Scheme
    5. How to Download GATE Computer Science Question Papers with Answers PDF?
    6. GATE CS Question Paper 2026: Weightage Distribution
    7. GATE CS Question Paper: Previous Years
    GATE 2026 CSE Shift 1 Question Paper with Solutions Available: Download PDF Here
    GATE 2026 CSE Question Paper with Solutions PDF

    GATE 2026 CSE Question Paper with Solutions PDF Free Download

    You can use the GATE 2026 CSE question paper with solutions PDF free download option from below. The official GATE question paper is added in the table below.

    Subjects

    1 mark question

    2 mark question

    General aptitude

    5

    5

    Engineering mathematics

    4

    -

    database

    3

    2

    Operating systems

    2

    2

    Computer organization and architecture

    2

    3

    Compiler design

    1

    2

    Theory of computation

    1

    3

    Digital logic design

    1

    2

    Discrete mathematics

    1

    2

    Computer network

    2

    2

    Algorithms

    2

    3

    Programming and data structure

    3

    3

    Total2729

    CSE Paper I (Memory-based questions):

    Question 1: Which of the following cannot be the number of states in the minimal DFA equivalent to the NFA of 6 states?
    A) 1
    B) 32
    C) 65
    D) 128

    Question 2: Consider the following C statement:

    char * str1 = "Hello"; // stmt S1 char * str2 = "Hello"; // stmt S2 char * str3 = "Hello" // stmt S3
    Which of the following are correct?

    Question 3: Which of the following is always true for LL(1) parser?
    A) Grammar must be left factored
    B) LL(1) parser is more powerful than SLR(1).
    C) LL(1) is non back tracking.
    D) Grammar must be left recursive.

    Question 4: Consider a relation R(A,B,C,D) and functional dependencies of X→Y. Which of the following statement are correct?
    A) If PQ→R, then P→R or Q→R.
    B) If P→R and Q→S, then PQ→RS.
    C) If P→R, then PQ→R.
    D) If PQ→R and P→R, then Q→R.

    Question 5: With respect to the TCP connection between client and server, which of the following is True?

    A) TCP connection is half-duplex

    B) The client and server use the three-way Handshake mechanism

    C) Before starting data Transmission client and server can initiate closing the connection at the same time
    D) The server can not initiate closing of correction once the client initiates closing of the connection

    Question 6: For n>1, the maximum multiplicity of any eigenvalue of an n×n matrix with real entries is?
    A) n−1
    B) n+1
    C) n
    D) 1

    Question 7: A n×n, n>1. If (1,0,1,0,0,…,0)∈R n belongs to the null space of A then
    A) |A| = 0
    B) |A| = 1
    C) Rank A = 1
    D) There are at least 2 non zero vectors in the null space of A.

    Question 8: There are 5 processes in a system. The maximum number of records a process can take is 2. At a time, a process can take only a single resource and can free only a single resource. How many records are required to ensure deadlock-free execution ______?

    Question 9: Which of the following is may not dependency preserving decomposition?
    A) 1NF
    B) 2NF
    C) 3NF
    D) BCNF

    CSE Paper II ( Memory-based questions):

    Question1 :If an IP network uses a S.M of 255.255.208.0, the max number of IP add. that can be assigned to network interfaces is ____ .

    Question 2: Let the determinant of a 4×4 matrix A is 3, then what is the determinant of 2A?

    Question 3: Consider a probability density function (PDF) of a random variable X as fX(x)=132πe−x218, x∈(−∞,+∞). Then, which one of the following statements is/are true?
    A) X is following Poisson distribution
    B) X is following normal distribution.
    C) X is following exponential distribution
    D) X is following uniform distribution

    Question 4: Let R be a binary relation on the set A={1,2,…,10} defined by (x,y)∈R⟺xy is a perfect square. Which of the following properties does R satisfy?

    A) Symmetric

    B) Antisymmetric

    C) Transitive

    D) Reflexive

    Question 5: For how many combinations of S1,Sb will the output y=1 for the given circuit [A,B,S1,S0] ?

    Question 6: Assume that in a certain computer, the virtual addresses are 64 bits long and the physical addresses are 48 bits long. The memory is word-addressible. The page size is 8 kB and the word size is 4 bytes. The Translation Look-aside Buffer (TLB) in the address translation path has 128 valid entries. At most how many distinct virtual addresses can be translated without any TLB miss?

    A) 16×210

    B) 256×210

    C) 4×220

    D) 8×220

    Question 7: Which of the following CPU scheduling algo cannot be pre-emptive?
    A) RR (Round Robin)
    B) SRTF (Shortest Remaining Time First)
    C) Priority
    D) FCFS (First Come First Served)

    Question 8: Which can be recurrence relations to an algo. with T.C O(n)?
    A) T(n)=2T(n2)+n, T(1)=1
    B) T(n)=T(n−1)+1
    C) T(n)=2T(n2)+1, T(1)=1
    D) T(n)=T(n−1)+n

    Question 9: Four 4 bit 2's-complement numbers are given: N1=1011,N2=1101,N3=1010,N4=1001. Which of the following arithmetic operations results in overflow?
    A) N1+N2
    B) N2+N3
    C) N1+N4
    D) N3−N4

    Question 10: In C runtime eigenvalues which one of the following our is stored in heap.
    A) Local variables
    B) Global variables
    C) Static variables
    D) Dynamically allocated memory

    GATE CS Question Paper: Overview

    The GATE CS question paper is one of the most important exams for aspirants aiming to pursue MTech or other opportunities in computer science and related fields. Go through the table below to understand the exam paper pattern for the GATE CS question paper 2026:

    Particulars

    Details

    Total Marks

    100

    Mode

    CBT (Computer-Based Test)

    Duration

    3 Hours

    Number of Questions

    65

    Sections

    General Aptitude + Computer Science

    Exam Date

    February 8, 2026 ( Both forenoon and afternoon shifts)

    You can also check the exam pattern of GATE 2026 to the marking scheme.

    GATE 2026 CSE Question Paper with Solutions: Marking Scheme

    The GATE 2026 CSE exam is now over, and candidates can assess their performance by using the memory-based question paper and answers above. Before the results are announced, you can estimate your score using the official marking scheme shown in the table below:

    Component

    Details

    Total Marks

    100 marks per paper

    Exam Duration

    3 hours (180 minutes)

    Question Types

    MCQ (Multiple Choice Questions), MSQ (Multiple Select Questions), NAT (Numerical Answer Type)

    Marks per Question

    1 mark or 2 marks

    Negative Marking – MCQ

    1-mark MCQ: –1/3 mark for each wrong answer 2-mark MCQ: –2/3 mark for each wrong answer

    Students can calculate/ assume their marks based on the given formula below:

    Formula: Total marks = Total marks secured for correct response – Negative marks for wrong response.

    How to Download GATE Computer Science Question Papers with Answers PDF?

    First, click on the GATE Computer Science Question Papers link available in the table above. By clicking on that link, you will be redirected to the official website of Careers360. Old users can log in using their registered email ID and password, while new users will need to complete the registration process. After logging in, click on the Download PDF option. The GATE Computer Science Question Paper with Answers PDF will be sent to your registered email ID. Check your inbox to view and download the PDF for reference and practice.

    GATE CS Question Paper 2026: Weightage Distribution

    The GATE CS question paper covers the computer and data science syllabus. However, like any other exam, this subject also has a weightage average depending on the last 5 years of the exam. Upon reviewing the GATE 2026 CSE question paper with solutions, the following weightage table was prepared. This can help you prepare better for the GATE CS question paper 2026:

    Chapter

    Weightage

    Aptitude

    16.40%

    Engineering Mathematics

    15.73%

    Programming and Data Structures

    9.89%

    Computer Networks

    9.89%

    Computer Organization & Architecture

    9.44%

    Operating System

    8.54%

    Theory of Computation

    8.76%

    Digital Logic

    7.19%

    Algorithms

    4.94%

    Databases

    4.72%

    Compiler Design

    4.49%

    Grand Total

    100.00%

    You can also understand the weightage table by the following graph:
    GATE Weightage

    Frequently Asked Questions (FAQs)

    Q: Are previous year GATE Computer Science question papers useful for preparation?
    A:

    Yes, you can use it for practice.

    Q: What is the expected difficulty level of the GATE Computer Science paper?
    A:

    It is usually moderate to difficult.

    Q: Where can I find GATE 2026 CS question paper with solutions PDF download?
    A:

    You can find it in this article linked above.

    Articles
    |
    Upcoming Engineering Exams
    Ongoing Dates
    BITS HD Application Date

    18 Feb'26 - 20 Apr'26 (Online)

    Certifications By Top Providers
    B.Tech Engineering Technology
    Via Birla Institute of Technology and Science, Pilani
    Certificate Program in Machine Learning and AI with Python
    Via Indian Institute of Technology Bombay
    Post Graduate Diploma Program in Data Science and Artificial Intelligence
    Via Indraprastha Institute of Information Technology, Delhi
    Computer Fundamentals
    Via Devi Ahilya Vishwavidyalaya, Indore
    Programming Basics
    Via Indian Institute of Technology Bombay
    C-Based VLSI Design
    Via Indian Institute of Technology Guwahati
    Udemy
     1525 courses
    Swayam
     817 courses
    NPTEL
     773 courses
    Coursera
     697 courses
    Edx
     608 courses
    Explore Top Universities Across Globe

    Questions related to GATE

    On Question asked by student community

    Have a question related to GATE ?

    Every PSU has different cut-off marks and eligibility. Hence, it is suggested to apply for PSU after checking the eligibility. Also, they do not reveal the marks of the finally selected candidates. So, wait for the final merit list.

    Yes. You can. GATE eligibility specifies that students in their 3rd year and above can appear for the exam. Since the results are valid for 3 years, you can use the same for your admissions.

    If you score 500 marks in GATE2026, your chances of getting into good engineering colleges (especially NITs, IIITs and some older IITs) are strong for most disciplines, while top branches like CSE/EEE/ECE at older IITs may still require higher ranks. Your GATE AllIndia Rank (AIR) with 500 marks usually falls