PHP Quiz - Variables and Constants

PHP Quiz - Variables and Constants

Assessment

Quiz

Other

University

Medium

Created by

Adrian Guinto

Used 7+ times

FREE Resource

Student preview

quiz-placeholder

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What term is use to name a memory location that holds a value in any programming languages?

RAM

Variable

PHP

Script

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What kind of variable that is being declared within a function and can be accessed within a function only?

Global

Local

Static

Constant

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What kind of variable that is being declared outside a function and can be accessed outside the function only?

Global

Local

Static

Constant

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What kind of variable that doesn’t lose its value while declaring it multiple times?

Global

Local

Static

Constant

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct declaration of PHP variable?

@variable_name

$1variable_name

$nameOfTheVariable

$ nameofthevariable

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

TRUE OR FALSE: Is $adrian and $Adrian the same in PHP script language?

TRUE

FALSE

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of the given script?


<?php


$txt = "Hello world!";

$x = 5;

// $y = 10.5;


?>


<div><?php echo $y ?></div>

A. Variable y will display in the browser which is equivalent to 10.5.

B. An error will occur because in the given script the variable y was just declared as a comment.

C. Variable y will display in the browser which is equivalent to 5.

B. An error will occur because in the given script the HTML was not declared before using the <div> tag.

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

Already have an account?