CBSE Class 11 Computer Conditional And Iterative Statements Worksheet

Read and download the CBSE Class 11 Computer Conditional And Iterative Statements Worksheet in PDF format. We have provided exhaustive and printable Class 11 Computer Science worksheets for Conditional And Iterative Statements, designed by expert teachers. These resources align with the 2025-26 syllabus and examination patterns issued by NCERT, CBSE, and KVS, helping students master all important chapter topics.

Chapter-wise Worksheet for Class 11 Computer Science Conditional And Iterative Statements

Students of Class 11 should use this Computer Science practice paper to check their understanding of Conditional And Iterative Statements as it includes essential problems and detailed solutions. Regular self-testing with these will help you achieve higher marks in your school tests and final examinations.

Class 11 Computer Science Conditional And Iterative Statements Worksheet with Answers

Short Answer Type Questions

Question: What is the syntax of if-elif statement in Python?
Answer: The syntax of if-elif statement in python is as follows:
 If condition1:
                  #code-block of statements when condition1 is true
elif condion2:
                 #code-block of statements when condition2 is true
elif condition3:
               #code-block of statements when condition3 is true
.
.
.
else:
#code-block of statements when all above conditions are false.

Question: What are loops in Python? How many types of loop are there in Python?
Answer: 
Loops are iteration constructs in Python. Iteration means repetition of a set of statements
depending upon a condition test. Loops has three basic elements within it to repeat the statements –

-Initialization (Start)
-Check Condition (Stop)
-Updation (Step)
Python provide two types of loop

(i) Conditional Loop while( (Condition based loop)

(ii) Counting loop for (loop for a given number of times).

Question: Rewrite the following code fragment using while loop.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-1

Question: What a range() function does? Give an example.
Answer: The range() function returns a sequence of numbers, starting from 0 by default, and increments
by 1 (by default), and ends at a specified number. its syntax is range(start, stop, step) e.g.
x = range(3, 6)                     x = range(1, 10,2)
for n in x:                                   for n in x:
print(n)                                    print(n)
#This code will print 3 4 5 #         This code will print 1 3 5 7 9

Question: What are jump statements in Python? Name jump statements with example.
Answer: 
Python offers two jump statements to be used with in loops to jump out of loop-iterations.
These are break and continue statements. 

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-2

Question: Rewrite the following code fragment using for loop. 5
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-3

 

Skill Based Questions

Question: WAP to compute the result when two numbers and one operator is given by user.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-4

Question: WAP to print first n odd numbers in descending order.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-5

Question: WAP that searches for prime numbers from 15 through 25.
 Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-6

Question: WAP to test if given number is prime or not.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-7

Question: WAP to input a digit and print it in words.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-8

Question: WAP to print the following series –
(i) 1 4 7 10 . . . . . . .40
(ii) 1 -4 7 -10 . . . . . . . . -40
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-9
Question: WAP to find the average of the list of the numbers entered through keyboard.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-10

Question: WAP to check whether square root of a given number is prime or not.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-11

Question: WAP to calculate the roots of a given quadratic equation.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-12

Question: WAP to find the largest number from the list of the numbers entered through keyboard.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-13

Question: WAP to find the sum of first n even numbers.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-14

Question: WAP to print the following pattern
(a) * (b) * (c) A (d) 0
* * * * A B 2 2
* * * * * * A B C 4 4 4
* * * * * * * * A B C D 8 8 8 8
* * * * * * * * * * A B C D E
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-15

Question: WAP to find the 2nd largest number from the list of the numbers entered through
keyboard. (This program is from List Chapter) 
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-16

Question: WAP to find the sum of n natural numbers.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-17

Question: WAP to find the sum of first n odd numbers.
Answer:

CBSE-Class-11-Computer-Conditional-And-Iterative-Statements-Worksheet-18

CBSE Computer Science Class 11 Conditional And Iterative Statements Worksheet

Students can use the practice questions and answers provided above for Conditional And Iterative Statements to prepare for their upcoming school tests. This resource is designed by expert teachers as per the latest 2026 syllabus released by CBSE for Class 11. We suggest that Class 11 students solve these questions daily for a strong foundation in Computer Science.

Conditional And Iterative Statements Solutions & NCERT Alignment

Our expert teachers have referred to the latest NCERT book for Class 11 Computer Science to create these exercises. After solving the questions you should compare your answers with our detailed solutions as they have been designed by expert teachers. You will understand the correct way to write answers for the CBSE exams. You can also see above MCQ questions for Computer Science to cover every important topic in the chapter.

Class 11 Exam Preparation Strategy

Regular practice of this Class 11 Computer Science study material helps you to be familiar with the most regularly asked exam topics. If you find any topic in Conditional And Iterative Statements difficult then you can refer to our NCERT solutions for Class 11 Computer Science. All revision sheets and printable assignments on studiestoday.com are free and updated to help students get better scores in their school examinations.

Where can I download the 2025-26 CBSE printable worksheets for Class 11 Computer Science Chapter Conditional And Iterative Statements?

You can download the latest chapter-wise printable worksheets for Class 11 Computer Science Chapter Conditional And Iterative Statements for free from StudiesToday.com. These have been made as per the latest CBSE curriculum for this academic year.

Are these Chapter Conditional And Iterative Statements Computer Science worksheets based on the new competency-based education (CBE) model?

Yes, Class 11 Computer Science worksheets for Chapter Conditional And Iterative Statements focus on activity-based learning and also competency-style questions. This helps students to apply theoretical knowledge to practical scenarios.

Do the Class 11 Computer Science Chapter Conditional And Iterative Statements worksheets have answers?

Yes, we have provided solved worksheets for Class 11 Computer Science Chapter Conditional And Iterative Statements to help students verify their answers instantly.

Can I print these Chapter Conditional And Iterative Statements Computer Science test sheets?

Yes, our Class 11 Computer Science test sheets are mobile-friendly PDFs and can be printed by teachers for classroom.

What is the benefit of solving chapter-wise worksheets for Computer Science Class 11 Chapter Conditional And Iterative Statements?

For Chapter Conditional And Iterative Statements, regular practice with our worksheets will improve question-handling speed and help students understand all technical terms and diagrams.