• HOME
  • QUIZ
  • CONTACT US
EXAMIANS
  • COMPUTER
  • CURRENT AFFAIRS
  • ENGINEERING
    • Chemical Engineering
    • Civil Engineering
    • Computer Engineering
    • Electrical Engineering
    • Mechanical Engineering
  • ENGLISH GRAMMAR
  • GK
  • GUJARATI MCQ

PHP OPERATORS AND EXPRESSIONS

PHP Operators and Expressions
What will be the output of the following PHP code ?
$auth = 1;
$status = 1;
if ($result = (($auth == 1) && ($status != 0))) {
print "result is $result";
}

no output
error
result is true
result is 1

ANSWER DOWNLOAD EXAMIANS APP

PHP Operators and Expressions
What will be the output of the following PHP code ?
$i = 0;
while ($i = 10) {
print "hi";
}
print "hello";

hihello
infinite loop
hello
error

ANSWER DOWNLOAD EXAMIANS APP

PHP Operators and Expressions
What will be the output of the following PHP code ?
$i = "";
while ($i = 10) {
print "hi";
}
print "hello";

hihello
hello
error
infinite loop

ANSWER DOWNLOAD EXAMIANS APP

PHP Operators and Expressions
What will be the output of the following PHP code ?
$i = 5;
while (--$i > 0) {
$i++;
print $i;
print "hello";
}

error
5hello5hello5hello5hello5hello…..infinite
4hello4hello4hello4hello4hello…..infinite
no output

ANSWER DOWNLOAD EXAMIANS APP

PHP Operators and Expressions
What will be the output of the following PHP code ?
$i = 5;
while (--$i > 0 && ++$i) {
print $i;
}

5
555555555…infinitely
error
54321

ANSWER DOWNLOAD EXAMIANS APP
  • «
  • 1
  • ...
  • 15
  • 16
  • 17
  • 18
  • 19
  • ...
  • 25
  • »

GO TO PAGE

DOWNLOAD APP

  • APPLE
    from app store
  • ANDROID
    from play store

SEARCH

LOGIN HERE


  • GOOGLE

FIND US

  • 1.70K
    FOLLOW US
  • EXAMIANSSTUDY FOR YOUR DREAMS.
  • SUPPORT :SUPPORT EMAIL ACCOUNT : examians@yahoo.com

OTHER WEBSITES

  • GUJARATI MCQ
  • ACCOUNTIANS

QUICK LINKS

  • HOME
  • QUIZ
  • PRIVACY POLICY
  • DISCLAIMER
  • TERMS & CONDITIONS
  • CONTACT US
↑