Test Status
      PHPTEST8
      (A) echo ucwords($word.)
      (B) echo ucfirst($word).
      (C) echo ucwords(strtolower($word).
      (D) echo ucfirst(strtolower($word).
      (A) is include() produced a Fatal Error while require results in a Warning
      (B) both are same in every aspects
      (C) are different how they handle failure
      (D) None of above
      (A) Get
      (B) Post
      (C) Both Get and Post
      (D) There is no direct way for larger form. You need to store them in a file and retrieve
      (A) Declare cookie variables
      (B) Store data in cookie variable
      (C) Enable or disable cookie support
      (D) All of above
      (A) allow_url_fopen
      (B) allow_remote_files
      (C) both of above
      (D) none of above
      (A) The message
      (B) The header
      (C) The recipient
      (D) The subject
      (A) database name
      (B) database host
      (C) user ID
      (D) password
      (A) session_destroy
      (B) session_decode
      (C) session_id
      (D) session_pw
      (A) Uploaded file size is 0
      (B) Uplaod is not successful, error occurred
      (C) The file uploaded with success
      (D) File upload progress is 0% completed
      (A) You can use any of the delimiting style
      (B) You can use any delimiting style but must use a single style consistently for a page
      (C) You can use different delimiting styles in same page
      (D) Variables declared in previous blocks are remembered on later blocks too!
      (A) Shell syntax - #
      (B) Multiline Comment /* ------------- */
      (C) Both of above
      (D) None of above
      (A) Print out a message asking your user to "telnet" in to the server and copy the file for you
      (B) Open the input and output files, and use read() and write() to copy the data block by block until read() returns a zero
      (C) Use the built in copy() function
      (D) Use "exec" to run an operating system command such as cp (Unix, Linux) or copy (Windows)