Preparing for CBSE Class 11 Annual Assessment?All chapters — notes, important questions & free quizzesExplore →

Flow of Control – NCERT Class 11 Computer Science Chapter 6 – Conditional and Looping Constructs in Python

Explains how Python manages the order of execution of statements using control structures. Covers conditional statements (if, if-else, if-elif), indentation rules, and looping constructs (for and while). Introduces range() function, nested loops, and the use of break and continue statements with various examples. Highlights flowcharts, iteration logic, and pattern generation for better understanding of program control flow.

Updated: 9 months ago

Categories: NCERT, Class XI, Computer Science, Python, Flow of Control, Conditional Statements, Looping, Chapter 6
Tags: Flow of Control, Conditional Statements, If Else, Elif, Loops, For Loop, While Loop, Range Function, Break Statement, Continue Statement, Nested Loops, Indentation, Decision Making, Iteration, NCERT Class 11, Computer Science, Chapter 6
Post Thumbnail
Flow of Control: NCERT Class 11 Chapter 6 - Enhanced Study Guide, Precise Notes, Diagrams & Quiz 2025

Flow of Control

Chapter 6: Enhanced NCERT Class 11 Guide | Expanded Precise Notes from Full PDF, Detailed Explanations, Diagrams, Examples & Quiz 2025

Enhanced Full Chapter Summary & Precise Notes from NCERT PDF (22 Pages)

Overview & Key Concepts

Exact Definition: "The order of execution of the statements in a program is known as flow of control. The flow of control can be implemented using control structures. Python supports two types of control structures—selection and repetition."

  • Introduction: Sequence from Ch 5; Bus analogy (Fig 6.1); Quote: G. van Rossum on indentation.
  • Chapter Structure: Selection (if/else/elif), Indentation, Repetition (for/while), Break/Continue, Nested Loops.
  • 2025 Relevance: Control in AI loops (e.g., TensorFlow training); Indentation in VS Code; Nested for data processing.

6.1 Introduction to Flow of Control

Precise: Sequential execution; Control structures: Selection/Repetition. Expanded: Program 6-1 (difference); Flow like bus route.

Precise Fig 6.1: Bus to School (SVG)

Sequential Flow Bus follows one path Milestone after milestone To school (end) End

Program 6-1: Difference of Two Numbers

#Program 6-1 #Program to print the difference of two input numbers num1 = int(input("Enter first number: ")) num2 = int(input("Enter second number: ")) diff = num1 - num2 print("The difference of",num1,"and",num2,"is",diff)

Output:
Enter first number 5
Enter second number 7
The difference of 5 and 7 is -2

6.2 Selection

Precise: Decision making (if/else/elif); Positive difference (Prog 6-2); Flowchart Fig 6.2. Expanded: Nested if in calculator (Prog 6-3).

Precise Fig 6.2: Decision Flowchart (SVG)

Start Input num1, num2 num1 > num2? diff = num1 - num2 diff = num2 - num1 Print diff

Program 6-2: Positive Difference

#Program 6-2 #Program to print the positive difference of two numbers num1 = int(input("Enter first number: ")) num2 = int(input("Enter second number: ")) if num1 > num2: diff = num1 - num2 else: diff = num2 - num1 print("The difference of",num1,"and",num2,"is",diff)

Output:
Enter first number: 5
Enter second number: 6
The difference of 5 and 6 is 1

Program 6-3: Simple Calculator

#Program to create a four function calculator result = 0 val1 = float(input("Enter value 1: ")) val2 = float(input("Enter value 2: ")) op = input("Enter any one of the operator (+,-,*,/): ") if op == "+": result = val1 + val2 elif op == "-": if val1 > val2: result = val1 - val2 else: result = val2 - val1 elif op == "*": result = val1 * val2 elif op == "/": if val2 == 0: print("Error! Division by zero is not allowed. Program terminated") else: result = val1/val2 else: print("Wrong input,program terminated") print("The result is ",result)

Output:
Enter value 1: 84
Enter value 2: 4
Enter any one of the operator (+,-,*,/): /
The result is 21.0

Example 6.1: if Syntax

age = int(input("Enter your age ")) if age >= 18: print("Eligible to vote")

Example 6.2: if-elif-else (Positive/Negative/Zero)

number = int(input("Enter a number: ")) if number > 0: print("Number is positive") elif number < 0: print("Number is negative") else: print("Number is zero")

Example 6.3: Traffic Signal

signal = input("Enter the colour: ") if signal == "red" or signal == "RED": print("STOP") elif signal == "orange" or signal == "ORANGE": print("Be Slow") elif signal == "green" or signal == "GREEN": print("Go!")

6.3 Indentation

Precise: Whitespace for blocks; Strict check; Single tab common. Expanded: Prog 6-4 shows blocks.

Program 6-4: Larger of Two Numbers

#Program 6-4 #Program to find larger of the two numbers num1 = 5 num2 = 6 if num1 > num2: #Block1 print("first number is larger") print("Bye") else: #Block2 print("second number is larger") print("Bye Bye")

Output:
second number is larger
Bye Bye

6.4 Repetition

Precise: Loops for iteration; Butterfly cycle (Fig 6.3); For/While. Expanded: Prog 6-5 (sequence); Range() function.

Precise Fig 6.3: Iterative Process (SVG)

Eggs Caterpillar Pupa Butterfly

Program 6-5: First Five Natural Numbers

#Program 6-5 #Print first five natural numbers print(1) print(2) print(3) print(4) print(5)

Output:
1
2
3
4
5

Program 6-6: Print 'PYTHON' Characters

#Program 6-6 #Print the characters in word PYTHON using for loop for letter in 'PYTHON': print(letter)

Output:
P
Y
T
H
O
N

Program 6-7: Print Sequence [10,20,30,40,50]

#Program 6-7 #Print the given sequence of numbers using for loop count = [10,20,30,40,50] for num in count: print(num)

Output:
10
20
30
40
50

Program 6-8: Even Numbers

#Program 6-8 #Print even numbers in the given sequence numbers = [1,2,3,4,5,6,7,8,9,10] for num in numbers: if (num % 2) == 0: print(num,'is an even Number')

Output:
2 is an even Number
4 is an even Number
6 is an even Number
8 is an even Number
10 is an even Number

Example 6.4: range() Function

>>> list(range(10)) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] >>> list(range(2, 10)) [2, 3, 4, 5, 6, 7, 8, 9] >>> list(range(0, 30, 5)) [0, 5, 10, 15, 20, 25] >>> list (range (0, -9, -1)) [0, -1, -2, -3, -4, -5, -6, -7, -8]

Program 6-9: Multiples of 10

#Program 6-9 #Print multiples of 10 for numbers in a given range for num in range(5): if num > 0: print(num * 10)

Output:
10
20
30
40

Precise Fig 6.4: For Loop Flowchart (SVG)

Start Initialization Test Expression? Body of Loop Increment Exit Loop

Program 6-10: First 5 Natural (While)

#Program 6-10 #Print first 5 natural numbers using while loop count = 1 while count <= 5: print(count) count += 1

Output:
1
2
3
4
5

Program 6-11: Factors of Number

#Program 6-11 #Find the factors of a number using while loop num = int(input("Enter a number to find its factor: ")) print (1, end=' ') #1 is a factor of every number factor = 2 while factor <= num/2 : if num % factor == 0: print(factor, end=' ') factor += 1 print (num, end=' ') #every number is a factor of itself

Output:
Enter a number to find its factors : 6
1 2 3 6

Precise Fig 6.5: While Loop Flowchart (SVG)

Start Initialization Test Condition? Body of While Update Statements after Loop

6.5 Break and Continue

Precise: Break: Exit loop; Continue: Skip iteration. Expanded: Prog 6-12 (break at 8); Prog 6-13 (sum positives); Prog 6-14 (prime check).

Precise Fig 6.6: Break Flowchart (SVG)

Start Loop Loop Body Break Condition? Break Next Iteration After Loop

Program 6-12: Break Demo

#Program 6-12 #Program to demonstrate the use of break statement in loop num = 0 for num in range(10): num = num + 1 if num == 8: break print('Num has value ' + str(num)) print('Encountered break!! Out of loop')

Output:
Num has value 1
Num has value 2
Num has value 3
Num has value 4
Num has value 5
Num has value 6
Num has value 7
Encountered break!! Out of loop

Program 6-13: Sum Positives

#Program 6-13 #Find the sum of all the positive numbers entered by the user #till the user enters a negative number. entry = 0 sum1 = 0 print("Enter numbers to find their sum, negative number ends the loop:") while True: entry = int(input()) if (entry < 0): break sum1 += entry print("Sum =", sum1)

Output:
Enter numbers to find their sum, negative number ends the loop:
3
4
5
-1
Sum = 12

Program 6-14: Prime Check

#Program 6-14 #Write a Python program to check if a given number is prime or not. num = int(input("Enter the number to be checked: ")) flag = 0 if num > 1 : for i in range(2, int(num / 2)): if (num % i == 0): flag = 1 break if flag == 1: print(num , "is not a prime number") else: print(num , "is a prime number") else : print("Entered number is <= 1, execute again!")

Output 1:
Enter the number to be checked: 20
20 is not a prime number
Output 2:
Enter the number to check: 19
19 is a prime number

Precise Fig 6.7: Continue Flowchart (SVG)

Start Loop Loop Body Continue Condition? Continue (Skip Rest) Next Iteration After Loop

Program 6-15: Continue Demo

#Program 6-15 #Prints values from 0 to 6 except 3 num = 0 for num in range(6): num = num + 1 if num == 3: continue print('Num has value ' + str(num)) print('End of loop')

Output:
Num has value 1
Num has value 2
Num has value 4
Num has value 5
Num has value 6
End of loop

6.6 Nested Loops

Precise: Loop inside loop; No limit on levels. Expanded: Prog 6-16 (nested for); Prog 6-17 (pattern); Prog 6-18 (primes 2-50); Prog 6-19 (factorial).

Program 6-16: Nested For

#Program 6-16 #Demonstrate working of nested for loops for var1 in range(3): print( "Iteration " + str(var1 + 1) + " of outer loop") for var2 in range(2): #nested loop print(var2 + 1) print("Out of inner loop") print("Out of outer loop")

Output:
Iteration 1 of outer loop
1
2
Out of inner loop
Iteration 2 of outer loop
1
2
Out of inner loop
Iteration 3 of outer loop
1
2
Out of inner loop
Out of outer loop

Program 6-17: Pattern

#Program 6-17 #Program to print the pattern for a number input by the user num = int(input("Enter a number to generate its pattern = ")) for i in range(1,num + 1): for j in range(1,i + 1): print(j, end = " ") print()

Output:
Enter a number to generate its pattern = 5
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5

Program 6-18: Primes 2-50

#Program 6-18 #Use of nested loops to find the prime numbers between 2 to 50 num = 2 for i in range(2, 50): j= 2 while ( j <= (i/2)): if (i % j == 0): break j += 1 if ( j > i/j) : print ( i, "is a prime number") print ("Bye Bye!!")

Output:
2 is a prime number
3 is a prime number
5 is a prime number
7 is a prime number
11 is a prime number
13 is a prime number
17 is a prime number
19 is a prime number
23 is a prime number
29 is a prime number
31 is a prime number
37 is a prime number
41 is a prime number
43 is a prime number
47 is a prime number
Bye Bye!!

Program 6-19: Factorial

#Program 6-19 #The following program uses a for loop nested inside an if..else #block to calculate the factorial of a given number num = int(input("Enter a number: ")) fact = 1 # check if the number is negative, positive or zero if num < 0: print("Sorry, factorial does not exist for negative numbers") elif num == 0: print("The factorial of 0 is 1") else: for i in range(1, num + 1): fact = fact * i print("factorial of ", num, " is ", fact)

Output:
Enter a number: 5
Factorial of 5 is 120

Enhanced Features (2025)

Full PDF integration, expanded programs (6-1 to 6-19), SVGs (Figs 6.1-6.7), detailed tables/examples, 30 Q&A updated, 10-Q quiz. Focus: Hands-on control flow.

Exam Tips

Write programs (positive diff/prime/pattern); Explain syntax/flowcharts; Differentiate for/while; Use break/continue in code; Nested loop examples.

This chapter is part of the CBSE Class 11 Annual Assessment Board ExaminationExplore every chapter — NCERT notes, important questions & MCQ quizzes
Practice Quiz

Test your CBSE Class 11 Annual Assessment prep

Dual AI-verified questions Real exam pattern 2 quizzes free, then 10 credits per quiz

#1

Constitution: Why and How?

Political Science 10 Qs · ~10 min
6.8/10avg score
9/10best
#2

What is Psychology?

Psychology 10 Qs · ~10 min
8.8/10avg score
10/10best
#3

India – Location

Geography 10 Qs · ~10 min
6/10avg score
10/10best
#4

Nomadic Empires

History 10 Qs · ~10 min
8/10avg score
9/10best
#5

Animal Kingdom

Biology 10 Qs · ~10 min
2.3/10avg score
5/10best
#6

The Living World

Biology 10 Qs · ~10 min
6/10avg score
9/10best
#7

Mother's Day

English 10 Qs · ~10 min
10/10avg score
10/10best
#8

A Photograph

English 10 Qs · ~10 min
8/10avg score
9/10best
#9

Methods of Enquiry in Psychology

Psychology 10 Qs · ~10 min
9.5/10avg score
10/10best
#10

Election and Representation

Political Science 10 Qs · ~10 min
7.5/10avg score
8/10best
#11

Political Theory: An Introduction

Political Science 10 Qs · ~10 min
7/10avg score
10/10best
#12

An Empire Across Three Continents

History 10 Qs · ~10 min
8.5/10avg score
9/10best
#13

Plant Kingdom

Biology 10 Qs · ~10 min
3.5/10avg score
4/10best
#14

Biological Classification

Biology 10 Qs · ~10 min
8.5/10avg score
9/10best
#15

Motion in a Straight Line

Physics 10 Qs · ~10 min
2.5/10avg score
4/10best
#16

Accountancy (Class 11) Practice Quiz | CBSE Class 11 Annual Assessment

10 Qs · ~10 min
2/10avg score
4/10best
#17

Sets and Venn Operations Fundamentals — Free CBSE Class 11 Annual Assessment Quiz

10 Qs · ~10 min
2/10avg score
3/10best
#18

The Summer of the Beautiful White Horse

English 10 Qs · ~10 min
9/10avg score
9/10best
#19

The Laburnum Top

English 10 Qs · ~10 min
10/10avg score
10/10best
#20

Discovering Tut: the Saga Continues

English 10 Qs · ~10 min
10/10avg score
10/10best
#21

We're Not Afraid to Die... if We Can All Be Together

English 10 Qs · ~10 min
10/10avg score
10/10best
#22

The Portrait of a Lady

English 10 Qs · ~10 min
7/10avg score
7/10best
#23

Learning

Psychology 10 Qs · ~10 min
8/10avg score
8/10best
#24

Federalism

Political Science 10 Qs · ~10 min
10/10avg score
10/10best
#25

Rights in the Indian Constitution

Political Science 10 Qs · ~10 min
7/10avg score
7/10best
#26

Social Justice

Political Science 10 Qs · ~10 min
10/10avg score
10/10best
#27

Freedom

Political Science 10 Qs · ~10 min
10/10avg score
10/10best
#28

Water in the Atmosphere

Geography 10 Qs · ~10 min
10/10avg score
10/10best
#29

Changing Cultural Traditions

History 10 Qs · ~10 min
10/10avg score
10/10best
#30

Writing and City Life

History 10 Qs · ~10 min
9/10avg score
9/10best
#31

Indian Economy 1950-1990

Economics 10 Qs · ~10 min
9/10avg score
9/10best
#32

Introduction

Economics 10 Qs · ~10 min
5/10avg score
5/10best
#33

Private, Public and Global Enterprises

Business Studies 10 Qs · ~10 min
9/10avg score
9/10best
#34

Introduction to Accounting

Accountancy 10 Qs · ~10 min
9/10avg score
9/10best
#35

Cell: The Unit of Life

Biology 10 Qs · ~10 min
10/10avg score
10/10best
#36

Anatomy of Flowering Plants

Biology 10 Qs · ~10 min
4/10avg score
4/10best
#37

Organic Chemistry – Some Basic Principles and Techniques

Chemistry 10 Qs · ~10 min
3/10avg score
3/10best
#38

Redox Reactions

Chemistry 10 Qs · ~10 min
#39

Motion in a Plane

Physics 10 Qs · ~10 min
5/10avg score
5/10best
#40

Units and Measurement

Physics 10 Qs · ~10 min
#41

The Tale of Melon City

English 10 Qs · ~10 min
#42

Birth

English 10 Qs · ~10 min
#43

The Address

English 10 Qs · ~10 min
#44

Father to Son

English 10 Qs · ~10 min
#45

Silk Road

English 10 Qs · ~10 min
#46

The Adventure

English 10 Qs · ~10 min
#47

Childhood

English 10 Qs · ~10 min
#48

The Ailing Planet: the Green Movement's Role

English 10 Qs · ~10 min
#49

The Voice of the Rain

English 10 Qs · ~10 min
#50

Motivation and Emotion

Psychology 10 Qs · ~10 min
#51

Thinking

Psychology 10 Qs · ~10 min
#52

Human Memory

Psychology 10 Qs · ~10 min
#53

Sensory, Attentional and Perceptual Processes

Psychology 10 Qs · ~10 min
#54

Human Development

Psychology 10 Qs · ~10 min
#55

Indian Sociologists

Sociology 10 Qs · ~10 min
#56

Introducing Western Sociologists

Sociology 10 Qs · ~10 min
#57

Environment and Society

Sociology 10 Qs · ~10 min
#58

Social Change and Social Order in Rural and Urban Society

Sociology 10 Qs · ~10 min
#59

Social Structure, Stratification and Social Processes in Society

Sociology 10 Qs · ~10 min
#60

Doing Sociology: Research Methods

Sociology 10 Qs · ~10 min
#61

Culture and Socialisation

Sociology 10 Qs · ~10 min
#62

Understanding Social Institutions

Sociology 10 Qs · ~10 min
#63

Terms, Concepts and Their Use in Sociology

Sociology 10 Qs · ~10 min
#64

Sociology and Society

Sociology 10 Qs · ~10 min
#65

The Philosophy of the Constitution

Political Science 10 Qs · ~10 min
#66

Constitution as a Living Document

Political Science 10 Qs · ~10 min
#67

Local Governments

Political Science 10 Qs · ~10 min
#68

Judiciary

Political Science 10 Qs · ~10 min
#69

Legislature

Political Science 10 Qs · ~10 min
#70

Executive

Political Science 10 Qs · ~10 min
#71

Secularism

Political Science 10 Qs · ~10 min
#72

Nationalism

Political Science 10 Qs · ~10 min
#73

Citizenship

Political Science 10 Qs · ~10 min
#74

Rights

Political Science 10 Qs · ~10 min
#75

Equality

Political Science 10 Qs · ~10 min
#76

Natural Hazards and Disasters

Geography 10 Qs · ~10 min
#77

Natural Vegetation

Geography 10 Qs · ~10 min
#78

Climate

Geography 10 Qs · ~10 min
#79

Drainage System

Geography 10 Qs · ~10 min
#80

Structure and Physiography

Geography 10 Qs · ~10 min
#81

Biodiversity and Conservation

Geography 10 Qs · ~10 min
#82

Movements of Ocean Water

Geography 10 Qs · ~10 min
#83

Water (Oceans)

Geography 10 Qs · ~10 min
#84

World Climate and Climate Change

Geography 10 Qs · ~10 min
#85

Atmospheric Circulation and Weather Systems

Geography 10 Qs · ~10 min
#86

Solar Radiation, Heat Balance and Temperature

Geography 10 Qs · ~10 min
#87

Composition and Structure of Atmosphere

Geography 10 Qs · ~10 min
#88

Landforms and their Evolution

Geography 10 Qs · ~10 min
#89

Geomorphic Processes

Geography 10 Qs · ~10 min
#90

Distribution of Oceans and Continents

Geography 10 Qs · ~10 min
#91

Interior of the Earth

Geography 10 Qs · ~10 min
#92

The Origin and Evolution of the Earth

Geography 10 Qs · ~10 min
#93

Geography as a Discipline

Geography 10 Qs · ~10 min
#94

Paths to Modernisation

History 10 Qs · ~10 min
#95

Displacing Indigenous Peoples

History 10 Qs · ~10 min
#96

The Three Orders

History 10 Qs · ~10 min
#97

Comparative Development Experiences of India and its Neighbours

Economics 10 Qs · ~10 min
#98

Environment and Sustainable Development

Economics 10 Qs · ~10 min
#99

Employment: Growth, Informalisation and Other Issues

Economics 10 Qs · ~10 min
#100

Rural Development

Economics 10 Qs · ~10 min
#101

Human Capital Formation in India

Economics 10 Qs · ~10 min
#102

Liberalisation, Privatisation and Globalisation: An Appraisal

Economics 10 Qs · ~10 min
#103

Indian Economy on the Eve of Independence

Economics 10 Qs · ~10 min
#104

Use of Statistical Tools

Economics 10 Qs · ~10 min
#105

Index Numbers

Economics 10 Qs · ~10 min
#106

Correlation

Economics 10 Qs · ~10 min
#107

Measures of Central Tendency

Economics 10 Qs · ~10 min
#108

Presentation of Data

Economics 10 Qs · ~10 min
#109

Organisation of Data

Economics 10 Qs · ~10 min
#110

Collection of Data

Economics 10 Qs · ~10 min
#111

International Business

Business Studies 10 Qs · ~10 min
#112

Internal Trade

Business Studies 10 Qs · ~10 min
#113

MSME and Business Entrepreneurship

Business Studies 10 Qs · ~10 min
#114

Sources of Business Finance

Business Studies 10 Qs · ~10 min
#115

Formation of a Company

Business Studies 10 Qs · ~10 min
#116

Social Responsibilities of Business and Business Ethics

Business Studies 10 Qs · ~10 min
#117

Emerging Modes of Business

Business Studies 10 Qs · ~10 min
#118

Business Services

Business Studies 10 Qs · ~10 min
#119

Forms of Business Organisation

Business Studies 10 Qs · ~10 min
#120

Business, Trade and Commerce

Business Studies 10 Qs · ~10 min
#121

Financial Statements - II

Accountancy 10 Qs · ~10 min
#122

Financial Statements - I

Accountancy 10 Qs · ~10 min
#123

Depreciation, Provisions and Reserves

Accountancy 10 Qs · ~10 min
#124

Trial Balance and Rectification of Errors

Accountancy 10 Qs · ~10 min
#125

Bank Reconciliation Statement

Accountancy 10 Qs · ~10 min
#126

Recording of Transactions - II

Accountancy 10 Qs · ~10 min
#127

Recording of Transactions - I

Accountancy 10 Qs · ~10 min
#128

Theory Base of Accounting

Accountancy 10 Qs · ~10 min
#129

Probability

Maths 10 Qs · ~10 min
#130

Statistics

Maths 10 Qs · ~10 min
#131

Limits and Derivatives

Maths 10 Qs · ~10 min
#132

Introduction to Three Dimensional Geometry

Maths 10 Qs · ~10 min
#133

Conic Sections

Maths 10 Qs · ~10 min
#134

Straight Lines

Maths 10 Qs · ~10 min
#135

Sequences and Series

Maths 10 Qs · ~10 min
#136

Binomial Theorem

Maths 10 Qs · ~10 min
#137

Permutations and Combinations

Maths 10 Qs · ~10 min
#138

Linear Inequalities

Maths 10 Qs · ~10 min
#139

Complex Numbers and Quadratic Equations

Maths 10 Qs · ~10 min
#140

Relations and Functions

Maths 10 Qs · ~10 min
#141

Sets

Maths 10 Qs · ~10 min
#142

Chemical Coordination and Integration

Biology 10 Qs · ~10 min
#143

Neural Control and Coordination

Biology 10 Qs · ~10 min
#144

Locomotion and Movement

Biology 10 Qs · ~10 min
#145

Excretory Products and their Elimination

Biology 10 Qs · ~10 min
#146

Body Fluids and Circulation

Biology 10 Qs · ~10 min
#147

Breathing and Exchange of Gases

Biology 10 Qs · ~10 min
#148

Plant Growth and Development

Biology 10 Qs · ~10 min
#149

Respiration in Plants

Biology 10 Qs · ~10 min
#150

Photosynthesis in Higher Plants

Biology 10 Qs · ~10 min
#151

Cell Cycle and Cell Division

Biology 10 Qs · ~10 min
#152

Biomolecules

Biology 10 Qs · ~10 min
#153

Structural Organisation in Animals

Biology 10 Qs · ~10 min
#154

Morphology of Flowering Plants

Biology 10 Qs · ~10 min
#155

Hydrocarbons

Chemistry 10 Qs · ~10 min
#156

Equilibrium

Chemistry 10 Qs · ~10 min
#157

Chemical Bonding and Molecular Structure

Chemistry 10 Qs · ~10 min
#158

Classification of Elements and Periodicity in Properties

Chemistry 10 Qs · ~10 min
#159

Some Basic Concepts of Chemistry

Chemistry 10 Qs · ~10 min
#160

Waves

Physics 10 Qs · ~10 min
#161

Oscillations

Physics 10 Qs · ~10 min
#162

Kinetic Theory

Physics 10 Qs · ~10 min
#163

Thermodynamics

Chemistry 10 Qs · ~10 min
#164

Thermal Properties of Matter

Physics 10 Qs · ~10 min
#165

Mechanical Properties of Fluids

Physics 10 Qs · ~10 min
#166

Mechanical Properties of Solids

Physics 10 Qs · ~10 min
#167

Gravitation

Physics 10 Qs · ~10 min
#168

Systems of Particles and Rotational Motion

Physics 10 Qs · ~10 min
#169

Work, Energy and Power

Physics 10 Qs · ~10 min
#170

Trigonometric Functions

Maths 10 Qs · ~10 min
#171

Structure of Atom

Chemistry 10 Qs · ~10 min
#172

Laws of Motion

Physics 10 Qs · ~10 min
#173

Business Studies (Class 11) Practice Quiz | CBSE Class 11 Annual Assessment

10 Qs · ~10 min
#174

Economics (Class 11) Practice Quiz | CBSE Class 11 Annual Assessment

10 Qs · ~10 min
#175

Humanities Subjects Practice Quiz | CBSE Class 11 Annual Assessment

10 Qs · ~10 min
#176

Motion in a Straight Line Practice Quiz | CBSE Class 11 Annual Assessment

10 Qs · ~10 min
#177

Thermodynamic Processes and Laws Advanced Challenge | CBSE Class 11 Annual Assessment

10 Qs · ~10 min

Group Discussions

No forum posts available.

Easily Share with Your Tribe