HTML2011. 5. 9. 17:30

Killtest 200-530 시험문제는 완벽할 뿐만아니라 합격률이 96% 이상입니다. 답은 이 방면에 경험이 많은 강사들이 푸는 것이라 정확도가 100% 입니다. 우리시험문제 Zend 200-530 를 사용해서 시험을 보면 쉽게 시험을 통과할 수 있을 것입니다

 

VUE/Prometric Code: 200-530

Exam: Zend PHP 5.3 Certification

Ver:V8.02
Q&A:253 Q&As
업그레이트:2010-12-16
 
덤프문제:
10.You want to fetch the top level domain (com) from the email john@ucertify.com. Which of the following
functions will you use to accomplish the task?
A. substr("john@ucertify.com", strpos("john@ucertify.com", "."));
B. eregi("^[a-z0-9\._-]+"."@"."([a-z0-9][a-z0-9-]*[a-z0-9]\.)+"."([a-z]+\.)?"."([a-z]+)$",
john@ucertify.com))
C. eregi("john@ucertify.com", ".");
D. substr("john@ucertify.com", strpos("john@ucertify.com", ".")+1);
Answer: D
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.ucertify.com">http://www.ucertify.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>
Answer: C
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
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
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;
D. SELECT e.EmpName, m.ManagerName FROM Employees e, Employees m WHERE e.EmpID =
m.ManagerID;
Answer: B,D
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
 
Posted by 아이맥스