Spring Sale Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: buysanta

Exact2Pass Menu

Zend Certified PHP Engineer

Last Update 6 hours ago Total Questions : 223

The Zend Certified PHP Engineer content is now fully updated, with all current exam questions added 6 hours ago. Deciding to include 200-550 practice exam questions in your study plan goes far beyond basic test preparation.

You'll find that our 200-550 exam questions frequently feature detailed scenarios and practical problem-solving exercises that directly mirror industry challenges. Engaging with these 200-550 sample sets allows you to effectively manage your time and pace yourself, giving you the ability to finish any Zend Certified PHP Engineer practice test comfortably within the allotted time.

Question # 61

Transactions are used to...

A.

guarantee high performance

B.

secure data consistency

C.

secure access to the database

D.

reduce the database server overhead

E.

reduce code size in PHP

Question # 62

Which of the following is used to find all PHP files under a certain directory?

A.

PHPIterator

B.

RecursiveTreeIterator

C.

RecursiveDirectoryIterator

D.

SplTempFileObject

Question # 63

Which of the following code snippets is correct? (Choose 2)

A.

interface Drawable {

abstract function draw();

}

B.

interface Point {

function getX();

function getY();

}

C.

interface Line extends Point {

function getX2();

function getY2();

}

D.

interface Circle implements Point {

function getRadius();

}

Question # 64

What is the output of the following code?

class Number {

private $v;

private static $sv = 10;

public function __construct($v) { $this- > v = $v; }

public function mul() {

return static function ($x) {

return isset($this) ? $this- > v*$x : self::$sv*$x;

};

}

}

$one = new Number(1);

$two = new Number(2);

$double = $two- > mul();

$x = Closure::bind($double, null, 'Number');

echo $x(5);

A.

5

B.

10

C.

50

D.

Fatal error

Question # 65

When a query that is supposed to affect rows is executed as part of a transaction, and reports no affected rows, it could mean that: (Choose 2)

A.

The transaction failed

B.

The transaction affected no lines

C.

The transaction was rolled back

D.

The transaction was committed without error

Question # 66

What can prevent PHP from being able to open a file on the hard drive (Choose 2)?

A.

File system permissions

B.

File is outside of open_basedir

C.

File is inside the /tmp directory.

D.

PHP is running in CGI mode.

Go to page: