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
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Coding club Summit Online Quiz

Quiz
•
University
10 questions
C#.net test 1

Quiz
•
University
11 questions
Quiz 5

Quiz
•
University
15 questions
Day 1 - Deployment ...

Quiz
•
University
15 questions
CSE 102 Exam 2 Practice

Quiz
•
University
15 questions
QUIZIZZ MODUL 4 BENGPRO 2 4601

Quiz
•
University
15 questions
Quiz -3: JavaScript & PHP (AIML)/CC/1st Year

Quiz
•
University
10 questions
Python - Functions

Quiz
•
University
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade