Correct option is B
The correct symbols for Braces/Curly Brackets are (b) {}.
Explanation:
· Braces or Curly Brackets({}) are used in writing, mathematics, and programming.
· They group statements or elements together, especially in coding and mathematical expressions.
· In mathematics, they are used to group elements in a set:
Example: {2, 4, 6, 8} represents a set of even numbers.
· In programming, they are used in many languages like C, Java, and Python to define code blocks:
Example: if (x > 0) { return x; }
Meanings of other options:
· [] (Square Brackets) – Used for additional information or arrays.
· () (Parentheses) – Used for grouping words or mathematical expressions.
· ; (Semicolon) – Used to separate clauses or statements.