Q121
Open question<?php
b = -7;$c =0;
a && ++c;
print a;
?>
Select an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
143
Questions
7/8
Page
Pick an option on a question to see the right answer and solution.
Q121
Open question<?php
b = -7;$c =0;
a && ++c;
print a;
?>
Select an option to see the answer and solution.
Q122
Open question<?php
$var1 = 3;
print var;
?>
Select an option to see the answer and solution.
Q123
Open question<?php
$var1 = 3;
print ++$var++;
?>
Select an option to see the answer and solution.
Q124
Open question<?php
j = 1; $k = 2;
print !((k) < (k));
?>
Select an option to see the answer and solution.
Q125
Open question<?php
j = 1;$k = 2;
print !(( + + j) > (k));
?>
Select an option to see the answer and solution.
Q126
Open question<?php
j = 1;$k = 2;
print (( + + j) >! (k));
?>
Select an option to see the answer and solution.
Q127
Open question<?php
$a = 0x6db7;
print $a<<6;
?>
Select an option to see the answer and solution.
Q128
Open question<?php
$a = 'a' ;
print $a * 2;
?>
Select an option to see the answer and solution.
Q129
Open question<?php
$a = '4' ;
print + + $a;
?>
Select an option to see the answer and solution.
Q130
Open question<?php
$a = '12345';
print "qwe{$a}rty";
?>
Select an option to see the answer and solution.
Q131
Open question<?php
$a = '12345';
print "qwe".$a."rty";
?>
Select an option to see the answer and solution.
Q132
Open question<?php
$a = '12345';
echo 'qwe{$a}rty';
?>
Select an option to see the answer and solution.
Q133
Open question<?php
$a = '12345';
echo "qwe$arty";
?>
Select an option to see the answer and solution.
Q134
Open questionSelect an option to see the answer and solution.
Q135
Open questionSelect an option to see the answer and solution.
Q136
Open questionPrint 17 % 3;Select an option to see the answer and solution.
Q137
Open questionSelect an option to see the answer and solution.
Q138
Open question1) 3+4*2
2) (3+4)*2Select an option to see the answer and solution.
Q139
Open questionSelect an option to see the answer and solution.
Q140
Open questionSelect an option to see the answer and solution.