Shruti
Shruti Garg
Assistant Manager- Editorial
Updated on Dec 11, 2024 10:51 IST

CUET UG 2024 exam will be held in in May/June 2025. Science students preparing for CUET Computer Science must check the CUET CS important topics and chapter-wise weightage to ace the examination. Know the important topics to focus on and weightage of each topic on the basis of the previous year's CUET question paper.

CUET Computer Science Important Topics & Weightage

CUET Computer Science Important Topics & Weightage

The National Testing Agency (NTA) conducts the Common University Entrance Test (CUET) for admission to Undergraduate courses offered by CUET-accepting colleges. CUET Computer Science is one of the core subjects for Science stream students. Candidates opting for computer science as a domain subject must focus on CUET Computer Science important topics and chapter-wise weightage to device preparation strategy. NTA will announce the CUET exam date 2025 tentatively in last week of February 2025. The CUET 2025 will be scheduled tentatively in May/June 2025. Read this complete article by Shiksha to know CUET 2025 Computer Science important topics and chapter-wise weightage.

Explore colleges based on CUET

Varanasi
₹8.53 K - 35.46 K
In Top 10 %ile by Average Salary of B.Sc. Colleges
Delhi
₹23.4 K - 24 K
In Top 10 %ile by Average Salary of B.Sc. Colleges
Delhi
₹10.77 K - 1.47 L
In Top 10 %ile by Average Salary of B.Sc. Colleges
Delhi
₹88.41 K
In Top 10 %ile by Average Salary of B.Sc. Colleges

Want better recommendations?

There is a 90% more chance of getting best college recommendations by sharing preferences.
Delhi
₹540
In Top 10 %ile by Average Salary of B.Sc. Colleges
Delhi
₹52.29 K - 58.8 K
In Top 10 %ile by Average Salary of B.Sc. Colleges
Aligarh
NA
In Top 10 %ile by Average Salary of B.Sc. Colleges
Delhi
₹540
In Top 10 %ile by Average Salary of B.Sc. Colleges
Noida
₹2.1 L - 13.2 L
In Top 10 %ile by Average Salary of B.Sc. Colleges
Delhi
₹42.38 K - 50.45 K
In Top 10 %ile by Average Salary of B.Sc. Colleges
View allCollections

CUET Computer Science Exam Pattern 2025

Students preparing for CUET 2025 must be thorough with the CUET exam pattern. Refer table below to know the CUET Computer Science exam pattern.

Features

Details

Number of questions

50 questions

Number of questions to be attempted

All compulsory

Type of question

Multiple Choice Question (MCQ)

CUET Computer Science exam duration

60 minutes

CUET marking scheme

+5 for each correct answer

-1 for each incorrect answer

Also Read:

CUET Computer Science Syllabus 2025

Before preparing for exam, candidates must check the CUET Computer Science syllabus. Refer the table below to know the detailed syllabus:

Q:   From where can I download CUET sample papers?

A:

Common University Entrance Test (CUET) sample papers are released by the conducting body, National Testing Agency (NTA). To download the CUET sample papers and previous year question papers candidates can get the direct link on this website. To download the CUET question papers candidates must refer the steps mentioned below:

Step 1- Visit the link provided- CUET Question Paper

Step 2- Scroll down the page and look for the subject to download the question paper for

Step 3- Click on the tab download

Step 4- Create the login credentials for new registrations

Step 5- Link to download the CUET question paper will be sent on the registered email ID

Step 6- Click on the link provided and save the PDF.

Q:   How many questions are there in the language section of CUET UG?

A:

CUET UG Language section will consist of 50 questions. Candidates will be required to attempt 40 out of 50 question in CUET UG exam. The language section will assess candidate's reading comprehension based on different types of passages. This section will also include questions from grammar. To prepare for the CUET UG language section candidates must solve previous year question papers and mock tests to become familiar with the type of questions asked in the exam. Candidates will be given duration of 45 minutes to attend this section of CUET UG. 

Q:   What type of questions are asked in the CUET exam?

A:

The CUET questions are objective and carries multiple choices (MCQs). Each question will have four answer options. Candidates will have to choose the correct answer option and click on it with the help of mouse. Since CUET UG 2025 exam will be conducted in a CBT mode, test-takers will be able to mark only one answer option. In case it is the correct option, they will get full marks and in case of wrong answer, negative marking scheme will be applied. Hence, candidates must ensure the accuracy of the answer before selecting the answer. Before the final submission, they can change the answer option in case they realise that they have entered a wrong answer option earlier.

Section

Unit

Sub Unit

A

Exception and File Handling in Python

  • Exception Handling: syntax errors, exceptions, need of exception handling, user-defined exceptions, raising exceptions, handling exceptions, catching exceptions, Try - except - else clause, Try - finally clause, recovering and continuing with finally, built-in exception classes.
  • File Handling: text file and binary file, file types, open and close files, reading and writing text files, reading and writing binary files using pickle module, file access modes.

Database Concepts

  • Introduction to database concepts, difference between database and file system, relational data model: concept of domain, tuple, relation, keys - candidate key, primary key, alternate key, foreign Key
  • Relational algebra: selection, projection, union, set difference and cartesian product

Structured Query Language (SQL)

  • Advantages of using Structured Query Language, Data Definition Language, Data Query Language and Data Manipulation Language, Introduction to MySQL, Creating a database using MySQL, Data Types
  • Data Definition: CREATE TABLE, DROP TABLE, ALTER TABLE,
  • Data Query: SELECT, FROM, WHERE
  • Data Manipulation: INSERT, UPDATE, DELETE
  • Math functions: POWER (), ROUND (), MOD ().
  •  Text functions: UCASE ()/UPPER (), LCASE ()/LOWER (), MID ()/SUBSTRING ()/SUBSTR (), LENGTH (), LEFT (), RIGHT (), INSTR (), LTRIM (), RTRIM (), TRIM ().
  • Date Functions: NOW (), DATE (), MONTH (), MONTHNAME (), YEAR (), DAY (), DAYNAME ().
  • Aggregate Functions: MAX (), MIN (), AVG (), SUM (), COUNT (); using COUNT (*). Querying and manipulating data using Group by, Having, Order by.
  • Operations on Relations - Union, Intersection, Minus, Cartesian Product, JOIN

Computer Networks

  • Introduction to computer networks, Evolution of networking
  • Network types: LAN, WAN, MAN
  • Network devices: Modem, Ethernet Card, Repeater, Hub, Switch, Router, Gateway.
  • Network Topologies: Mesh, Ring, Bus, Star, and Tree topologies.
  • Basic concept of MAC and IP Address Difference between Internet and web

B1: Computer Science

Exception and File Handling in Python

  • Exception Handling: syntax errors, exceptions, need of exception handling, user-defined exceptions, raising exceptions, handling exceptions, catching exceptions, Try - except - else clause, Try - finally clause, recovering and continuing with finally, built-in exception classes.
  • File Handling: text file and binary file, file types, open and close files, reading and writing text files, reading and writing binary files using pickle module, file access modes.

Stack

Stack (List Implementation): Introduction to stack (LIFO Operations), operations on stack (PUSH and POP) and its implementation in python. Expressions in Prefix, Infix and postfix notations, evaluating arithmetic expressions using stack, conversion of Infix expression to postfix expression

Queue

  • Queue (List Implementation): Introduction to Queue (FIFO), Operations on Queue (INSERT and DELETE) and its implementation in Python.
  • Introduction to DQueue and its implementation in Python.

Searching

  • Searching: Sequential search, Binary search, Analysis of Sequential and Binary Search. Dry run to identify best, worst and average cases.
  • Implementation of searching techniques in Python

Sorting

  • Overview of sorting techniques, Bubble Sort, Selection Sort and Insertion Sort. Dry run to identify best, worst and average cases. Implementation of sorting techniques in Python.
  • Hashing: Hash Functions, Collision Resolution, Implementing the Map Abstract Data Type

Understanding Data

Data and its purpose, collection and organization; understanding data using statistical methods: mean, median, standard deviation, variance; data interpretation; visualization of data.

Database Concepts

Introduction to database concepts, difference between database and file system, relational data model: concept of domain, tuple, relation, keys - candidate key, primary key, alternate key, foreign key; Relational algebra: selection, projection, union, set difference and cartesian product;

Structured Query Language

  • Advantages of using Structured Query Language, Data Definition Language, Data Query Language and Data Manipulation Language, Introduction to MySQL, Creating a database using MySQL, Data Types
  • Data Definition: CREATE TABLE, DROP TABLE, ALTER TABLE,
  • Data Query: SELECT, FROM, WHERE
  • Data Manipulation: INSERT, UPDATE, DELETE
  • Math functions: POWER (), ROUND (), MOD ().
  • Text functions: UCASE ()/UPPER (), LCASE ()/LOWER (), MID ()/SUBSTRING ()/SUBSTR (), LENGTH (), LEFT (), RIGHT (), INSTR (), LTRIM (), RTRIM (), TRIM ().
  • Date Functions: NOW (), DATE (), MONTH (), MONTHNAME (), YEAR (), DAY (), DAYNAME ().
  • Aggregate Functions: MAX (), MIN (), AVG (), SUM (), COUNT (); using COUNT (*). Querying and manipulating data using Group by, Having, Order by.
  • Operations on Relations - Union, Intersection, Minus, Cartesian Product, JOIN

Computer Networks

  • Introduction to computer networks, Evolution of networking,
  • Network types: LAN, WAN, MAN
  • Network devices: Modem, Ethernet Card, Repeater, Hub, Switch, Router, Gateway.
  • Network Topologies: Mesh, Ring, Bus, Star, and Tree topologies
  • Basic concept of MAC and IP Address
  • Difference between Internet and web

B2: Informatics Practices

Database Query using SQL

  • Math functions: POWER (), ROUND (), MOD ().
  • Text functions: UCASE ()/UPPER (), LCASE ()/LOWER (), MID ()/SUBSTRING ()/SUBSTR (),LENGTH (), LEFT (), RIGHT (), INSTR (), LTRIM (), RTRIM (), TRIM ().
  • Date Functions: NOW (), DATE (), MONTH (), MONTHNAME (), YEAR (), DAY (), DAYNAME ().
  • Aggregate Functions: MAX (), MIN (), AVG (), SUM (), COUNT (); using COUNT (*).Querying and manipulating data using Group by, Having, Order by.
  • Operations on Relations - Union, Intersection, Minus, Cartesian Product, JOIN

Data Handling using Pandas – I

  • Introduction to Python libraries- Pandas, NumPy, Chapter 1: Database Query using SQL Chapter 2: Data Handling using Pandas – I Chapter 9: Computer Networks Page | 6 Matplotlib. Data structures in Pandas - Series and Data Frames.
  • Series: Creation of Series from – and array, dictionary, scalar value; mathematical operations; Head and Tail functions; Selection, Indexing, and Slicing.
  • Data Frames: creation - from the dictionary of Series, list of dictionaries, Text/CSV files; display; iteration; Operations on Rows and columns: add, select, delete, rename; Head and Tail functions; Indexing usingLabels, Boolean Indexing; Styling & Formatting data, Head and Tail functions; Joining, Merging and Concatenations.
  • Importing/Exporting Data between CSV files and DataFrames.

Data Handling using Pandas – II

  • Descriptive Statistics: max, min, count, sum, mean, median, mode, quartile, Standard deviation, variance.
  • DataFrame operations: Aggregation, group by, Sorting, Deleting and Renaming Index, Pivoting.
  • Handling missing values – dropping and filling.
  • Importing/Exporting Data between MySQL database and Pandas.

Plotting Data using Matplotlib

  • Purpose of plotting; drawing and saving the following types of plots using Matplotlib – line plot, bargraph, histogram, pie chart, frequency polygon, box plot, and scatter plot.
  • Customizing plots: color, style (dashed, dotted), width; adding label, title, and legend in plots.

Introduction to Computer Networks

  • Introduction to Networks, Types of networks: LAN, MAN, WAN.
  • Network Devices: modem, hub, switch, repeater, router, gateway
  • Network Topologies: Star, Bus, Tree, Mesh.
  • Website: Introduction, the difference between a website and webpage, static vs dynamic web page, webserver, and hosting of a website.
  • Introduction to Internet, URL, WWW, and its applications- Web, email, Chat, VoIP.
  • Web Browser: Introduction, commonly used browsers, browser settings, add-ons and plugins, cookies.

Societal Impacts

  • Digital footprint, Etiquettes for Net surfing and for communicating through social media, data protection, Intellectual Property Rights (IPR) and their violation, plagiarism licensing and copyrights, Free and Open Source Software (FOSS), Cybercrime and cyber laws, hacking, phishing, cyberbullying, Overview of Indian IT Act, preventing cybercrime.
  • Awareness about health concerns related to the usage of technology like effect on eyesight, physiological issues, and ergonomic aspects.
  • E-waste its a hazard and management

Data Communication

  • Concept of communication, Types of Data Communication, switching techniques
  • Introduction to mobile telecommunication technologies
  • Wireless Technologies – Bluetooth, WLAN, Infrared, Microwave
  • Communication Media: Wired Technologies – Twisted pair cable, Co-axial cable, Ethernet Cable, Optical Fibre;
  • Concept of Channel, Bandwidth (Hz, KHz, MHz) and Data Transfer rate (bps, Kbps, Mbps, Gbps, Tbps)
  • Network Protocol: Need for Protocol, Categorization and Examples of protocol, HTTP, FTP, IP, PPP; electronic mail protocol

Security Aspects

  • Network Security Concepts: Firewall, Cookies, Hackers and Crackers
  • Antivirus and their workings
  • Network security threats: Denial of service, Intrusion problems, Snooping, Eavesdropping
  • Threats and prevention: Viruses, Worms, Trojan horse, Spam, Cookies, Adware, Firewall, http vs https

Also Read:

CUET Computer Science Question Paper PDF

CUET Computer Science Chapter Wise Weightage

On the basis of the previous year's analysis, candidates can know the CUET Computer Science important topics and the expected number of questions for each topic.

Explore more Science exams with upcoming dates

CUEE 2025 Exam Date

30 Jan '25

SAT Registration Deadline for ...

21 Feb '25

ISI Admssion Test 2025 Applica...

4 Mar '25 - 8 Mar '25

NEST 2025 Application Begin

17 Feb '25 - 9 May '25

IISER Aptitude Test 2025 Regis...

1 Apr '25 - 13 May '25

CGC Josh 2025 Registration Stage 1

14 Nov '24 - 31 May '25

KALSEE 2025 Application Form E...

19 Jul '25

UPCATET 2024 Online Counsellin...

1 Feb '25 - 3 Feb '25

RUASAT 2025 Application Process

20 Dec '24 - 7 Apr '25

PU CET (UG) 2025 Application Form

23 Mar '25 - 25 Apr '25

Computer Science Chapters

Number of Questions (Expected)

Networking

10-12

SQL

10-12

Bubble sorting

4-5

Assertion reasoning

2-3

Code completion

2-3

Also Read:

CUET Chapter Wise Weightage for Science/Commerce/Humanities

CUET Domain Subjects: Syllabus and Question Paper

Science students preparing for CUET can now download the CUET domain subject wise question paper and detailed syllabus for other Science subjects.

Subjects

CUET Syllabus

CUET Question Paper

English

CUET English Syllabus

CUET English Question Paper

Biology

CUET Biology Syllabus

CUET Biology Question Paper

Chemistry

CUET Chemistry Syllabus

CUET Chemistry Question Paper

Computer Science/ Informatics Practices

CUET Computer Science Syllabus

CUET Computer Science Question Paper

Economics/ Business Economics

CUET Economics Syllabus

CUET Economics Question Paper

Engineering Graphics

CUET Engineering Graphics Syllabus

CUET Engineering Graphics Question Paper

Environmental Science

CUET Environmental Science Syllabus

CUET Environmental Science Question Paper

Mathematics

CUET Mathematics Syllabus

CUET Mathematics Question Paper

Physics

CUET Physics Syllabus

CUET Physics Question Paper

Agriculture

CUET Agriculture Syllabus

CUET Agriculture Question Paper

General Test

CUET General Test Syllabus

CUET General Test Question Paper

CUET 2024 Computer Science Preparation Tips

While preparing for CUET 2025 Computer Science subject, students must observe the following important points:

  • Be thorough with the CUET 2025 syllabus and exam pattern. Students must focus on the most frequently asked questions in Computer Science and prepare accordingly.
  • Candidates must strengthen their fundamentals with the help of NCERT books and other preparation books.
  • Candidates must take number of CUET mock tests and solve CUET previous year question paper to become familiar with the CUET exam pattern and syllabus.
  • Choose best resources/study materials for CUET preparation.

Read More:

Stream-wise Best UG courses options through CUET: Engineering, Science, Commerce, Arts

Q:   Is it compulsory to attempt all the sections of the CUET question paper?

A:

CUET UG section I and section II, consisting of the language and domain-wise subjects are compulsory to attempt. On the other hand, the third section consisting of General Knowledge and aptitude questions is not compulsory to attempt unless it is the requirement of the programme the candidate has applied for. Candidates will have to choose the subjects while filling the CUET UG application form. In case candidates do not opt for the General Test, then they will be evaluated only based on their performance in Section 1 and Section 2 as per the requirement of the course and university that candidate has applied for. NTA will use the normalisation method to score candidates and universities will prepare the merit lists accordingly. 

Q:   Why should I practice with CUET question papers from previous years?

A:

Practicing with CUET UG (Common University Entrance Test) question papers from previous years offers several valuable benefits exam preparation:

  1. Familiarity with Exam Pattern: CUET question papers from past years provide insight into the format, structure, and types of questions that commonly appear in the exam.

  2. Understanding Question Types: By solving previous year's CUET question papers, candidates can identify recurring question types and patterns.

  3. Assessment of Preparedness: Practicing with CUET question papers helps candidates assess their strengths and weaknesses.

  4. Time Management: CUET is a time-bound exam with strict time limits. Solving CUET question papers within the allotted time helps candidates develop effective time management strategies.

  5. Improvement in Speed and Accuracy: Regularly solving CUET question papers enhances problem-solving skills, speed, and accuracy. 

  6. Reduced Stress: The more candidates practice, the more confident and relaxed one feels on the actual exam day, reducing test anxiety and improving your overall performance.

Q:   What type of questions are asked in the CUET exam?

A:

CUET questions are objective and multiple-choice questions (MCQs) type. The number of questions will vary for each subject or section and paper. There will not be any descriptive question type for CUET UG 2025. Candidates can check the below table to know about CUET Exam Structure:

Section

Number of Questions

Duration

Question Types

Section IA

50 questions

60 Minutes

Language to be tested through Reading Comprehension based on different types of passages–Factual, Literary and Narrative, (Literary Aptitude and Vocabulary)

Section II

50 questions

60 Minutes

  • Input text can be used for MCQ Based Questions

  • MCQs based on NCERT Class 12 syllabus only

Section III

50 questions

60 minutes

  • Input text can be used for MCQ Based Questions

  • General Knowledge, Current Affairs, General Mental Ability, Numerical Ability, Quantitative Reasoning (Simple application of basic mathematical concepts arithmetic/algebra geometry/mensuration/s tat taught till Grade 8), Logical and Analytical Reasoning

Q:   When are CUET previous year question papers released?

A:

CUET previous year question papers have been released for CUET 2024. National Testing Agency releases the CUET previous year question papers for all subjects and languages. Candidates preparing for CUET must download the previous year question papers to become familiar with the CUET exam pattern and the difficulty level of the question paper. NTA releases the CUET question papers for Languages, Domain subjects and General test seperately. No pre registrations are required to download the CUET previous year question papers. 

CUET 2025 will be scheduled tentatively in May/June in CBT mode. CUET previous year question papers for 2024 is available for downlaod. Candidates can download the CUET 2024 question papers here

About the Author
author-image
Shruti Garg
Assistant Manager- Editorial

Shruti is a graduate in Education and Literature. She is a passionate writer. As her name suggests she is a good listener, a binge-watcher, and a great foodie. She loves playing badminton and doing meditation in her... Read Full Bio

Download Important Dates for Science Exams

News & Updates

Latest NewsPopular News

Explore Other Exams

17 Feb '25 -

9 May '25

NEST 2025 Application Begin

10 May '25 -

14 May '25

NEST 2025 Application Form Cor...

Apr '25

IISER Aptitude Test 2025 Regis...

May '25

IISER Aptitude Test 2025 Corre...

Jun '25

ITM NEST 2025 Application Form...

Jun '25

ITM NEST 2025 Application Form...

12 Jun '24

MGU CAT 2024 result

17 May '24 -

18 May '24

MGU CAT 2024 Exam

Mar '25

PU CET (UG) 2025 Application F...

Mar '25

PU CET (UG) 2025 Registration ...

Feb '25

TIFR GS 2025 Result For Writte...

Apr '25

TIFR GS 2025 Final Result

The list of exams are recommended based on what other exams do the students in your area show interest in
qna

Student Forum

chatAnything you would want to ask experts?
Write here...

Answered 11 hours ago

Yes, you can choose Home Science as a domain subject for your B.Sc. (Pass) programme at Delhi University (DU) instead of Physics. According to the eligibility criteria for the B.Sc. (Pass) Home Science program, candidates must appear in the Common University Entrance Test (CUET) and select their dom

...Read more

A

ABHINAV SRIVASTAVA

Contributor-Level 9

Answered 17 hours ago

Sage university

y

ykwim

Beginner-Level 1

Answered 17 hours ago

Cuet will be conducted in 2025-:

• may 15 to 31 

This is official date cuet exam will be conducted and answer key release date in 7 july as well as and result declaration date is 28th July and counseling start last week of July 

M

Mohd saik

Beginner-Level 2

Answered 17 hours ago

Hemvati Nandan Bahuguna Garhwal University primarily offers admission based on CUET scores. However, after the HNBGU CUET merit list is exhausted, the vacant seats may be filled from the university level counselling merit list based on JEE scores. Candidates applying for the vacant seats must meet t

...Read more

S

Saumya Shukla

Contributor-Level 6

Answered 19 hours ago

For the Bachelor of Social Work (BSW) at TISS, students need to select English Language as a compulsory subject from Section I and a General Test from Section III. This combination applies to both the Tujapur and Mumbai campuses. The selection of these subjects aligns with the core skills required f

...Read more

Y

Yatendra Choudhury

Beginner-Level 3

Answered 21 hours ago

Yes, candidates can secure admisson to the Bachelor of Commerce (BCon) programme without CUET. As per the official website of Vinoba Bhave University, admission to the BCom course is subject to a valid score in the last qualifying exam. Students are offer admission on the basis of Class 12 exam. Fur

...Read more

I

Ishita Sharma

Contributor-Level 6

Answered Yesterday

When applying to the Central University of Karnataka (CUK) through CUET UG 2025, candidates need to select the right subjects to meet the eligibility criteria for their desired programs. Each undergraduate course requires specific domain subjects or tests, which ensures the candidate's preparedness

...Read more

N

Nupur Jain

Beginner-Level 3

Answered Yesterday

Yes, candidates who do not adhere to the subject mapping and eligibility criteria may face disqualification during the admission process. This can result in the rejection of their application, even if they qualify in the entrance exam. It is crucial to carefully follow the guidelines provided by the

...Read more

S

Shiksha Vimal

Beginner-Level 3

Answered Yesterday

For B.Com (Honours with Research) programme at Mahatma Gandhi Central University, candidates should select Accountancy or Mathematics under Section II. This subject selection aligns with the core requirements of the B.Com programme, preparing students for studies focused on commerce and financial pr

...Read more

Y

Yatendra Singh

Beginner-Level 3