Complete Summary and Solutions for Matrices – NCERT Class XII Mathematics Part I, Chapter 3 – Definitions, Types, Operations, Properties, Inverse Matrices

Comprehensive summary and detailed explanation of Chapter 3 'Matrices' from the NCERT Class XII Mathematics Part I textbook, covering the definition and order of matrices, types including row, column, square, diagonal, scalar, identity, and zero matrices. It describes matrix operations such as addition, scalar multiplication, subtraction, matrix multiplication, transpose, symmetric and skew-symmetric matrices, properties of these operations, invertible matrices and their uniqueness with examples, and all NCERT exercises and answers.

Updated: 7 months ago

Categories: NCERT, Class XII, Mathematics Part I, Chapter 3, Matrices, Matrix Operations, Matrix Types, Transpose, Symmetric Matrices, Skew Symmetric Matrices, Inverse Matrices, Summary, Questions, Answers
Tags: Matrices, Matrix Addition, Scalar Multiplication, Matrix Multiplication, Transpose, Symmetric Matrix, Skew Symmetric Matrix, Inverse Matrix, Identity Matrix, Zero Matrix, NCERT, Class 12, Mathematics, Summary, Explanation, Questions, Answers, Chapter 3
Post Thumbnail
Matrices - Class 12 Mathematics Chapter 3 Ultimate Study Guide 2025

Matrices

Chapter 3: Mathematics - Ultimate Study Guide | NCERT Class 12 Notes, Solved Examples, Exercises & Quiz 2025

Full Chapter Summary & Detailed Notes - Matrices Class 12 NCERT

The essence of Mathematics lies in its freedom. — CANTOR

3.1 Introduction

The knowledge of matrices is necessary in various branches of mathematics. Matrices are one of the most powerful tools in mathematics. This mathematical tool simplifies our work to a great extent when compared with other straightforward methods. The evolution of the concept of matrices is the result of an attempt to obtain compact and simple methods of solving systems of linear equations. Matrices are not only used as a representation of the coefficients in a system of linear equations, but the utility of matrices far exceeds that use. Matrix notation and operations are used in electronic spreadsheet programs for personal computers, which in turn are used in different areas of business and science like budgeting, sales projection, cost estimation, analyzing the results of an experiment, etc. Also, many physical operations such as magnification, rotation, and reflection through a plane can be represented mathematically by matrices. Matrices are also used in cryptography. This mathematical tool is not only used in certain branches of sciences, but also in genetics, economics, sociology, modern psychology, and industrial management.

In this chapter, we shall find it interesting to become acquainted with the fundamentals of matrix and matrix algebra.

Conceptual Diagram: Matrix Representation (Like Book Tabular Form)

Consider the tabular form for notebooks and pens possessed by Radha, Fauzia, and Simran:

\[ \begin{array}{c|c|c} & \text{Notebooks} & \text{Pens} \\ \hline \text{Radha} & 15 & 6 \\ \text{Fauzia} & 10 & 2 \\ \text{Simran} & 13 & 5 \\ \end{array} \]

This can be expressed as a matrix:

\[ \begin{bmatrix} 15 & 6 \\ 10 & 2 \\ 13 & 5 \end{bmatrix} \]

tying to the book's example for real-world data representation.

Why This Guide Stands Out (Expanded for 2025 Exams)

Comprehensive coverage mirroring NCERT pages 34-77: All subtopics point-wise with evidence (e.g., Ex 1 workers matrix), full examples (e.g., 3x2 construction), debates (scalar vs. identity matrices as subsets). Added 2025 relevance: Matrices in AI linear algebra for neural networks. Processes for multiplication/inverse with step-by-step derivations. Proforma: Input matrix → Operation → Output verification.

3.2 Matrix

Suppose we wish to express the information that Radha has 15 notebooks. We may express it as [15] with the understanding that the number inside [ ] is the number of notebooks that Radha has. Now, if we have to express that Radha has 15 notebooks and 6 pens, we may express it as [15 6] with the understanding that the first number inside [ ] is the number of notebooks while the other one is the number of pens possessed by Radha.

Let us now suppose that we wish to express the information of possession of notebooks and pens by Radha and her two friends Fauzia and Simran which is as follows:

  • Radha has 15 notebooks and 6 pens,
  • Fauzia has 10 notebooks and 2 pens,
  • Simran has 13 notebooks and 5 pens.

Now this could be arranged in the tabular form as follows:

\[ \begin{bmatrix} 15 & 6 \\ 10 & 2 \\ 13 & 5 \end{bmatrix} \]

or

\[ \begin{array}{ccc} \text{Radha} & \text{Fauzia} & \text{Simran} \\ 15 & 10 & 13 \\ 6 & 2 & 5 \end{array} \]

In the first arrangement the entries in the first column represent the number of notebooks possessed by Radha, Fauzia and Simran, respectively and the entries in the second column represent the number of pens possessed by Radha, Fauzia and Simran, respectively. Similarly, in the second arrangement, the entries in the first row represent the number of notebooks possessed by Radha, Fauzia and Simran, respectively. The entries in the second row represent the number of pens possessed by Radha, Fauzia and Simran, respectively. An arrangement or display of the above kind is called a matrix. Formally, we define matrix as:

Definition 1 A matrix is an ordered rectangular array of numbers or functions. The numbers or functions are called the elements or the entries of the matrix.

We denote matrices by capital letters. The following are some examples of matrices:

\[ A = \begin{bmatrix} 5 & -2 \\ 0 & 5 \\ 3 & 6 \end{bmatrix}, \quad B = \begin{bmatrix} 1 & 2 & 3 \\ 3.5 & -1 & 2 \\ i + 5 & 3 & 5 \end{bmatrix}, \quad C = \begin{bmatrix} 3 + \cos x & \tan x & \sin x \\ 1 & x & x^2 + x^3 \end{bmatrix} \]

In the above examples, the horizontal lines of elements are said to constitute, rows of the matrix and the vertical lines of elements are said to constitute, columns of the matrix. Thus A has 3 rows and 2 columns, B has 3 rows and 3 columns while C has 2 rows and 3 columns.

3.2.1 Order of a matrix

A matrix having m rows and n columns is called a matrix of order m × n or simply m × n matrix (read as an m by n matrix). So referring to the above examples of matrices, we have A as 3 × 2 matrix, B as 3 × 3 matrix and C as 2 × 3 matrix. We observe that A has 3 × 2 = 6 elements, B and C have 9 and 6 elements, respectively.

In general, an m × n matrix has the following rectangular array:

\[ A = [a_{ij}]_{m \times n}, \quad 1 \leq i \leq m, \ 1 \leq j \leq n \quad i, j \in \mathbb{N} \]

Thus the ith row consists of the elements \( a_{i1}, a_{i2}, a_{i3}, \dots, a_{in} \), while the jth column consists of the elements \( a_{1j}, a_{2j}, a_{3j}, \dots, a_{mj} \).

In general \( a_{ij} \), is an element lying in the ith row and jth column. We can also call it as the (i, j)th element of A. The number of elements in an m × n matrix will be equal to mn.

Quick Table: Matrix Basics (Expanded with Book Examples)

AspectDescriptionExample from Book
Orderm rows x n cols, mn elementsA 3×2: 6 elements
Element(i,j)-th: \( a_{ij} \)\( a_{23} \) in row2 col3
Real ValuesNumbers/functions real-valued\( \cos x + \sin x \)

Note In this chapter

  • We shall follow the notation, namely \( A = [a_{ij}]_{m \times n} \) to indicate that A is a matrix of order m × n.
  • We shall consider only those matrices whose elements are real numbers or functions taking real values.

We can also represent any point (x, y) in a plane by a matrix (column or row) as

\[ \begin{bmatrix} x \\ y \end{bmatrix} \quad (\text{or} \ [x, y]). \]

For example point P(0, 1) as a matrix representation may be given as

\[ P = \begin{bmatrix} 0 \\ 1 \end{bmatrix} \quad \text{or} \ [0 \ 1]. \]

Observe that in this way we can also express the vertices of a closed rectilinear figure in the form of a matrix. For example, consider a quadrilateral ABCD with vertices A (1, 0), B (3, 2), C (1, 3), D (–1, 2).

Now, quadrilateral ABCD in the matrix form, can be represented as

\[ X = \begin{bmatrix} 1 & 3 & 1 & -1 \\ 0 & 2 & 3 & 2 \end{bmatrix} \quad \text{or} \quad Y = \begin{bmatrix} 1 & 0 \\ 3 & 2 \\ 1 & 3 \\ -1 & 2 \end{bmatrix}. \]

Thus, matrices can be used as representation of vertices of geometrical figures in a plane.

Example 1 (Integrated in Summary - Workers Data)

Consider the following information regarding the number of men and women workers in three factories I, II and III:

\[ \begin{array}{c|cc} & \text{Men workers} & \text{Women workers} \\ \hline \text{I} & 30 & 25 \\ \text{II} & 25 & 31 \\ \text{III} & 27 & 26 \end{array} \]

Represent the above information in the form of a 3 × 2 matrix. What does the entry in the third row and second column represent?

Solution: The information is represented in the form of a 3 × 2 matrix as follows:

\[ A = \begin{bmatrix} 30 & 25 \\ 25 & 31 \\ 27 & 26 \end{bmatrix} \]

The entry in the third row and second column represents the number of women workers in factory III.

Example 2 (Integrated - Possible Orders)

If a matrix has 8 elements, what are the possible orders it can have?

Solution: We know that if a matrix is of order m × n, it has mn elements. Thus, to find all possible orders of a matrix with 8 elements, we will find all ordered pairs of natural numbers, whose product is 8. Thus, all possible ordered pairs are (1, 8), (8, 1), (4, 2), (2, 4). Hence, possible orders are 1 × 8, 8 ×1, 4 × 2, 2 × 4.

Example 3 (Integrated - Construct Matrix)

Construct a 3 × 2 matrix whose elements are given by \( a_{ij} = \frac{1}{2} |i - 3j| \).

Solution: In general a 3 × 2 matrix is given by \[ A = \begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \\ a_{31} & a_{32} \end{bmatrix}. \] Now \( a_{ij} = \frac{1}{2} |i - 3j| \), i = 1, 2, 3 and j = 1, 2. Therefore \( a_{11} = \frac{1}{2} |1 - 3 \cdot 1| = \frac{1}{2} \cdot 2 = 1 \), \( a_{12} = \frac{1}{2} |1 - 3 \cdot 2| = \frac{1}{2} \cdot 5 = \frac{5}{2} \), \( a_{21} = \frac{1}{2} |2 - 3 \cdot 1| = \frac{1}{2} \cdot 1 = \frac{1}{2} \), \( a_{22} = \frac{1}{2} |2 - 3 \cdot 2| = \frac{1}{2} \cdot 4 = 2 \), \( a_{31} = \frac{1}{2} |3 - 3 \cdot 1| = \frac{1}{2} \cdot 0 = 0 \), \( a_{32} = \frac{1}{2} |3 - 3 \cdot 2| = \frac{1}{2} \cdot 3 = \frac{3}{2} \). Hence the required matrix is given by \[ A = \begin{bmatrix} 1 & \frac{5}{2} \\ \frac{1}{2} & 2 \\ 0 & \frac{3}{2} \end{bmatrix}. \]

3.3 Types of Matrices

In this section, we shall discuss different types of matrices.

  • (i) Column matrix A matrix is said to be a column matrix if it has only one column. For example,
\[ A = \begin{bmatrix} 0 \\ 3 \\ 1 \\ -1/2 \end{bmatrix} \]

is a column matrix of order 4 × 1. In general, \( A = [a_{ij}]_{m \times 1} \) is a column matrix of order m × 1.

  • (ii) Row matrix A matrix is said to be a row matrix if it has only one row. For example,
\[ B = \begin{bmatrix} 1 & 4 & -5 \end{bmatrix} \]

is a row matrix. In general, \( B = [b_{ij}]_{1 \times n} \) is a row matrix of order 1 × n.

  • (iii) Square matrix A matrix in which the number of rows are equal to the number of columns, is said to be a square matrix. Thus an m × n matrix is said to be a square matrix if m = n and is known as a square matrix of order ‘n’. For example
\[ A = \begin{bmatrix} 3 & -1 & 0 \\ 3 & 2 & 1 \\ 4 & 3 & -1 \end{bmatrix} \]

is a square matrix of order 3. In general, \( A = [a_{ij}]_{m \times m} \) is a square matrix of order m.

Note If \( A = [a_{ij}] \) is a square matrix of order n, then elements (entries) \( a_{11}, a_{22}, \dots, a_{nn} \) are said to constitute the diagonal, of the matrix A. Thus, if

\[ A = \begin{bmatrix} -1 & 3 & 1 \\ 2 & 4 & -1 \\ 3 & 5 & 6 \end{bmatrix}, \]

Then the elements of the diagonal of A are -1, 4, 6.

  • (iv) Diagonal matrix A square matrix B = [b_{ij}]_{m \times m} is said to be a diagonal matrix if all its non diagonal elements are zero, that is a matrix B = [b_{ij}]_{m \times m} is said to be a diagonal matrix if \( b_{ij} = 0 \), when i ≠ j. For example,
\[ A = [4], \quad B = \begin{bmatrix} -1 & 0 \\ 0 & 2 \end{bmatrix}, \quad C = \begin{bmatrix} -1.1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 3 \end{bmatrix}, \]

are diagonal matrices of order 1, 2, 3, respectively.

  • (v) Scalar matrix A diagonal matrix is said to be a scalar matrix if its diagonal elements are equal, that is, a square matrix B = [b_{ij}]_{n \times n} is said to be a scalar matrix if \( b_{ij} = 0 \), when i ≠ j and \( b_{ij} = k \), when i = j, for some constant k. For example
\[ A = [3], \quad B = \begin{bmatrix} -1 & 0 \\ 0 & -1 \end{bmatrix}, \quad C = \begin{bmatrix} 3 & 0 & 0 \\ 0 & 3 & 0 \\ 0 & 0 & 3 \end{bmatrix} \]

are scalar matrices of order 1, 2 and 3, respectively.

  • (vi) Identity matrix A square matrix in which elements in the diagonal are all 1 and rest are all zero is called an identity matrix. In other words, the square matrix \( A = [a_{ij}]_{n \times n} \) is an identity matrix, if \( a_{ij} = 1 \) if i=j, 0 if i≠j. We denote the identity matrix of order n by I_n. When order is clear from the context, we simply write it as I. For example [1],
\[ \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}, \quad \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix} \]

are identity matrices of order 1, 2 and 3, respectively. Observe that a scalar matrix is an identity matrix when k = 1. But every identity matrix is clearly a scalar matrix.

  • (vii) Zero matrix A matrix is said to be zero matrix or null matrix if all its elements are zero. For example, [0],
\[ \begin{bmatrix} 0 & 0 \\ 0 & 0 \end{bmatrix}, \quad \begin{bmatrix} 0 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix}, [0, 0] \]

are all zero matrices. We denote zero matrix by O. Its order will be clear from the context.

3.3.1 Equality of matrices

Definition 2 Two matrices \( A = [a_{ij}] \) and \( B = [b_{ij}] \) are said to be equal if (i) they are of the same order (ii) each element of A is equal to the corresponding element of B, that is \( a_{ij} = b_{ij} \) for all i and j. For example,

\[ \begin{bmatrix} 2 & 3 \\ 0 & 1 \end{bmatrix} \quad \text{and} \quad \begin{bmatrix} 2 & 3 \\ 0 & 1 \end{bmatrix} \]

are equal matrices but

\[ \begin{bmatrix} 3 & 2 \\ 2 & 3 \end{bmatrix} \quad \text{and} \quad \begin{bmatrix} 0 & 1 \\ 0 & 1 \end{bmatrix} \]

are not equal matrices. Symbolically, if two matrices A and B are equal, we write A = B.

If

\[ \begin{bmatrix} -1.5 & 0 \\ 2 & 6 \end{bmatrix} = \begin{bmatrix} x & y \\ z & a \end{bmatrix}, \]

then x = – 1.5, y = 0, z = 2, a = 6.

Example 4 (Integrated - Equality Variables)

If \[ \begin{bmatrix} x+3 & z+4 \\ 2y-7 & 3y-2 \end{bmatrix} = \begin{bmatrix} 0 & 6 \\ -3 & 2b+4 \end{bmatrix}, \] find x, y, z, b.

Solution: As the given matrices are equal, therefore, their corresponding elements must be equal. Comparing the corresponding elements, we get x + 3 = 0, z + 4 = 6, 2y – 7 = 3y – 2, a – 1 = – 3, 0 = 2c + 2, b – 3 = 2b + 4. Simplifying, we get a = – 2, b = – 7, c = – 1, x = – 3, y = –5, z = 2.

Example 5 (Integrated - Solve a,b,c,d)

Find the values of a, b, c, and d from the following equation:

\[ \begin{bmatrix} 2+a & 2-b \\ 4-c & 3+d \end{bmatrix} = \begin{bmatrix} 5 & 4 \\ 3 & 11 \end{bmatrix} + \begin{bmatrix} 24 & 0 \\ 0 & 8 \end{bmatrix}. \]

Solution: The right side is \begin{bmatrix} 29 & 4 \\ 3 & 19 \end{bmatrix}. Equating, 2+a=29 ⇒ a=27, 2-b=4 ⇒ b=-2, 4-c=3 ⇒ c=1, 3+d=19 ⇒ d=16.

3.4 Operations on Matrices (Expanded from Book)

Matrix addition and subtraction are defined for matrices of the same order. The sum or difference of two matrices A and B of the same order is the matrix obtained by adding or subtracting the corresponding elements of A and B.

Scalar multiplication: If k is a scalar and A is a matrix, then kA is the matrix obtained by multiplying each element of A by k.

Matrix multiplication: Two matrices A (m × n) and B (n × p) can be multiplied to give a matrix C (m × p) where each element c_ij is the dot product of i-th row of A and j-th column of B.

Properties: Addition is commutative and associative; multiplication is associative and distributive over addition, but not commutative in general.

Derivation: Matrix Multiplication (Step-by-Step Like Book)

Step 1: Check compatibility: Columns of A = rows of B.
Step 2: \( (AB)_{ij} = \sum_{k=1}^n a_{ik} b_{kj} \).
Step 3: Verify: AB ≠ BA generally, e.g., \( \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix} \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} \), but reverse same only for identity.

3.5 Transpose of a Matrix

The transpose of a matrix A, denoted by A^T, is obtained by interchanging rows and columns of A, i.e., \( (A^T)_{ij} = a_{ji} \).

A matrix A is symmetric if A = A^T, skew-symmetric if A = -A^T.

3.6 Symmetric and Skew Symmetric Matrices

Any square matrix can be expressed as sum of symmetric and skew-symmetric matrices: \( A = \frac{A + A^T}{2} + \frac{A - A^T}{2} \).

3.7 Elementary Operation (Transformation) of a Matrix

Row/column operations: Interchange two rows/columns, multiply a row/column by non-zero scalar, add multiple of one row/column to another.

These are used to find inverse or solve systems.

3.8 Inverse of a Matrix

A square matrix A has inverse A^{-1} if AA^{-1} = I = A^{-1}A, exists iff det A ≠ 0.

For 2×2: \( A = \begin{bmatrix} a & b \\ c & d \end{bmatrix} \), A^{-1} = \frac{1}{ad-bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix} \).

General: A^{-1} = \frac{1}{\det A} \adj A, where adj A is transpose of cofactor matrix.

Derivation: Cofactor and Adjoint (Book-Style Steps)

Step 1: Minor M_ij = det of matrix deleting row i col j.
Step 2: Cofactor C_ij = (-1)^{i+j} M_ij.
Step 3: Adjoint = transpose of [C_ij].
Step 4: Inverse = adj A / det A.
Verification: AA^{-1} = I.

3.9 Solving Linear Equations Using Inverse

For AX = B, X = A^{-1} B if A invertible. Unique solution if det A ≠ 0. Infinite or no solution if singular.

Summary & Exercises Tease

Key Takeaways: Matrices compactly represent linear algebra; operations enable solving systems; inverse crucial for unique solutions. Exercises: Orders/types (3.1), operations (3.2), transpose (3.3), inverse/applications (3.4, Misc).

Practice Quiz

Test your CBSE Class 12 Board Examination prep

🎁New here? Your first purchase is just ₹1 — 120 coins with code RAMANUJAN_1

Quizzes

10 questions · ~10 minutes · instant rank & AI diagnosis

5 attempts on CBSE Class 12 Board Examination quizzes
How scored 1/10 on Economics (Class 12) Ravi jatav scored 0/10 on Economics (Class 12) Ravi jatav scored 0/10 on Economics (Class 12) Ravi jatav scored 0/10 on Accountancy (Class 12) Dhara scored 3/10 on Electrostatic Potential and Capacitance How scored 1/10 on Economics (Class 12) Ravi jatav scored 0/10 on Economics (Class 12) Ravi jatav scored 0/10 on Economics (Class 12) Ravi jatav scored 0/10 on Accountancy (Class 12) Dhara scored 3/10 on Electrostatic Potential and Capacitance
#1

Economics (Class 12) Practice Quiz | CBSE Class 12 Board Examination

10 Qs · ~10 min
#2

Accountancy (Class 12) Practice Quiz | CBSE Class 12 Board Examination

10 Qs · ~10 min
#3

Electrostatic Potential and Capacitance Fundamentals | CBSE Class 12 Board Examination

10 Qs · ~10 min
#4

Class 12 English — Memories of Childhood (Practice Quiz)

10 Qs · ~10 min
#5

Class 12 English — On the Face of It (Practice Quiz)

10 Qs · ~10 min
#6

Class 12 English — The Enemy (Practice Quiz)

10 Qs · ~10 min
#7

Class 12 English — Journey to the End of the Earth (Practice Quiz)

10 Qs · ~10 min
#8

Class 12 English — The Tiger King (Practice Quiz)

10 Qs · ~10 min
#9

Class 12 English — The Third Level (Practice Quiz)

10 Qs · ~10 min
#10

Class 12 English — Aunt Jennifer's Tigers (Practice Quiz)

10 Qs · ~10 min
#11

Class 12 English — A Roadside Stand (Practice Quiz)

10 Qs · ~10 min
#12

Class 12 English — A Thing of Beauty (Practice Quiz)

10 Qs · ~10 min
#13

Class 12 English — Keeping Quiet (Practice Quiz)

10 Qs · ~10 min
#14

Class 12 English — An Elementary School Classroom in a Slum (Practice Quiz)

10 Qs · ~10 min
#15

Class 12 English — My Mother at Sixty-six (Practice Quiz)

10 Qs · ~10 min
#16

Class 12 English — Going Places (Practice Quiz)

10 Qs · ~10 min
#17

Class 12 English — The Interview (Practice Quiz)

10 Qs · ~10 min
#18

Class 12 English — Poets and Pancakes (Practice Quiz)

10 Qs · ~10 min
#19

Class 12 English — Indigo (Practice Quiz)

10 Qs · ~10 min
#20

Class 12 English — The Rattrap (Practice Quiz)

10 Qs · ~10 min
#21

Class 12 English — Deep Water (Practice Quiz)

10 Qs · ~10 min
#22

Class 12 English — Lost Spring (Practice Quiz)

10 Qs · ~10 min
#23

Class 12 English — The Last Lesson (Practice Quiz)

10 Qs · ~10 min
#24

Class 12 Psychology — Social Influence and Group Processes (Practice Quiz)

10 Qs · ~10 min
#25

Class 12 Psychology — Attitude and Social Cognition (Practice Quiz)

10 Qs · ~10 min
#26

Class 12 Psychology — Therapeutic Approaches (Practice Quiz)

10 Qs · ~10 min
#27

Class 12 Psychology — Psychological Disorders (Practice Quiz)

10 Qs · ~10 min
#28

Class 12 Psychology — Meeting Life Challenges (Practice Quiz)

10 Qs · ~10 min
#29

Class 12 Psychology — Self and Personality (Practice Quiz)

10 Qs · ~10 min
#30

Class 12 Psychology — Variations in Psychological Attributes (Practice Quiz)

10 Qs · ~10 min
#31

Class 12 Sociology — Social Movements (Practice Quiz)

10 Qs · ~10 min
#32

Class 12 Sociology — Mass Media and Communications (Practice Quiz)

10 Qs · ~10 min
#33

Class 12 Sociology — Globalisation and Social Change (Practice Quiz)

10 Qs · ~10 min
#34

Class 12 Sociology — Change and Development in Industrial Society (Practice Quiz)

10 Qs · ~10 min
#35

Class 12 Sociology — Change and Development in Rural Society (Practice Quiz)

10 Qs · ~10 min
#36

Class 12 Sociology — The Constitution and Social Change (Practice Quiz)

10 Qs · ~10 min
#37

Class 12 Sociology — Cultural Change (Practice Quiz)

10 Qs · ~10 min
#38

Class 12 Sociology — Structural Change (Practice Quiz)

10 Qs · ~10 min
#39

Class 12 Sociology — The Challenges of Cultural Diversity (Practice Quiz)

10 Qs · ~10 min
#40

Class 12 Sociology — Patterns of Social Inequality and Exclusion (Practice Quiz)

10 Qs · ~10 min
#41

Class 12 Sociology — The Market as a Social Institution (Practice Quiz)

10 Qs · ~10 min
#42

Class 12 Sociology — Social Institutions: Continuity and Change (Practice Quiz)

10 Qs · ~10 min
#43

Class 12 Sociology — The Demographic Structure of the Indian Society (Practice Quiz)

10 Qs · ~10 min
#44

Class 12 Sociology — Introducing Indian Society (Practice Quiz)

10 Qs · ~10 min
#45

Class 12 Political Science — Recent Developments in Indian Politics (Practice Quiz)

10 Qs · ~10 min
#46

Class 12 Political Science — Regional Aspirations (Practice Quiz)

10 Qs · ~10 min
#47

Class 12 Political Science — The Crisis of Democratic Order (Practice Quiz)

10 Qs · ~10 min
#48

Class 12 Political Science — Challenges to and Restoration of the Congress System (Practice Quiz)

10 Qs · ~10 min
#49

Class 12 Political Science — India's External Relations (Practice Quiz)

10 Qs · ~10 min
#50

Class 12 Political Science — Politics of Planned Development (Practice Quiz)

10 Qs · ~10 min
#51

Class 12 Political Science — Era of One-party Dominance (Practice Quiz)

10 Qs · ~10 min
#52

Class 12 Political Science — Challenges of Nation Building (Practice Quiz)

10 Qs · ~10 min
#53

Class 12 Political Science — Environment and Natural Resources (Practice Quiz)

10 Qs · ~10 min
#54

Class 12 Political Science — Security in the Contemporary World (Practice Quiz)

10 Qs · ~10 min
#55

Class 12 Political Science — International Organisations (Practice Quiz)

10 Qs · ~10 min
#56

Class 12 Political Science — Contemporary South Asia (Practice Quiz)

10 Qs · ~10 min
#57

Class 12 Political Science — Contemporary Centres of Power (Practice Quiz)

10 Qs · ~10 min
#58

Class 12 Political Science — The End of Bipolarity (Practice Quiz)

10 Qs · ~10 min
#59

Class 12 Geography — Geographical Perspective on Selected Issues and Problems (Practice Quiz)

10 Qs · ~10 min
#60

Class 12 Geography — Planning and Sustainable Development in the Indian Context (Practice Quiz)

10 Qs · ~10 min
#61

Class 12 Geography — Mineral and Energy Resources (Practice Quiz)

10 Qs · ~10 min
#62

Class 12 Geography — Water Resources (Practice Quiz)

10 Qs · ~10 min
#63

Class 12 Geography — Land Resources and Agriculture (Practice Quiz)

10 Qs · ~10 min
#64

Class 12 Geography — Human Settlements (Practice Quiz)

10 Qs · ~10 min
#65

Class 12 Geography — Population: Distribution, Density, Growth and Composition (Practice Quiz)

10 Qs · ~10 min
#66

Class 12 Geography — International Trade (India) (Practice Quiz)

10 Qs · ~10 min
#67

Class 12 Geography — Transport and Communication (India) (Practice Quiz)

10 Qs · ~10 min
#68

Class 12 Geography — Tertiary and Quaternary Activities (Practice Quiz)

10 Qs · ~10 min
#69

Class 12 Geography — Secondary Activities (Practice Quiz)

10 Qs · ~10 min
#70

Class 12 Geography — Primary Activities (Practice Quiz)

10 Qs · ~10 min
#71

Class 12 Geography — Human Development (Practice Quiz)

10 Qs · ~10 min
#72

Class 12 Geography — The World Population: Distribution, Density and Growth (Practice Quiz)

10 Qs · ~10 min
#73

Class 12 Geography — Human Geography: Nature and Scope (Practice Quiz)

10 Qs · ~10 min
#74

Class 12 History — Framing the Constitution — The Beginning of a New Era (Practice Quiz)

10 Qs · ~10 min
#75

Class 12 History — Mahatma Gandhi and the Nationalist Movement — Civil Disobedience and Beyond (Practice Quiz)

10 Qs · ~10 min
#76

Class 12 History — Rebels and the Raj — The Revolt of 1857 and its Representations (Practice Quiz)

10 Qs · ~10 min
#77

Class 12 History — Colonialism and the Countryside — Exploring Official Archives (Practice Quiz)

10 Qs · ~10 min
#78

Class 12 History — Peasants, Zamindars and the State — Agrarian Society and the Mughal Empire (c. sixteenth-seventeenth centuries) (Practice Quiz)

10 Qs · ~10 min
#79

Class 12 History — An Imperial Capital: Vijayanagara (c. fourteenth to sixteenth century) (Practice Quiz)

10 Qs · ~10 min
#80

Class 12 History — Bhakti-Sufi Traditions — Changes in Religious Beliefs and Devotional Texts (c. eighth to eighteenth century) (Practice Quiz)

10 Qs · ~10 min
#81

Class 12 History — Through the Eyes of Travellers — Perceptions of Society (c. tenth to seventeenth century) (Practice Quiz)

10 Qs · ~10 min
#82

Class 12 History — Thinkers, Beliefs and Buildings — Cultural Developments (c. 600 BCE-600 CE) (Practice Quiz)

10 Qs · ~10 min
#83

Class 12 History — Kinship, Caste and Class — Early Societies (c. 600 BCE-600 CE) (Practice Quiz)

10 Qs · ~10 min
#84

Class 12 History — Kings, Farmers and Towns — Early States and Economies (c. 600 BCE-600 CE) (Practice Quiz)

10 Qs · ~10 min
#85

Class 12 History — Bricks, Beads and Bones — The Harappan Civilisation (Practice Quiz)

10 Qs · ~10 min
#86

Class 12 Economics — Open Economy Macroeconomics (Practice Quiz)

10 Qs · ~10 min
#87

Class 12 Economics — Government Budget and the Economy (Practice Quiz)

10 Qs · ~10 min
#88

Class 12 Economics — Determination of Income and Employment (Practice Quiz)

10 Qs · ~10 min
#89

Class 12 Economics — Money and Banking (Practice Quiz)

10 Qs · ~10 min
#90

Class 12 Economics — National Income Accounting (Practice Quiz)

10 Qs · ~10 min
#91

Class 12 Economics — Market Equilibrium (Practice Quiz)

10 Qs · ~10 min
#92

Class 12 Economics — The Theory of the Firm under Perfect Competition (Practice Quiz)

10 Qs · ~10 min
#93

Class 12 Economics — Production and Costs (Practice Quiz)

10 Qs · ~10 min
#94

Class 12 Economics — Theory of Consumer Behaviour (Practice Quiz)

10 Qs · ~10 min
#95

Class 12 Economics — Introduction (Practice Quiz)

10 Qs · ~10 min
#96

Class 12 Business Studies — Consumer Protection (Practice Quiz)

10 Qs · ~10 min
#97

Class 12 Business Studies — Marketing (Practice Quiz)

10 Qs · ~10 min
#98

Class 12 Business Studies — Financial Management (Practice Quiz)

10 Qs · ~10 min
#99

Class 12 Business Studies — Controlling (Practice Quiz)

10 Qs · ~10 min
#100

Class 12 Business Studies — Directing (Practice Quiz)

10 Qs · ~10 min
#101

Class 12 Business Studies — Staffing (Practice Quiz)

10 Qs · ~10 min
#102

Class 12 Business Studies — Organising (Practice Quiz)

10 Qs · ~10 min
#103

Class 12 Business Studies — Planning (Practice Quiz)

10 Qs · ~10 min
#104

Class 12 Business Studies — Business Environment (Practice Quiz)

10 Qs · ~10 min
#105

Class 12 Business Studies — Nature and Significance of Management (Practice Quiz)

10 Qs · ~10 min
#106

Class 12 Accountancy — Cash Flow Statement (Practice Quiz)

10 Qs · ~10 min
#107

Class 12 Accountancy — Accounting Ratios (Practice Quiz)

10 Qs · ~10 min
#108

Class 12 Accountancy — Analysis of Financial Statements (Practice Quiz)

10 Qs · ~10 min
#109

Class 12 Accountancy — Financial Statements of a Company (Practice Quiz)

10 Qs · ~10 min
#110

Class 12 Accountancy — Issue and Redemption of Debentures (Practice Quiz)

10 Qs · ~10 min
#111

Class 12 Accountancy — Accounting for Share Capital (Practice Quiz)

10 Qs · ~10 min
#112

Class 12 Accountancy — Dissolution of Partnership Firm (Practice Quiz)

10 Qs · ~10 min
#113

Class 12 Accountancy — Reconstitution of a Partnership Firm – Retirement/Death of a Partner (Practice Quiz)

10 Qs · ~10 min
#114

Class 12 Accountancy — Reconstitution of a Partnership Firm – Admission of a Partner (Practice Quiz)

10 Qs · ~10 min
#115

Class 12 Accountancy — Accounting for Partnership: Basic Concepts (Practice Quiz)

10 Qs · ~10 min
#116

Class 12 Maths — Probability (Practice Quiz)

10 Qs · ~10 min
#117

Class 12 Maths — Linear Programming (Practice Quiz)

10 Qs · ~10 min
#118

Class 12 Maths — Three Dimensional Geometry (Practice Quiz)

10 Qs · ~10 min
#119

Class 12 Maths — Vector Algebra (Practice Quiz)

10 Qs · ~10 min
#120

Class 12 Maths — Differential Equations (Practice Quiz)

10 Qs · ~10 min
#121

Class 12 Maths — Application of Integrals (Practice Quiz)

10 Qs · ~10 min
#122

Class 12 Maths — Integrals (Practice Quiz)

10 Qs · ~10 min
#123

Class 12 Maths — Application of Derivatives (Practice Quiz)

10 Qs · ~10 min
#124

Class 12 Maths — Continuity and Differentiability (Practice Quiz)

10 Qs · ~10 min
#125

Class 12 Maths — Determinants (Practice Quiz)

10 Qs · ~10 min
#126

Class 12 Maths — Matrices (Practice Quiz)

10 Qs · ~10 min
#127

Class 12 Maths — Inverse Trigonometric Functions (Practice Quiz)

10 Qs · ~10 min
#128

Class 12 Maths — Relations and Functions (Practice Quiz)

10 Qs · ~10 min
#129

Class 12 Biology — Biodiversity and its Conservation (Practice Quiz)

10 Qs · ~10 min
#130

Class 12 Biology — Ecosystem (Practice Quiz)

10 Qs · ~10 min
#131

Class 12 Biology — Organisms and Populations (Practice Quiz)

10 Qs · ~10 min
#132

Class 12 Biology — Biotechnology and its Applications (Practice Quiz)

10 Qs · ~10 min
#133

Class 12 Biology — Biotechnology: Principles and Processes (Practice Quiz)

10 Qs · ~10 min
#134

Class 12 Biology — Microbes in Human Welfare (Practice Quiz)

10 Qs · ~10 min
#135

Class 12 Biology — Human Health and Disease (Practice Quiz)

10 Qs · ~10 min
#136

Class 12 Biology — Evolution (Practice Quiz)

10 Qs · ~10 min
#137

Class 12 Biology — Molecular Basis of Inheritance (Practice Quiz)

10 Qs · ~10 min
#138

Class 12 Biology — Principles of Inheritance and Variation (Practice Quiz)

10 Qs · ~10 min
#139

Class 12 Biology — Reproductive Health (Practice Quiz)

10 Qs · ~10 min
#140

Class 12 Biology — Human Reproduction (Practice Quiz)

10 Qs · ~10 min
#141

Class 12 Biology — Sexual Reproduction in Flowering Plants (Practice Quiz)

10 Qs · ~10 min
#142

Class 12 Chemistry — Biomolecules (Practice Quiz)

10 Qs · ~10 min
#143

Class 12 Chemistry — Amines (Practice Quiz)

10 Qs · ~10 min
#144

Class 12 Chemistry — Aldehydes, Ketones and Carboxylic Acids (Practice Quiz)

10 Qs · ~10 min
#145

Class 12 Chemistry — Alcohols, Phenols and Ethers (Practice Quiz)

10 Qs · ~10 min
#146

Class 12 Chemistry — Haloalkanes and Haloarenes (Practice Quiz)

10 Qs · ~10 min
#147

Class 12 Chemistry — Coordination Compounds (Practice Quiz)

10 Qs · ~10 min
#148

Class 12 Chemistry — The d- and f-Block Elements (Practice Quiz)

10 Qs · ~10 min
#149

Class 12 Chemistry — Chemical Kinetics (Practice Quiz)

10 Qs · ~10 min
#150

Class 12 Chemistry — Electrochemistry (Practice Quiz)

10 Qs · ~10 min
#151

Class 12 Chemistry — Solutions (Practice Quiz)

10 Qs · ~10 min
#152

Class 12 Physics — Semiconductor Electronics: Materials, Devices and Simple Circuits (Practice Quiz)

10 Qs · ~10 min
#153

Class 12 Physics — Nuclei (Practice Quiz)

10 Qs · ~10 min
#154

Class 12 Physics — Atoms (Practice Quiz)

10 Qs · ~10 min
#155

Class 12 Physics — Dual Nature of Radiation and Matter (Practice Quiz)

10 Qs · ~10 min
#156

Class 12 Physics — Wave Optics (Practice Quiz)

10 Qs · ~10 min
#157

Class 12 Physics — Ray Optics and Optical Instruments (Practice Quiz)

10 Qs · ~10 min
#158

Class 12 Physics — Electromagnetic Waves (Practice Quiz)

10 Qs · ~10 min
#159

Class 12 Physics — Alternating Current (Practice Quiz)

10 Qs · ~10 min
#160

Class 12 Physics — Electromagnetic Induction (Practice Quiz)

10 Qs · ~10 min
#161

Class 12 Physics — Magnetism and Matter (Practice Quiz)

10 Qs · ~10 min
#162

Class 12 Physics — Moving Charges and Magnetism (Practice Quiz)

10 Qs · ~10 min
#163

Class 12 Physics — Electrostatic Potential and Capacitance (Practice Quiz)

10 Qs · ~10 min
#164

Class 12 Physics — Electric Charges and Fields (Practice Quiz)

10 Qs · ~10 min
#165

Class 12 Business Studies — Principles of Management (Practice Quiz)

10 Qs · ~10 min
#166

CBSE Class 12 — Genetics and Evolution (Practice Quiz)

10 Qs · ~10 min
#167

CBSE Class 12 — Matrices and Determinants (Practice Quiz)

10 Qs · ~10 min
#168

CBSE Class 12 — Solutions and Colligative Properties (Practice Quiz)

10 Qs · ~10 min
#169

Class 12 Physics — Current Electricity (Practice Quiz)

10 Qs · ~10 min
#170

CBSE Class 12 — Electrostatics and Electric Field (Practice Quiz)

10 Qs · ~10 min
#171

Humanities Subjects Practice Quiz | CBSE Class 12 Board Examination

10 Qs · ~10 min

Group Discussions

No forum posts available.

Easily Share with Your Tribe