Courses
Courses for Kids
Free study material
Offline Centres
More
Store Icon
Store

Computer Science Chapter 1 Computer System – NCERT Solutions for Class 11

ffImage
banner

Exercise-wise NCERT Solutions & Key Notes for Computer Science Chapter 1

Ace your basics with the NCERT Solutions for Class 11 Computer Science Chapter 1 – Computer System, designed for the CBSE 2025–26 syllabus. Each answer is crafted to help you understand and score more, making complex concepts simple and exam-ready.


Find stepwise answers, exercise-wise solutions, and quick tips that mirror the latest CBSE marking scheme. Score full marks by using concise definitions, accurate diagrams, and structured responses for Computer System NCERT Solutions Class 11.


Download a free PDF of these expert-reviewed solutions for hassle-free revision online or offline. Crack your exams with confidence using reliable Computer Science Chapter 1 solutions, supported by revision notes and scoring shortcuts.


Exercise-wise NCERT Solutions & Key Notes for Computer Science Chapter 1

Exercise

  1. What will be the output of the following statements?

    i.
    list1 = [12,32,65,26,80,10]
    list1.sort()
    print(list1)
        

    Answer: [10, 12, 26, 32, 65, 80]


    ii.
    list1 = [12,32,65,26,80,10]
    sorted(list1)
    print(list1)
        

    Answer: [12, 32, 65, 26, 80, 10]


    iii.
    list1 = [1,2,3,4,5,6,7,8,9,10]
    list1[::-2]
    list1[:3] + list1[3:]
        

    Answer: list1[::-2] results in [10, 8, 6, 4, 2], and list1[:3] + list1[3:] results in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]


    iv.
    list1 = [1,2,3,4,5]
    list1[len(list1)-1]
        

    Answer: 5


  2. Consider the following list myList. What will be the elements of myList after the following two operations:
    myList = [10,20,30,40]
    i. myList.append([50,60])
    ii. myList.extend([80,90])
        

    Answer: After the first operation, myList becomes [10, 20, 30, 40, [50, 60]]. After the second operation, myList becomes [10, 20, 30, 40, [50, 60], 80, 90].


  3. What will be the output of the following code segment:
    myList = [1,2,3,4,5,6,7,8,9,10]
    for i in range(0,len(myList)):
        if i%2 == 0:
            print(myList[i])
        

    Answer: The output will be:
    1
    3
    5
    7
    9


  4. What will be the output of the following code segment:
    a. myList = [1,2,3,4,5,6,7,8,9,10]
    del myList[3:]
    print(myList)
    b. myList = [1,2,3,4,5,6,7,8,9,10]
    del myList[:5]
    print(myList)
    c. myList = [1,2,3,4,5,6,7,8,9,10]
    del myList[::2]
    print(myList)
        

    Answer:
    a. [1, 2, 3]
    b. [6, 7, 8, 9, 10]
    c. [2, 4, 6, 8, 10]


  5. Differentiate between append() and extend() functions of list.

    Answer: append() adds its argument as a single element to the end of the list (can be a value or even another list as a single item), while extend() adds elements from the iterable (like another list) one by one to the end of the list.


  6. Consider a list:
    list1 = [6,7,8,9]
        
    What is the difference between the following operations on list1:
    a. list1 * 2
    b. list1 *= 2
    c. list1 = list1 * 2

    Answer:

    • a. list1 * 2 produces [6, 7, 8, 9, 6, 7, 8, 9], but does not change list1.
    • b. list1 *= 2 modifies list1 in-place and makes it [6, 7, 8, 9, 6, 7, 8, 9].
    • c. list1 = list1 * 2 creates a new list [6, 7, 8, 9, 6, 7, 8, 9] and assigns it to list1.


  7. The record of a student (Name, Roll No., Marks in five subjects and percentage of marks) is stored in the following list:
    stRecord = ['Raman','A-36',[56,98,99,72,69],78.8]
        
    Write Python statements to retrieve the following information from the list stRecord.
    • Percentage of the student
    • Marks in the fifth subject
    • Maximum marks of the student
    • Roll no. of the student
    • Change the name of the student from ‘Raman’ to ‘Raghav’

    Answer:

    • Percentage: stRecord[3]
    • Marks in the fifth subject: stRecord[2][4]
    • Maximum marks: max(stRecord[2])
    • Roll no.: stRecord[1]
    • Change name: stRecord[0] = 'Raghav'


Python Lists: Key Concepts for Class 11 NCERT 2025-26

Mastering Python lists is crucial for Class 11 Computer Science. This chapter teaches list creation, manipulation, and traversal, which form the basis of working with data sequences in Python.


Practicing NCERT-based exercises on list operations, slicing, and functions will help you confidently tackle questions in exams. Review example programs and code snippets for practical clarity.


Revise important functions like append(), extend(), and sort() for quick scoring. Consistent revision of list concepts with NCERT solutions ensures a strong foundation for your 2025-26 Computer Science exams.


FAQs on Computer Science Chapter 1 Computer System – NCERT Solutions for Class 11

1. What are NCERT Solutions for Class 11 Computer Science Chapter 1 Computer System?

NCERT Solutions for Class 11 Computer Science Chapter 1 Computer System provide detailed, stepwise answers for all textbook questions, following the latest CBSE 2025–26 syllabus.

Key features:

  • Covers both intext and back exercises
  • Includes definitions, diagrams, and important concepts
  • Helps students score full marks in exams
  • Available for free PDF download

2. How can I write stepwise NCERT answers to score full marks in Computer Science Chapter 1?

To score full marks, structure NCERT answers stepwise and include all key points:

  • Start with a brief introduction using keywords from the question
  • Present each step of the solution in a logical order
  • Include important definitions and diagrams where required
  • Use bullet points or numbering for clarity
  • Conclude with a summary sentence if needed

3. Are diagrams or definitions mandatory in NCERT Computer Science Chapter 1 answers?

Including diagrams and definitions is highly recommended in Computer Science Chapter 1 answers:

  • Definitions directly address marking scheme keywords
  • Diagrams (like block diagrams of computer systems) fetch easy marks
  • Neat, labelled diagrams improve presentation and aid understanding

4. Which topics are important for Class 11 Computer Science Chapter 1 Computer System exams?

The most important topics in NCERT Computer Science Chapter 1 Computer System include:

  • Components of a computer system (hardware, software, data, users)
  • Types of computer memory (RAM, ROM, secondary memory)
  • Input, output, and storage devices
  • Block diagram of a computer
  • Differences between system and application software

5. Where can I download the NCERT Solutions Computer Science Chapter 1 Computer System PDF for free?

You can download the free PDF of NCERT Solutions for Class 11 Computer Science Chapter 1 Computer System from trusted educational websites that align with the CBSE syllabus.

Steps:

  • Locate the PDF download link on the solutions page
  • Click the download button for instant access
  • Use the PDF for offline study and quick revision

6. How do I structure long answers in Class 11 Computer Science to match CBSE marking scheme?

Long answers should be well-organized and adhere to CBSE marking guidelines:

  • Start with an introduction mentioning the main topic
  • Divide your answer into sub-points or headings
  • Include definitions, examples, and diagrams
  • Underline important terms or keywords
  • Conclude neatly, summarizing the main points

7. Are NCERT Solutions enough for Class 11 Computer Science exams?

NCERT Solutions are sufficient for most CBSE exam questions in Class 11 Computer Science, especially when combined with textbook study.

  • Solutions cover all textbook exercises and key definitions
  • Practicing stepwise answers ensures exam readiness
  • For higher scores, also review exemplar and important extra questions

8. How can I revise Computer Science Chapter 1 Computer System quickly before exams?

For fast revision of Chapter 1 Computer System:

  • Review flash notes and key definitions
  • Go through important diagrams and block structures
  • Solve previous years’ and NCERT back exercises
  • Attempt short quizzes or MCQs on the chapter

9. How are step marks awarded in Class 11 Computer Science Chapter 1 answers?

Marks are given for each correct step, definition, or diagram included in the answer:

  • Mentioning key terms and points earns partial marks
  • Providing neat diagrams or correctly labelled maps increases your score
  • Giving examples or comparing concepts may fetch extra marks

10. What are common mistakes to avoid while answering NCERT Computer Science Chapter 1 questions?

To avoid losing marks in Computer Science Chapter 1:

  • Do not skip definitions or important keywords
  • Avoid untidy or unlabelled diagrams
  • Write in points, not lengthy paragraphs
  • Check answers against the marking scheme