Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 388 Bytes

0335.md

File metadata and controls

20 lines (16 loc) · 388 Bytes

What is the output of the following script?

$number = 100;
echo $number < 10 ? "a" : ($number > 100 ? "b" : "c");
  • A) c
  • B) Syntax Error
  • C) a
  • D) b
Answer

Answer: A