Free 200-550 Exam Braindumps (page: 8)

Page 7 of 56

What would be the output of the following code?
namespace MyFramework\DB;
class MyClass {
static function myName() {
return __METHOD__;
}
}
print MyClass::myName();

  1. MyFramework\DB\myName
  2. MyFramework\DB\MyClass\myName
  3. MyFramework\DB\MyClass::myName
  4. MyClass::myName

Answer(s): C



Which of the following methods are available to limit the amount of resources available to PHP through php.ini? (Choose 2)

  1. Limit the amount of memory a script can consume
  2. Limit the total amount of memory PHP uses on the entire server
  3. Limit the maximum execution time of a script
  4. Limit the maximum number of concurrent PHP processes
  5. Limit the maximum number of concurrent PHP threads

Answer(s): A,C



Consider the following two files. When you run test.php, what would the output look like?
test.php:
include "MyString.php";
print ", ";
print strlen("Hello world!");
MyString.php:
namespace MyFramework\String;
function strlen($str)
{
return \strlen($str)*2; // return double the string length
}
print strlen("Hello world!")

  1. 12, 12
  2. 12, 24
  3. 24, 12
  4. 24, 24
  5. PHP Fatal error: Cannot redeclare strlen()

Answer(s): C



Which line of code can be used to replace the INSERT comment in order to output "hello"?
class C {
public $ello = 'ello';
public $c;
public $m;
function __construct($y) {
$this->c = static function($f) {
// INSERT LINE OF CODE HERE
};
$this->m = function() {
return "h";
};
}
}
$x = new C("h");
$f = $x->c;
echo $f($x->m);

  1. return $this->m() . "ello";
  2. return $f() . "ello";
  3. return "h". $this->ello;
  4. return $y . "ello";

Answer(s): B






Post your Comments and Discuss Zend 200-550 exam with other Community members:

200-550 Discussions & Posts