Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

An unbuffered database query will (choose two):

A.

return the first data faster

B.

return all data faster

C.

free connection faster for others scripts to use

D.

use less memory

Under what condition may HTTP headers be set from PHP if there is content echoed prior to the header function being used?

A.

headers_sent() returns true

B.

Output buffering is enabled

C.

The client supports local buffering

D.

The webserver uses preemptive mode

Which of the following can NOT be used to send a cookie from within a PHP application?

A.

header()

B.

$_COOKIE

C.

setcookie()

D.

setrawcookie()

You want to parse a URL into its single parts. Which function do you choose?

A.

parse_url()

B.

url_parse(0

C.

get_url_parts()

D.

geturlparts()

Consider the following two files. When you run test.php, what would the output look like?

A.

12,12

B.

12,24

C.

24,12

D.

24,24

E.

PHP Fatal error: Cannot redeclare strlen()

How should class MyObject be defined for the following code to work properly? Assume $array is an array and MyObject is a user-defined class.

A.

MyObject should extend class Closure

B.

MyObject should implement interface Callable

C.

MyObject should implement method__call

D.

MyObject should implement method__invoke

What is the output of the following code?

What is the output of the following code?

A.

MyNamespace\Test

B.

empty string

C.

parse error

D.

Test

What is the output of the following code?

A.

This is text

B.

$text

C.

$text1

D.

$text2

What is the output of the following code?