Correct Answer:
B. Logical
In computing and mathematics, operations are categorized by their function. The 'Greater Than' sign (>) is used to compare two values. This comparison yields a Boolean result (true or false), indicating whether the condition is met.
- 'Logical' is the correct classification. Logical or relational operators perform comparisons between values, resulting in a true or false outcome, which is a fundamental concept in programming and conditional logic.
- 'Arithmetic' operations involve mathematical calculations like addition, subtraction, multiplication, and division.
- 'Conditional' refers to statements (like if-else) that execute code based on a condition, but the sign itself is the operator that defines the condition, not the condition itself.
- 'Greater' describes the comparison being made, not the type of operation.