Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 400 Bytes

0727.md

File metadata and controls

22 lines (18 loc) · 400 Bytes

What happens when you run the script below ?

if(-1)
    echo 'TRUE';
else
    echo 'FALSE';
  • A) The script echoes: "TRUE"
  • B) The script echoes: "FALSE"
  • C) Syntax Error
  • D) x
Answer

Answer: A