What will be the output of the following PHP code ?
<?php
$i = 0;
for ($i)
{
print $i;
}
?>
Web-II-Loop and Function
Quiz
•
Computers
•
University
•
Hard
Tamal Dey
Used 32+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What will be the output of the following PHP code ?
<?php
$i = 0;
for ($i)
{
print $i;
}
?>
0
infinite loop
no output
error
2.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What will be the output of the following PHP code ?
<?php
for ($x = 1; $x < 10;++$x)
{
print "*\t";
}
?>
**********
*********
***********
infinite loop
3.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What will be the output of the following PHP code ?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
123456789101112
12345678910
1234567891011
infinite loop
4.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What will be the output of the following PHP code ?
<?php
$x;
for ($x = -3; $x < -5; ++$x)
{
print ++$x;
}
?>
-3-4-5
-3-4
no output
infinite loop
5.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What will be the output of the following PHP code ?
<?php
for ($x = 1; $x < 10; $x++)
for ($y = 1; $y < 5; $y++)
print "Hello";
?>
Hello....36 times
Hello....45 times
Hello....50 times
Hello....40 times
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What will happen in this function call?
<?php
function calc($price, $tax)
{ $total = $price + $tax;
}
$pricetag = 15;
$taxtag = 3;
calc($pricetag, $taxtag);
?>
Type Hinting
Default Argument Value
Call By Value
Call By Reference
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What will be the output of the following PHP code?
<?php
function calc($price, $tax="")
{
$total = $price + ($price * $tax);
echo "$total";
}
calc(42);
?>
error
0
42
84
10 questions
Python Sets
Quiz
•
University
6 questions
sample qizz
Quiz
•
University
15 questions
Python Quiz Ver- 1.3
Quiz
•
University
10 questions
Unit 2 Python
Quiz
•
University
15 questions
Java Quiz based on array
Quiz
•
University
10 questions
Python Control Statements
Quiz
•
University
15 questions
Coding and Debugging
Quiz
•
University
10 questions
Java Programming Basics
Quiz
•
University
15 questions
Multiplication Facts
Quiz
•
4th Grade
20 questions
Math Review - Grade 6
Quiz
•
6th Grade
20 questions
math review
Quiz
•
4th Grade
5 questions
capitalization in sentences
Quiz
•
5th - 8th Grade
10 questions
Juneteenth History and Significance
Interactive video
•
5th - 8th Grade
15 questions
Adding and Subtracting Fractions
Quiz
•
5th Grade
10 questions
R2H Day One Internship Expectation Review Guidelines
Quiz
•
Professional Development
12 questions
Dividing Fractions
Quiz
•
6th Grade