Q:

What will be the output of the following PHP code ?

belongs to collection: CONSTANTS AND OPERATORS IN PHP MCQ

0

What will be the output of the following PHP code ?

<?php
define('GOOD_OCTAL', 0700);
define('BAD_OCTAL', 0600);
print GOOD_OCTAL;
print '<br>';
print BAD_OCTAL; 
?>

  1. 448
    384
  2. 0700 0800
  3. ERROR
  4. No output

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

 (a).448
384

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

CONSTANTS AND OPERATORS IN PHP MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
What will be the output of the following PHP code ... >>
<< What will be the output of the following PHP code ...