Module 2 - Short Quiz

Module 2 - Short Quiz

University

18 Qs

quiz-placeholder

Similar activities

PHP Learning Quiz 1

PHP Learning Quiz 1

12th Grade - University

15 Qs

Python

Python

University

13 Qs

Java Programming

Java Programming

University

20 Qs

Post-Test AJAX - PHP

Post-Test AJAX - PHP

University

15 Qs

HTML Tags

HTML Tags

University

16 Qs

Kuis Teori Pemrograman Web

Kuis Teori Pemrograman Web

University

20 Qs

Java Operators

Java Operators

University

14 Qs

Operator dan Kontrol Struktur PHP

Operator dan Kontrol Struktur PHP

2nd Grade - University

15 Qs

Module 2 - Short Quiz

Module 2 - Short Quiz

Assessment

Quiz

Computers

University

Hard

Created by

Vilchor Perdido

Used 1+ times

FREE Resource

18 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Given the expression:


$_end_result = (3 % 3) ** 0;

What are the operators?

=, %, and **

( ), % and **

( ) and **

=, ( ), %, and **

% only

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Comparison and Arithmetic operators are examples of what type of PHP category form?

Binary operator

Unary operator

Ternary operator

Both Unary and Binary

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Given the equation:


$_end_result = (10 % 3) ** 0;

What is the value of $_end_result?

1

0

3

Math error or undefined

4.

FILL IN THE BLANK QUESTION

20 sec • 1 pt

Given the equation:


$kilometer = 1024 / 1000;

What do you call the part of the equation indicating the numbers 1024 and 1000?

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Given the expression:


$xyz = $xyz / 13;

How do you write in shorthand form?

$xyz /= 13

$xyz =/ 13

$xyz / 13

$xyz = 13

6.

MULTIPLE CHOICE QUESTION

2 mins • 2 pts

Given the PHP code snippet:


$a = 22; $b = 9; $c = "13";
$d = $a - $b;

$xyz = ($d === $c);

What is the value of $xyz?

False

True

-1

1

0

7.

FILL IN THE BLANK QUESTION

3 mins • 2 pts

Given the PHP code snippet:


$a = 32; $b = 8;
$xyz = (($a / $b) != (2 * 2)) xor (($b % 10) <= ($a / 4));

What is the value of $xyz?

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?