Web-II-Loop and Function

Web-II-Loop and Function

University

10 Qs

quiz-placeholder

Similar activities

Jaringan Dasar

Jaringan Dasar

University

10 Qs

HTML DOJO 1

HTML DOJO 1

University

10 Qs

KUIS MODUL 1 SIL 2022 - Pengembangan Sistem Informasi

KUIS MODUL 1 SIL 2022 - Pengembangan Sistem Informasi

University

10 Qs

Tin học 10 lớp 10A5 Long Phú

Tin học 10 lớp 10A5 Long Phú

University

10 Qs

Chapter 3 Exploring Linux Filesystems

Chapter 3 Exploring Linux Filesystems

11th Grade - University

10 Qs

Revision Gr2-2025

Revision Gr2-2025

3rd Grade - University

12 Qs

BÀI 14- THUẬT TOÁN TÌM KIẾM TUẦN TỰ

BÀI 14- THUẬT TOÁN TÌM KIẾM TUẦN TỰ

6th Grade - University

14 Qs

Pengantar Coding

Pengantar Coding

University

10 Qs

Web-II-Loop and Function

Web-II-Loop and Function

Assessment

Quiz

Computers

University

Hard

Created by

Tamal Dey

Used 32+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?