Vous pouvez télécharger le démo gratuit pour prendre un essai. Vous aurez plus confiance sur Pass4Test. N'hésitez plus à choisir la Q&A Zend-Technologies 200-500 comme votre guide d'étude.
Est-ce que vous vous souciez encore pour passer le test Zend-Technologies 200-500? Pourquoi pas choisir la formation en Internet dans une société de l'informatique. Un bon choix de l'outil formation peut résoudre le problème de prendre grande quantité de connaissances demandées par le test Zend-Technologies 200-500, et vous permet de préparer mieux avant le test. Les experts de Pass4Test travaillent avec tous efforts à produire une bonne Q&A ciblée au test Zend-Technologies 200-500. La Q&A est un bon choix pour vous. Vous pouvez télécharger le démo grantuit tout d'abord en Internet.
Vous pouvez télécharger tout d'abord une partie de Q&A Certification Zend-Technologies 200-500 pour tester si Pass4Test est vraiment professionnel. Nous pouvons vous aider à réussir 100% le test Zend-Technologies 200-500. Si malheureusement, vous ratez le test, votre argent sera 100% rendu.
Peut-être vous voyez les guides d'études similaires pour le test Zend-Technologies 200-500, mais nous avons la confiance que vous allez nous choisir finalement grâce à notre gravité d'état dans cette industrie et notre profession. Pass4Test se contribue à amérioler votre carrière. Vous saurez que vous êtes bien préparé à passer le test Zend-Technologies 200-500 lorsque vous choisissez la Q&A de Pass4Test. De plus, un an de service gratuit en ligne après vendre est aussi disponible pour vous.
Code d'Examen: 200-500
Nom d'Examen: Zend-Technologies (Zend PHP 5 Certification)
Questions et réponses: 219 Q&As
Ajoutez le produit de Pass4Test au panier, vous pouvez participer le test avec une 100% confiance. Bénéficiez du succès de test Zend-Technologies 200-500 par une seule fois, vous n'aurez pas aucune raison à refuser.
200-500 Démo gratuit à télécharger: http://www.pass4test.fr/200-500.html
NO.1 Which of the following statements is NOT true?
a) Class constants are public
b) Class constants are being inherited
c) Class constants can omit initialization (default to NULL)
d) Class constants can be initialized by consts
A. a)
B. b)
C. c)
D. d)
Answer: C
Zend-Technologies examen 200-500 examen 200-500 examen certification 200-500 200-500
NO.2 How many times will the function counter() be executed in the following code?
function counter($start, &$stop)
{
if ($stop > $start)
{
return;
}
counter($start--, ++$stop);
}
$start = 5;
$stop = 2;
counter($start, $stop);
A. 3
B. 4
C. 5
D. 6
Answer: C
Zend-Technologies 200-500 examen 200-500
NO.3 Which of the following statements is correct?
A. Interfaces can extend only one interface
B. Interfaces can extend more than one interface
C. Interfaces can inherit a method from different interfaces
D. Interfaces can redeclare inherited methods
Answer: B
Zend-Technologies examen certification 200-500 200-500 200-500 200-500
NO.4 What DOMElement method should be used to check for availability of a non-namespaced attribute?
A. getAttributeNS()
B. getAttribute()
C. hasAttribute()
D. hasAttributeNS()
Answer: C
Zend-Technologies 200-500 200-500 examen 200-500 200-500 examen
NO.5 Which parts of the text are matched in the following regular expression?
1 <?php
2 $text = <<<EOT
3 The big bang bonged under the bung.
4 EOT;
5
6 preg_match_all('@b.n?g@', $text, $matches);
7 ?>
A. bang bong bung
B. bang bonged bung
C. big bang bong bung
D. big bang bung
Answer: C
Zend-Technologies 200-500 certification 200-500
NO.6 What is the output of the following code?
<code>
class test {
public $value = 0;
function test() {
$this->value = 1;
}
function __construct() {
$this->value = 2;
}
}
$object = new test();
echo $object->value;
A. 2
B. 1
C. 0
D. 3
E. No Output, PHP will generate an error message.
Answer: A
Zend-Technologies certification 200-500 200-500 200-500 200-500
NO.7 What is the maximum size of the VARCHAR column type?
A. 255 Bytes
B. 255 Characters
C. 512 Bytes
D. 512 Characters
E. No Limit
Answer: B
Zend-Technologies examen 200-500 200-500 certification 200-500
NO.8 Which piece of code will return the ASCII value of a character?
A. (int)'t';
B. ord('t');
C. to_ascii('t');
D. chr('t');
Answer: B
Zend-Technologies certification 200-500 200-500
NO.9 Which options do you have in PHP to set the expiry date of a session?
A. Set the session.duration directive in php.ini
B. Set session cookie expiry date locally via session_set_cookie_params()
C. Set session expiry date locally via session_cache_expire()
D. None of the above
Answer: D
Zend-Technologies 200-500 200-500 200-500
NO.10 You work for a shared hosting provider, and your supervisor asks you to disable user scripts to
dynamically load PHP extensions using the dl() function. How can you do this? (Choose 2)
A. Set enable_dl to Off in the server's php.ini configuration file.
B. Add dl to the current value of disable_functions in the server's php.ini configuration file.
C. Add dl to the current value of disable_classes in the server's php.ini configuration file.
D. Write a custom function called dl(), save it under the name prepend.inc and then set the
auto_prepend_file directive to prepend.inc in php.ini.
Answer: AB
Zend-Technologies examen certification 200-500 certification 200-500 certification 200-500
NO.11 Identify the security vulnerability in the following example:
1.<?php
2 echo "Welcome, {$_POST['name']}.";
3 ?>
A. SQL Injection
B. Cross-Site Scripting
C. Remote Code Injection
D. None of the above
Answer: B
certification Zend-Technologies 200-500 certification 200-500 200-500 examen
NO.12 Which of the following data types cannot be directly manipulated by the client?
A. Cookie Data
B. Session Data
C. Remote IP Address
D. User Agent
Answer: B
Zend-Technologies 200-500 200-500 200-500 200-500
NO.13 What is the output of the following script?
1 <?php
2 class a
3 {
4 public $val;
5 }
6
7 function renderVal (a $a)
8 {
9 if ($a) {
10 echo $a->val;
11 }
12 }
13
14 renderVal (null);
15 ?>
A. A syntax error in the function declaration line
B. An error, because null is not an instance of 'a'
C. Nothing, because a null value is being passed to renderVal()
D. NULL
Answer: B
Zend-Technologies examen 200-500 200-500
NO.14 Type hinting in PHP allows the identification of the following variable types: (Choose 2)
A. String
B. Integer
C. Array
D. Any class or interface type
Answer: CD
certification Zend-Technologies 200-500 200-500 200-500 200-500
NO.15 You analyze the code of a collegue and see, it uses the function strcasecmp. You try it out to see what
it does and use the following function call:
strcasecmp('hello my dear!', 'Hello my DEAR!');
The function call returns "0". What does that mean?
A. String 1 is less than string 2.
B. The strings are considered equal.
C. String 2 is less than string 1.
D. The strings have equal length.
Answer: B
certification Zend-Technologies 200-500 200-500 examen 200-500 examen
NO.16 What is the output of the following code?
echo 0x33, ' monkeys sit on ', 011, ' trees.';
A. 33 monkeys sit on 11 trees.
B. 51 monkeys sit on 9 trees.
C. monkeys sit on trees.
D. 0x33 monkeys sit on 011 trees.
Answer: B
Zend-Technologies 200-500 200-500 200-500 certification 200-500
NO.17 Which of the following filtering techniques prevents cross-site scripting (XSS) vulnerabilities?
A. Strip all occurrences of the string script.
B. Strip all occurrences of the string javascript.
C. Enable magic_quotes_gpc.
D. None of the above.
Answer: D
certification Zend-Technologies 200-500 200-500 certification 200-500 200-500 examen certification 200-500
NO.18 An HTML form contains this form element:
<input type="image" name="myImage" src="image.png" />
The user clicks on the image to submit the form. How can you now access the relative coordinates of the
mouse click?
A. $_IMAGE['myImage']['x'] and $_IMAGE['myImage']['y']
B. $_POST['myImage']['x'] and $_POST['myImage']['x']
C. $_POST['myImage.x'] and $_POST['myImage.y']
D. $_POST['myImage_x'] and $_POST['myImage_y']
Answer: D
Zend-Technologies examen 200-500 certification 200-500 200-500 certification 200-500
NO.19 What is the content of $c after the following code has executed?
$a = 2;
$b = 3;
$c = ($a++ * ++$b);
A. 0
B. 5
C. 8
D. 4
Answer:
NO.20 When checking whether two English words are pronounced alike, which function
should be used for the best possible result?
A. levenshtein()
B. metaphone()
C. similar_text()
D. soundex()
Answer: B
certification Zend-Technologies certification 200-500 200-500 200-500 examen
NO.21 How many elements does the $matches array contain after the following function call is performed?
preg_match('/
没有评论:
发表评论