Module 4 -  Different types of Operators

Module 4 - Different types of Operators

Professional Development

5 Qs

quiz-placeholder

Similar activities

насколько ты крутой PHP pocketmine developer

насколько ты крутой PHP pocketmine developer

Professional Development

10 Qs

Quiz Web-Programming #Week6

Quiz Web-Programming #Week6

10th Grade - Professional Development

10 Qs

Server local & WordPress

Server local & WordPress

University - Professional Development

10 Qs

Sains Komputer Tingkatan 5 - 3.3.6 Menggunakan Bahasa

Sains Komputer Tingkatan 5 - 3.3.6 Menggunakan Bahasa

1st Grade - Professional Development

10 Qs

MAMP โปรแกรมจำลองเครื่องแม่ข่ายเว็บ Quiz

MAMP โปรแกรมจำลองเครื่องแม่ข่ายเว็บ Quiz

Professional Development

8 Qs

Inheritance & Abstraction

Inheritance & Abstraction

Professional Development

10 Qs

C++ Is Fun

C++ Is Fun

Professional Development

10 Qs

PHP Tours Meetup #45 La petite histoire d'une fonctionnalité

PHP Tours Meetup #45 La petite histoire d'une fonctionnalité

Professional Development

10 Qs

Module 4 -  Different types of Operators

Module 4 - Different types of Operators

Assessment

Quiz

Computers

Professional Development

Hard

Created by

mic micdeJC

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the result of the expression 7 + 3 * 2 in PHP?

20

17

13

26

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which operator is used to check if two values are equal and of the same data type in PHP?

==

===

=

!=

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the equivalent shorthand for $x = $x + 3; in PHP?

$x += 3;

$x =+ 3;

$x := 3;

$x =- 3;

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the value of $x after the statement $x = 5; $x++; in PHP?

5

6

10

4

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How is the ternary operator written in PHP?

x ? y : z

x : y ? z

x : y : z

x ? y ? z