Official Bank 0/221

Zend Certified PHP Engineer (200-550) - Zend Exam Questions

Last updated on June 20, 2026

97% Exam Compliance
221 Total Questions
1
Question
Which of the following does NOT help to protect against session hijacking and fixation attacks?
Options
A Set the session.use_only_cookies php.ini parameter to 1 .
B Protect against XSS vulnerabilities in the application.
E: Rotate the session id on successful login and logout using session_regenerate_id()
C Use SSL and set the $secure cookie parameter to true .
D Set the session.cookie_lifetime php.ini parameter to 0 .
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

2
Question
Which of the following functions will allow identifying unique values inside an array?
Options
A array_intersect E: array_values
B array_unique_values
C array_distinct
D array_count_values
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

3
Question
What will be the result of the following operation?
array_combine(array("A","B","C"), array(1,2,3));
Options
A array(1,2,3,"A","B",C")
B array("A","B","C",1,2,3)
C array(1=>"A",2=>"B",3=>"C")
E: array(1,2,3)
D array("A"=>1,"B"=>2,"C"=>3)
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

4
Question
An HTML form contains this form element: The user clicks on the image to submit the form. How can you now access the relative coordinates of the mouse click?
Options
A $_POST['myImage_x'] and $_POST['myImage_y']
B $_POST['myImage']['x'] and $_POST['myImage']['y']
C $_FILES['myImage']['x'] and $_FILES['myImage']['y']
D $_POST['myImage.x'] and $_POST['myImage.y']
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

5
Question
Which of the following statements is correct?
Options
A Interfaces can extend more than one interface
B Interfaces can extend only one interface
C Interfaces can redeclare inherited methods
D Interfaces can inherit a method from different interfaces
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

Finish Practice?

Are you sure you want to finish? This will end your practice session.