Friday, December 10, 2010

Free PHP Test for Zend Certification




    Update (04-01-2011) : The test is been take now.

Hello guys,

I have purchased online practice exam voucher  before appearing for zend certification and I have some unsed test which I am sharing only 3 test are remaining so which ever gets first would get the test.


Go to following URL :
PHP Test


Best of luck !

Wednesday, February 10, 2010

What is displayed when the following script is executed?

define(myvalue, "10");
$myarray[10] = "Dog";
$myarray[] = "Human";
$myarray['myvalue'] = "Cat";
$myarray["Dog"] = "Cat";
print "The value is: ";
print $myarray[myvalue]."\n";

a) The value is: Dog
b) The value is: Cat
c) The value is: Human
d) The value is: 10
e) Dog

post comments to answer

Sunday, December 13, 2009

Which of the following is not valid PHP code?

Options :

(a) $_10
(b) ${“MyVar”}
(c) &$something
(d) $10_somethings
(e) $aVaR

comments to answer

Friday, December 11, 2009

Choose the selection that best matches the following statements:

PHP is a _____ scripting language based on the ____ engine. It is primarily used to
develop dynamic _____ content, although it can be used to generate ____ documents
(among others) as well.

a) Dynamic, PHP, Database, HTML
b) Embedded, Zend, HTML, XML
c) Perl-based, PHP, Web, Static
d) Embedded, Zend, Docbook, MySQL
e) Zend-based, PHP, Image, HTML

comments to answer

Saturday, December 5, 2009

Which two internal PHP interfaces provide functionality which allow you to treat an object like an array?

Options (select 2) :

a) iteration.
b) arrayaccess.
c) objectarray.
d) iterator.
e) array.

Comments to answer