placeholder image to represent content

PHP Conditional Statements

Quiz by Sudha Krishnan

Our brand new solo games combine with your quiz, on the same screen

Correct quiz answers unlock more play!

New Quizalize solo game modes
10 questions
Show answers
  • Q1
    What will be the output of the following PHP code? <?php $x if($x) print “hi”; else print “how are you”; ?>
    error
    how are you
    hi
    hello
    30s
  • Q2
    What will be the output of the following PHP code ? <?php $x=0; if( $x++) print “hi”; else print “how are you”; ?>
    hi
    error
    how are you
    $x
    30s
  • Q3
    What will be the output of the following PHP code ? <?php $x if($x==0) print “hi”; else print “how are you”; print “hello” ?>
    how are you hello
    how are you
    no output
    hihello
    30s
  • Q4
    Statement which is used to make choice between two options and only option is to be performed is written as
    else statement
    else one statement
    if else statement
    if statement
    30s
  • Q5
    What will be the output of the following PHP code ? <?php $a=””; if($a) print “all”; if else print “some”; ?>
    error
    all
    some
    allsome
    30s
  • Q6
    What will be the output of the following PHP code ? <?php $a=””; if($a) print “all”; else print “some”; ?>
    error
    some
    no output
    all
    30s
  • Q7
    What will be the output of the following PHP code ? <?php $x=10; $y=20; If($x>$y + $y != 3) print “hi” ; else print “how are u”; ?>
    no output
    how are you
    hi
    error
    30s
  • Q8
    What will be the output of the following PHP code ? <?php $x=10; $y=20; If($x>$y && 1||1) print “hi” ; else print “how are u”; ?>
    error
    hi
    how are you
    no output
    30s
  • Q9
    What will be the output of the following PHP code ? <?php if(-100) print “hi”; else print “how are you”; ?>
    error
    how are you
    no output
    hi
    30s
  • Q10
    ______ statements are useful for writing decision making logic.
    Sequential
    Comparative
    Iterative
    Conditional
    30s

Teachers give this quiz to your class