200-530 Exam Questions
408 real 200-530 exam questions with expert-verified answers and explanations. Page 2 of 9.
- Question #56
Your application needs to handle file uploads performed with HTTP PUT. How can you retrieve this data?
- Question #58
When a transaction reports no affected rows, it means that: (Choose 2)
- Question #59
Which of the following superglobals does not contain data from the client?
- Question #60
Which of the following statements explains the difference between print() and echo()?
- Question #61
Given a JSON-encoded string, which code sample correctly indicates how to decode the string to native PHP values?
- Question #62
PHP's array functions such as array_values() can be used on an object is the oject....
- Question #63
What is the result of the following code? Zend 200-530 Exam
- Question #65
What is the name of the PHP function used to automatically load non-yet defined classes?
- Question #66
Given a php.ini setting of: default_charset = utf-8 What will the following code print in the browser?
- Question #67
How many elements does the $matches array contain after the following function call is performed? preg_match('/^(\d{1,2}([a-z]+))(?:\s*)\S+ (?=200[0-9])/', '21st March 2006', $matc...
- Question #68
Which is the most efficient way to determine if a key is present in an array, assuming the array has no NULL values?
- Question #69
Some databases support the LIMIT clause. ft is a method to ensure that
- Question #70
Which of the following functions is the best choice to retrieve the fingerprint of a string?
- Question #71
What PHP function can be used to remove a local file?
- Question #72
What DOM method is used to load HTML files?
- Question #73
Which of the following functions can help prevent session fixation vulnerabilities?
- Question #74
How can you determine if magic_quotes_gpc is enabled? (Choose 2)
- Question #75
You want to present the following formatted number: "999.000.000,00". Which function call is correct?
- Question #76
What function returns the filename component of the file's path:
- Question #77
Which of the following are valid SoapClient calls? (Choose 2)
- Question #78
After performing the following operations: $a = array('a', 'b', 'c'); $a = array_keys(array_flip($a)); What will be the value of $a?
- Question #79
Which of the following statements about exceptions are correct? (Choose 2)
- Question #80
What will be the output of the following PHP script? <?php include("xml.inc"); if (!$dom = domxml_open_mem($xmlstr)) { echo "Error while parsing the XML document\n"; exit; } $a = $...
- Question #81
An unbuffered query will: (Choose 2)
- Question #82
What parsing methodology is utilized by the SimpleXML extension?
- Question #83
Which of the following is NOT possible using reflection?
- Question #84
Given the following two functions, what statement is correct? function dynamicNew($name) { return new $name; } function reflectionNew($name) { $r = new ReflectionClass($name); retu...
- Question #85
Which string will be returned by the following function call? $test = '/etc/conf.d/wireless'; substr($test, strrpos($test, '/'));
- Question #86
Which of the following statements about Reflection are correct? (Choose 2)
- Question #87
How can a SimpleXML object be converted to a DOM object?
- Question #88
You want to parse a URL into its single parts. Which function do you choose?
- Question #89
Which is the most secure approach for handling dynamic data in SQL queries?
- Question #90
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: <?php gmmktime(0, 0, 0, 1, 1,...
- Question #91
Which of the following did not result in an output error in PHP 4 but does in PHP 5?
- Question #92
How many elements does the array $matches from the following code contain? 1 <?php 2 $str = "The cat sat on the roof of their house."; 4 $matches = preg_split("/(the)/i", $str, -1,...
- Question #93
What function allows resizing of PHP's file write buffer?
- Question #94
Which of the following functions are used to escape data within the context of HTML? (Choose 2)
- Question #95
After running this sort, what will be the value of $b? $a = array('_!', 'def', 0); $b = sort($a);
- Question #96
Which of the following is an invalid DOM save method?
- Question #97
Can a private static member be accessed from a public static method of the same class? Zend 200-530 Exam
- Question #98
Which of the following is NOT a valid function declaration?
- Question #99
What is the purpose of the 4th argument to the file_get_contents() function?
- Question #100
Which of the following commands will append data to an existing file?
- Question #101
Consider the following PHP code snippet: $who = "World"; echo <<<TEXT "Hello $who"
- Question #102
Zend 200-530 Exam Which of the following XML declarations is NOT valid?
- Question #103
Which of the following configuration directives increase the risk of remote code injection when enabled? (Choose 2)
- Question #104
Which of the following is correct? (Choose 2) 1) A class can extend more than one class. 2) A class can implement more than one class. 3) A class can extend more than one interface...
- Question #105
Which of the following statements is NOT correct?
- Question #106
Zend 200-530 Exam What does the __FILE__ constant contain?
- Question #107
What will the following function call return?