Multiple choice technology programming languages 22.) Unix shell scripting does not support floating points directly a) True b) False c) 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.