KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

Assertion (A): Operators in Python are symbols that perform specific operations on operands.

Reason (R): Python provides various types of operators such as arithmetic, relational, and logical operators to perform different tasks in a program.

  1. Both (A) and (R) are true and (R) is a correct explanation of (A).
  2. Both (A) and (R) are true and (R) is not a correct explanation of (A).
  3. (A) is true and (R) is false.
  4. (A) is false and (R) is true.

Getting Started

2 Likes

Answer

Both (A) and (R) are true and (R) is a correct explanation of (A).

Reason — In Python, operators are special symbols used to perform operations on operands. Python provides different types of operators, such as arithmetic operators, relational operators, and logical operators, each used to perform specific tasks in a program.

Answered By

3 Likes


Related Questions