Home

What is the correct answer?

4

What will be the output of the following PHP code ?
 <?php  $color = red;
echo $color . red ;
?>

A. red red

B. red

C. error

D. nothing

Correct Answer :

C. error


Use of undefined constant red.

Related Questions

What will be the output of the following PHP code ? <?php $i = 2;while… What will be the output of the following PHP code ? <?php define(NEW_GOOD_NAME_CONSTANT,… If the directive session.cookie_lifetime is set to 3600, the cookie will… If session.use_cookie is set to 0, this results in use of.. Which one of the following is the very first task executed by a session… Which one of the following function is useful for producing a timestamp… What will be the output of the following PHP code ? <?php /*echo Hello… What is the default time(in seconds) for which session data is considered… What will be the output of the following PHP code ? <?php $i = 0;while… Which directive determines how the session information will be stored? What will be the output of the following PHP code ? <?php class myObject… What will be the output of the following PHP code ? <?php define(GREETING,… What will be the output of the following PHP code ? <?php $i = 5;while… What will be the output of the following PHP code ? <?php $color1 =… What will be the output of the following PHP code? <?php $a = array(A,… What will be the output of the following PHP code ? <?php define('GOOD_OCTAL',… What will be the output of the following code? If say date is 22/06/2013.… What will be the output of the following PHP code? <?php $cars = array(Volvo,… What will be the output of the following PHP code? <?php $a1 = array(a=>red,… What will be the output of the following PHP code ? <?php $i = ;while… What is the default number of seconds that cached session pages are made… Which of the following is/are a PHP code editor?i) Notepadii) Notepad++iii)… What will be the output of the following PHP code ? <?php $i = 5;while… Which one of the following format parameter can be used to identify timezone? PHP files have a default file extension of.. What will be the output of the following PHP code? <?php $fname = array(Peter,… What will be the output of the following code?<?php $foo = 'Bob';… Neglecting to set which of the following cookie will result in the cookies… What will be the output of the following PHP code ? <?php $color1 =… What will be the output of the following PHP code ? <?php $color =…