CBSE Class 11 Computer Science Operators and Expressions Assignment

Read and download the CBSE Class 11 Computer Science Operators and Expressions Assignment for the 2025-26 academic session. We have provided comprehensive Class 11 Computer Science school assignments that have important solved questions and answers for Operators And Expressions. These resources have been carefuly prepared by expert teachers as per the latest NCERT, CBSE, and KVS syllabus guidelines.

Solved Assignment for Class 11 Computer Science Operators And Expressions

Practicing these Class 11 Computer Science problems daily is must to improve your conceptual understanding and score better marks in school examinations. These printable assignments are a perfect assessment tool for Operators And Expressions, covering both basic and advanced level questions to help you get more marks in exams.

Operators And Expressions Class 11 Solved Questions and Answers

Question: __ symbol is used for Modulus operator.
Answer: %

Question: __ operators are used to combine different conditions.
Answer: Logical

Question: int i=5 is called _ assignment.
Answer: declaration

Question: i=5 is called __ addignment.
Answer: general

Question: _ operators have no precedence.
Answer: relational

 

Write True or False

Question: The expression ++(a+b) is valid if a=7 and b=5
Answer: False

Question: The expression a&&=b is valid if a=7 and b=5
Answer: False

Question: The expression –10 is a valid expression.
Answer: False

Question: The assignment statement a+b=c; is valid in C language.
Answer: False

Question: Underscore can be the first character in the identifier of c language.
Answer: True

 

Marks Questions

Question: Where does the modulus operator be used?
Answer: Modulus operator is an arithmetic operator. It is a binary operator. It requires two operands to perform its
operation. The symbol % is used for this operator. This operator is used when we want the remainder value after
dividing the two integer values. This operator works only for the integer type values. It does not work for the float or
double type values. Example of modulus operator is 6%4=2.

Question: Write the difference between Relational and Logical Operators.
Answer: Relational and Logical Operator’s are used for testing conditions in control statements. These operators return
true or false value after testing conditions. The common differences between them are given below:

CBSE-Class-11-Computer-Science-Operators-and-Expressions-Assignment-1

Question: What are Unary Operators?
Answer: These operators are those which reqire one operand to perform their operations. For example: Increment (++) and decrement (–) are the unary operators. Increment operator increase unit value in its operand, while decrement operator decrease unit value in its operand. For example:
if int a=5; than, a++; it will increase the value of variable a from 5 to 6 a–; it will decrease the value of variable a from 5 to 4

Question: Write an example of increment and decrement operator.
Answer: Increment (++) and decrement (–) are the unary operators. Increment operator increase unit value in its
operand, while decrement operator decrease unit value in its operand. For example:
if int a=5;
than, a++; it will increase the value of variable a from 5 to 6
a–; it will decrease the value of variable a from 5 to 4

Question: What is Expression?
OR
What is the use of expression in c language?
Answer: In C Language, expression is like a formula. An expression is a combination of operators and operands.
Operators return result after performing operation on their operands. This result can be used in our program.
Consider the following example:
a=4+5;
in this expression, a,4,5 are the operands while = and + are the operators. Here, + operator returns 9 after adding values 4 and 5. This result will be stored in a using the = operator.

Question: Write the different types of assignment operators.
Answer: Assignment operator is called set equals to operator. It’s symbols is =. It is a binary operator that requires two
operands to perform its operation. This operator is used to store the value in a variable or constant. Consider the
following example:
a=5; In this example, value 5 is stored in variable a.
There are many types of shorthand assignment operators. Following table shows these operators with example:

CBSE-Class-11-Computer-Science-Operators-and-Expressions-Assignment-2

Question: What are Operands?
Answer: Operands are those values or variables on which operators perform their operations. Combination of operatos
and operands is called Expression. Consider the following example of expression:
a + 5
In this example, variable a and value 5 are operands while + operator will be performed on these opearands.

Other Important -Questions

Question: What are Operators? Explain different types of operators.
Answer: Operators are the symbols used to perform specific operations on their operands. According to the no of operands used with the operator, they can be classified into 3 categories:
Unary Operators: These are those operators which require one operand to perform their operation. For example: ++ (increment), –(decrement), ! (not) operators etc.
Binary Operators: These are those operators which require two operands to perform their operation. For
example: a+b, a*b, a>b, a<b etc. Ternary Operator: There is only one ternary operator in C Language. This operator requires three operands to perform its operation. For example:
operand1 ? operand2 : operand3

Question: What are Arithmetic Operators?
Answer: These operators are used to perform arithmetic calculations. There are 5 arithmetic operators in C language. All these operators are binary operators. Each operator require two operands to perform their operation. Following table shows the details of arithmetic operators with example:

CBSE-Class-11-Computer-Science-Operators-and-Expressions-Assignment-3


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

(i) int ch = 20     cout<<++ch << “\n”<< ch<< “\n” ;

(ii) int ch = 20     cout<< ch+1<< “\n”<< ch<< “\n” ;

2. What will be the result of the following two expressions if i =15 initially?

(i) ++i <= 15

(ii) i++ <= 15

3. Write the corresponding C++ expressions for the following mathematical expressions.

(i) e x-x

(ii) (R+S)4

(iii) 2-4y*(p + q)2

(iv) (A+B)2 + (C+D)4

4. Given the value of a, b and c evaluate the following expression

a = 10, b = 5, c = 11

(a >= b) || (!c == b) && (c < a)

5. Determine the output of the following code segment:

a = 2;

b = ++a cout<< a;

cout<< b;

cout<< a++;

cout<< ++a;

6. What is the difference between num = 10 and num= =10 ?

7. What is the output of the following statement?

Int i = 20

cout<< I << i++ << ++i ;

CBSE Class 11 Computer Science Operators And Expressions Assignment

Access the latest Operators And Expressions assignments designed as per the current CBSE syllabus for Class 11. We have included all question types, including MCQs, short answer questions, and long-form problems relating to Operators And Expressions. You can easily download these assignments in PDF format for free. Our expert teachers have carefully looked at previous year exam patterns and have made sure that these questions help you prepare properly for your upcoming school tests.

Benefits of solving Assignments for Operators And Expressions

Practicing these Class 11 Computer Science assignments has many advantages for you:

  • Better Exam Scores: Regular practice will help you to understand Operators And Expressions properly and  you will be able to answer exam questions correctly.
  • Latest Exam Pattern: All questions are aligned as per the latest CBSE sample papers and marking schemes.
  • Huge Variety of Questions: These Operators And Expressions sets include Case Studies, objective questions, and various descriptive problems with answers.
  • Time Management: Solving these Operators And Expressions test papers daily will improve your speed and accuracy.

How to solve Computer Science Operators And Expressions Assignments effectively?

  1. Read the Chapter First: Start with the NCERT book for Class 11 Computer Science before attempting the assignment.
  2. Self-Assessment: Try solving the Operators And Expressions questions by yourself and then check the solutions provided by us.
  3. Use Supporting Material: Refer to our Revision Notes and Class 11 worksheets if you get stuck on any topic.
  4. Track Mistakes: Maintain a notebook for tricky concepts and revise them using our online MCQ tests.

Best Practices for Class 11 Computer Science Preparation

For the best results, solve one assignment for Operators And Expressions on daily basis. Using a timer while practicing will further improve your problem-solving skills and prepare you for the actual CBSE exam.

Where can I download the latest CBSE Class 11 Computer Science Chapter Operators And Expressions assignments?

You can download free PDF assignments for Class 11 Computer Science Chapter Operators And Expressions from StudiesToday.com. These practice sheets have been updated for the 2025-26 session covering all concepts from latest NCERT textbook.

Do these Computer Science Chapter Operators And Expressions assignments include solved questions?

Yes, our teachers have given solutions for all questions in the Class 11 Computer Science Chapter Operators And Expressions assignments. This will help you to understand step-by-step methodology to get full marks in school tests and exams.

Are the assignments for Class 11 Computer Science Chapter Operators And Expressions based on the 2026 exam pattern?

Yes. These assignments are designed as per the latest CBSE syllabus for 2026. We have included huge variety of question formats such as MCQs, Case-study based questions and important diagram-based problems found in Chapter Operators And Expressions.

How can practicing Chapter Operators And Expressions assignments help in Computer Science preparation?

Practicing topicw wise assignments will help Class 11 students understand every sub-topic of Chapter Operators And Expressions. Daily practice will improve speed, accuracy and answering competency-based questions.

Can I download Computer Science Chapter Operators And Expressions assignments for free on mobile?

Yes, all printable assignments for Class 11 Computer Science Chapter Operators And Expressions are available for free download in mobile-friendly PDF format.