Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 374 Bytes

0045.md

File metadata and controls

20 lines (17 loc) · 374 Bytes

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