Multiple choice technology programming languages

22.) Unix shell scripting does not support floating points directly

  1. a) True

  2. b) False

  3. c)

  4. d)

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Traditional Unix shell scripting (sh, bash) does not natively support floating-point arithmetic. Operations like 1.5 + 2.3 require external tools like bc, awk, or zsh's floating-point support. Only integer arithmetic is built-in.