Question: Which statement checks whether the variable num is greater than five?

  1. `(( \$num -gt 5 ))`
  2. `[[$num -lt 5]]`
  3. `(( \$num > 5 ))`
  4. `\$num > 5`

Answer: The correct answer of the above question is Option C:`(( \$num > 5 ))`