Discuss Forum
1. C ভাষায় কে কোন ধরনের অপারেটর অক্ষর লেখা সম্ভব?
- A. Arithmetic
- B. Arithmetic
- C. Arithmetic
- D. Arithmetic
Answer: Option C
Explanation:
C ভাষায় সব ধরনের অপারেটর অক্ষর লেখা সম্ভব: Arithmetic, Relational, Logical, এবং Assignment.
Explanation:
Explanation:
- Arithmetic Operators: These are used for performing mathematical operations like addition (+), subtraction (-), multiplication (*), and division (/).
- Relational Operators: These are used to compare values and return a boolean result (true or false) based on the comparison. Examples include less than (<), greater than (>), equal to (==), not equal to (!=), less than or equal to (<=), and greater than or equal to (>=).
- Logical Operators: These are used to combine logical conditions and return a boolean result. Examples include AND (&&), OR (||), and NOT (!).
- Assignment Operators: These are used to assign values to variables. The most common assignment operator is the equal sign (=). However, C also supports compound assignment operators like +=, -=, *=, /=, and &=.
Post your comments here: