MIDTERM-QUIZ3

MIDTERM-QUIZ3

University

30 Qs

quiz-placeholder

Similar activities

TRẮC NGHIỆM TIN 4 BÀI 2: GÕ PHÍM ĐÚNG CÁCH

TRẮC NGHIỆM TIN 4 BÀI 2: GÕ PHÍM ĐÚNG CÁCH

5th Grade - University

25 Qs

Pag-ahon

Pag-ahon

University

25 Qs

Analysis Algorithms Introduction

Analysis Algorithms Introduction

University

26 Qs

CCC30 - Chapter 8 - Digital Financial Services

CCC30 - Chapter 8 - Digital Financial Services

University

25 Qs

Quiz TRM-1B #materi2-6

Quiz TRM-1B #materi2-6

University

25 Qs

IT 104A Quiz - Module 3

IT 104A Quiz - Module 3

University

25 Qs

Train Brain

Train Brain

University

25 Qs

Adapter Cards

Adapter Cards

University

30 Qs

MIDTERM-QUIZ3

MIDTERM-QUIZ3

Assessment

Quiz

Computers

University

Practice Problem

Medium

Created by

MARY GRACE VENTURA

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

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

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the return statement in PHP functions?

Display content on the browser

Transfer control to another function

Stop script execution

Send a value back to the calling code

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is used to make sure a variable retains its value between function calls?

global

return

static

local

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

function example() {

global $x;

$x = 100;}

$x = 50;

example();

echo $x;

50

100

Error

Nothing

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following uses a static variable correctly?
function example() {

static $x = 0; $x++;

echo $x;}

example(); example();

1 1

1 2

2

0 1

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be printed by this code?
function showResult($x) {

return $x + 10;

}

$result = showResult(5);

echo $result;

5

10

15

$result

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to define a function in PHP?

function myFunction[] {}

def myFunction() {}

function myFunction() {}

void myFunction()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens if you define a function with the same name twice?
function greet() {

echo "Hi!";}

function greet() {

echo "Hello!";}

Outputs both Hi! and Hello!

The second function overrides the first

Error: Cannot redeclare function

No output

Access all questions and much more by creating a free account

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

Already have an account?