<<< Previous question <<< Question ID#0045.md >>> Next question >>>
You run the following PHP script:
$a = 12;
$b = 11;
$a > $b ? print($a) : print($b);
- A) 12
- B) 11
- C) 0
- D) The script will throw an error.
Answer
Answer: A
You run the following PHP script:
$a = 12;
$b = 11;
$a > $b ? print($a) : print($b);
Answer: A