You are on page 1of 13

Page |1

Zend PHP 5.3 Certification

200-530

Zend

http://www.certshome.com/200-530-practice-test.html

To purchase Full version of Practice exam click below;

Products:

FOR Zend 200-530 Exam Candidates HTTP://WWW.CERTSHOME.COM/ Offers Two


First is 200-530 Exam Questions And Answers in PDF Format. An Easy to use Product that Contains Real 200-530 Exam Questions. Secondly We have 200-530 Exam Practice Tests.

They also Contain Real 200-530 Exam Questions but in a Self-Assessment Environment. There are Multiple Practice Modes, Reports, you can Check your History as you Take the Test Multiple Times and Many More Features. These Products are Prepared by Cisco Subject Matter Experts, Who know what it Takes to Pass 200-530 Exam. Moreover, We Provide you 100% Surety of Passing 200-530 Exam in First Attempt or We Will give you your Money Back. Both Products Come With Free DEMOS, So go Ahead and Try Yourself The Various Features of the Product.

Page |2

Question: 1 You run the following PHP script: <?php $name = mysql_real_escape_string($_POST["name"]); $password = mysql_real_escape_string($_POST["password"]); ?> What is the use of the mysql_real_escape_string() function in the above script.Each correct answer represents a complete solution. Choose all that apply A. It escapes all special characters from strings $_POST["name"] and $_POST["password"]. B. It can be used as a countermeasure against a SQL injection attack. C. It can be used to mitigate a cross site scripting attack. D. It escapes all special characters from strings $_POST["name"] and $_POST["password"] except ' and ". Answer: A,B Question: 2 You want to enable compression for every Web page of your Website. Which of the following PHP.ini directives can you set to accomplish the task?Each correct answer represents a complete solution. Choose all that apply. A. set_compression = on B. set _compression_level = 9 C. zlib.output_compression_level = 9 D. zlib.output_compression = on Answer: C,D Question: 3 You run the following PHP script: <?php if ( preg_match("/[^a-z589]+/", "AB asdfg589nmGH", $array) ) { print "<pre>\n"; print_r( $array ); print "</pre>\n"; } ?> What will be the output? A. Array ( [0] => 589 ) B. Array (

Page |3

[0] => asdfg589nm ) C. Array ( [0] => AB ) D. Array ( [0] => AB GH ) Answer: C Question: 4 You run the following PHP script: <?php $array1 = array ('a' => 20, 30, 35); $array2 = array ('b' => 20, 35, 30); $array = array_intersect_assoc ($array1, $array2); var_dump ($array); ?> What will be the output? A. array(0) { } B. The script will throw an error message. C. array(3) { ["'a'"]=> int(20) [0]=> int(30) [1]=> int(35) } D. array(1) { ["'a'"]=> int(20)} Answer: A Question: 5 Which of the following functions can you use to mitigate a command injection attack?Each correct answer represents a complete solution. Choose all that apply. A. htmlentities() B. strip_tags() C. escapeshellcmd() D. escapeshellarg() Answer: C,D Question: 6 Which of the following HTML code snippets can be used for the file uploading? A. <form enctype="text/plain" action="index.php" method="post"> B. <form enctype="application/x-www-form-urlencoded" action="index.php" method="post"> C. <form enctype="multipart/form-data" action="index.php" method="post"> D. <form enctype="plain" action="index.php" method="post">

Page |4

Answer: C Question: 7 You have the following code in the welcome.html file: <form action="welcome.php" method="post"> Your Name: <input type="text" name="fname" /> Your Girl Friend Name: <input type="text" name="fname" /> <input type="submit" /> </form> The PHP code of the welcome.php file is as follows: Welcome <?php echo $_POST["fname"];?> and <?php echo $_POST["fname"];?>! What will be the output if you give your name as John and your girlfriend's name as Maria? A. Welcome John and Maria! B. Welcome Maria and John! C. The script will return an error. D. Welcome Maria and Maria! E. Welcome John and John! Answer: D Question: 8 Consider the following PHP script: <?php $a = array( 1 => 'php', 'Hypertext', 'Preprocessor', 'widely used' => array( 'general' => 'purpose', 'scripting' => 'language', 'that' => 'was', 'originally' => array( 5 => 'designed', 9 => 'for', 'Web development', 4 => 'purpose',))); //write code here ?> What should you write here to print the value 'Web development'?
A. Choices not available (But Answer D). Answer: A

Question: 9 John works as a Web site Developer for PHPWEB Inc. He uses the Windows operating system and works on PHP engine 5.0. He develops the following script:

Page |5

<?php gmmktime(0, 0, 0, 1, 1, 1970); ?> What will be the output of the above PHP script in case of countries east of GMT? A. fatal error B. 1 C. -1 D. 0 Answer: C Question: 10 You want to fetch the top level domain (com) from the email john@company.com. Which of the following functions will you use to accomplish the task? A. substr("john@company.com", strpos("john@company.com", ".")); B. eregi("^[a-z0-9\._-]+"."@"."([a-z0-9][a-z0-9-]*[a-z0-9]\.)+"."([a-z]+\.)?"."([a-z]+)$", john@company.com)) C. eregi("john@company.com", "."); D. substr("john@company.com", strpos("john@company.com", ".")+1); Answer: D Question: 11 Consider the following XML file: <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title> SimpleXML Example</title> </head> <body> <h1> Please go <a href="http://www.company.com">http://www.company.com</a> <br/> </h1> </body> </html> Which of the following statements will display the HREF attribute on the anchor tag if the SimpleXML object is $sxml? A. $sxml->body->h1->a->href B. $sxml->h1->a->href C. $sxml->body->h1->a['href'] D. $sxml->body->h1->a<href>

Page |6

Answer: C Question: 12 Consider a string in the following format: a*bcd/a.d You want to perform regular expression in this string; however, you are unable to do this since the string contains special characters. You can make this string PCRE compatible if you convert this string in the following format: a\*bcd\/a\.d Which of the following functions will you use to accomplish the task into a single call? A. preg_quote() B. preg_match() C. expload() D. preg_split() Answer: A Question: 13 Which of the following PHP file handling functions will you use if you want to retrieve only the texts from an HTML file and leave all HTML and PHP tags? A. fgets() B. file_get_contents() C. fgetss() D. file_put_contents() Answer: C Question: 14 You have created a table based on the following data: EmpID NUMBER (5) PRIMARY KEY EmpName VARCHAR2 (35) NOT NULL Salary NUMBER (9, 2) NOT NULL Commission NUMBER (4, 2) ManagerName VARCHAR2 (25) ManagerID NUMBER (5) Now, you want to display the names of employees and their managers, using a self join. Which of the following SQL statements can you use to accomplish this? Each correct answer represents a complete solution. Choose two. A. SELECT e.EmpName, m.ManagerName FROM Employees e SELF JOIN Employees m ON e.EmpID = m.ManagerID; B. SELECT e.EmpName, m.ManagerName FROM Employees e INNER JOIN Employees m ON e.EmpID = m.ManagerID; C. SELECT e.EmpName, m.ManagerName FROM Employees e LEFT OUTER JOIN Employees m ON e.EmpID = m.ManagerID;

Page |7

D. SELECT e.EmpName, m.ManagerName FROM Employees e, Employees m WHERE e.EmpID = m.ManagerID; Answer: B,D Question: 15 Which of the following directives can be used to improve the security while using the shared hosting environment?Each correct answer represents a complete solution. Choose all that apply. A. shared_host B. disable_classes C. safe_mode D. open_basedir E. disable_functions Answer: B,C,D,E Question: 16 You have been given the following code snippet: <?php $string = <<<XML <?xml version="1.0" encoding="ISO-8859-1"?> <email> <to>jenny@company.com</to> <from>john@company.com</from> <heading>Technical issue in Linux OS</heading> <body>There is a technical issue in my Linux system. Please Fix it. </body> </email> XML; <Write code here> ?> Which of the following code snippets will you write to print the XML content? A. $xml = XML_string($string); print_r($xml); B. $xml = simplexml_load_string($string); print_r($xml); C. $xml = load_XML($string); print_r($xml); D. $xml = simplexml_string($string); print_r($xml); Answer: B Question: 17 Consider the following PHP script: 1. <?php

Page |8

2. $charlist = array ( 3. 'a' => 'one', 4. 'b' => 'two', 5. ); 6. *************** 7. ?> What statement will you write at line number 6 instead of ***** to get the output onectwo? A. echo strtok ('acb', $charlist); B. echo strstr ('acb', $charlist); C. echo strtr ('acb', $charlist); D. echo strip_tags('acb', $charlist); Answer: C Question: 18 You run the following PHP script: <?php $array1 = array ("a", "b", "c", "d", "e", "f"); $array2 = array_slice($array1, -3); foreach ( $array2 as $val ) { print "$val "; } ?> What will be the output? A. b c d B. d e f C. c d e D. a b c Answer: B Question: 19 Given a table created as shown below: create table foo (c1 int, c2 int, c3 int, c4 char(10)) If column c1 has a cardinality of 10, column c2 has a cardinality of 5000, and column c3 has a cardinality of 5000000, which of the following indexes would optimize the following statement? Select c1,c2,c3 from foo where c1=100 and c2= 100 and c3 = 100 A. create index foox on foo (c1,c2,c3) B. create index foox on foo (c2,c1,c3) C. create index foox on foo (c3,c2,c1) D. create index foox on foo (c3,c1,c2) Answer: C Question: 20

Page |9

A table named employees is given below:

Which of the following statements would return the employees names, in ascending order, based on their last name and first name? Each correct answer represents a complete solution. Choose all that apply. A. select fname, lname from employees order by lname; B. select fname, lname from employees order by lname asc; C. select fname, lname from employees group by lname; D. select fname, lname from employees order by lname desc; Answer: A,B Question: 21Consider the following code: <?php $x=0; $i; for($i=0;$i<5;$i++) { $x+=$i; } print($x) ?> What will be the value of x? A. 10 B. 9 C. 7 D. 8 Answer: A Question: 22 Which of the following functions will you use to break a string into an array based on a specific pattern? Each correct answer represents a complete solution. Choose all that apply. A. preg_split() B. explode() C. strstr() D. implode() Answer: A,B

P a g e | 10

Question: 23 What will be the output of the following code snippet? <?php $input = array(4, "4", "3", 4, 3, "3", 3, 3, 3, 3, 3, 5, 5, 5, 5, 7, 7, 7, 7); echo count(array_unique($input)); ?> A. 19 B. 6 C. 4 D. The script will throw an error message Answer: C Question: 24 In which of the following ways will you send data from a Web page if you do not know how data is sent? A. $_REQUEST[] B. $_POST[] C. $_GET[] D. $_SEND[] Answer: A Question: 25 Maria writes a query that uses outer join between two tables. Which of the following operators are not allowed in the query? Each correct answer represents a complete solution. Choose two. A. IN B. = C. OR D. AND Answer: A,D Question: 26 You want to create an anonymous function in the middle of a script that will return the square of a given number. Which of the following PHP scripts can you use to accomplish the task? Each correct answer represents a complete solution. Choose two. A. <?php $foo = create_function("$x", "return $x*$x;"); echo $foo(10); ?> B. <?php $foo = create_function('$x', 'return $x*$x;'); echo $foo(10);

P a g e | 11

?> C. <?php $foo = create_function("\$x", "return \$x*\$x;"); echo $foo(10); ?> D. <?php $foo = create_function("$x", "$x*$x;"); echo $foo(10); ?> Answer: B,C Question: 27 You have to select persons whose age is between twenty-five and forty from a database named HumanResource. Which of the following criteria will you use in the query to accomplish the task? A. BETWEEN 25 - 40 B. BETWEEN 25 TO 40 C. BETWEEN 25 AND 40 D. BETWEEN 25 & 40 Answer: C Question: 28 You want to search for such users who have not used any digit in their user names to register to your Website. Which of the following regular expressions will you use to accomplish the task? A. [[:digit:]^] B. [^[:digit:]] C. ^[[:digit]] D. [[:digit:^]] Answer: B Question: 29 Which of the following metacharacters can be used to find a non-word character? A. . B. \W C. \w D. \d Answer: B Question: 30 Fill in the Blank with the appropriate method name. The______is used to import the SimpleXML objects for use with DOM

P a g e | 12

A.The dom_import_simplexml() is used to import the SimpleXML objects for use with DOM. Answer: A

P a g e | 13

CERTSHOME Exam Features:


-

CERTSHOME offers over 3500 Certification exams for professionals. 50000+ Customer feedbacks involved in Product. Average 100% Success Rate. Over 170 Global Certification Vendors Covered. Services of Professional & Certified Experts available via support. Free 90 days updates to match real exam scenarios.
Instant Download Access! No Setup required. Exam History and Progress reports. Verified answers researched by industry experts. Study Material updated on regular basis. Questions / Answers are downloadable in PDF format. Practice / Exam are downloadable in Practice Test Software format. Customize your exam based on your objectives. Self-Assessment features. Guaranteed Success. Fast, helpful support 24x7.

View list of All certification exams offered; http://www.certshome.com/all_certifications.php Download Any Vander Exam DEMO. http://www.certshome.com/all_certifications-2.php Contact Us any Time click below; http://www.certshome.com/contactus.php

AND MANY Others... See Complete List Here........

You might also like