goo blog サービス終了のお知らせ 

killtestのIT問題集ブログ

killtestの最新試験参考書を提供し、合格することが保証できます!

killtest.jp Zend-Technologies Zend 200-500テスト試験、無料サンプルを提供する

2011-03-14 11:15:37 | 日記
Zend-Technologies認証はご存じでしょうか、今のIT業で最も流行れてる、killtest.jpはZend-Technologies認証の200-500試験用ソフトへの開発、さらに開発された商品が100% Zend-Technologies Zend認証試験の知識を含めております。そのうちは試験タイプ及び内容があります。ご使用は安心できます、一発合格することも保証いたします。

killtest.jp 200-500試験はkilltest.jpは今も掲載のZend-Technologies認定試験模擬問題を一覧することができます。解答を受験前の直前対策、苦手分野の克服などにご活用下さい。試験番号は200-500はkilltest.jp全部提供いたします。気楽に試験を通すように助けます、ご使用になってください!

1. 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

2. 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

3. 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

4. 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′, $matches);
A. 1
B. 2
C. 3
D. 4
Answer: C

5. Given the following code, what will be the value of $a?
$a = array(‘a’, ‘b’);
array_push($a, array(1, 2));
A. array(‘a’, ‘b’, 1, 2)
B. array(1, 2, ‘a’, ‘b’)
C. array(array(1, 2), ‘a’, ‘b’)
D. None of the above
Answer: D

6. 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

7. Identify the security vulnerability in the following example:
1
A. SQL Injection
B. Cross-Site Scripting
C. Remote Code Injection
D. None of the above
Answer: B