Test Status
      PHPTEST1
      (A) floats
      (B) integer
      (C) doubles
      (D) Real number
      (A) 4.5678
      (B) 4.0
      (C) 7e4
      (D) All of above
      (A) delimited by single quote
      (B) delimited by double quote
      (C) delimited by <<< identifier
      (D) All of above
      (A) delimited by single quote
      (B) delimited by double quote
      (C) delimited by <<< identifier
      (D) All of above
      (A) Integer
      (B) Float
      (C) String
      (D) Booleans
      (A) Array
      (B) Objects
      (C) Both
      (D) None
      (A) (array)
      (B) (int64)
      (C) (real) or (double) or (float)
      (D) (object)
      (A) Identifier are case sensitive. So $result is different than $ result
      (B) Identifiers can be any length
      (C) Both of above
      (D) None of above
      (A) my-function
      (B) size
      (C) -some word
      (D) This&that
      (A) $value1= $value?
      (B) $value1= # $value?
      (C) $value1= & $value?
      (D) None
      (A) Local variables
      (B) Function parameters
      (C) Hidden variables
      (D) Global variables
      (A) percentage
      (B) bitwise or
      (C) division
      (D) modulus
      (A) multiplication
      (B) concatenation
      (C) separate object and its member
      (D) delimeter
      (A) Any code found within an included file will inherit the variable scope of the location of its caller
      (B) Because the included code will be embedded in a PHP execution block, the PHP execution block, the PHP escape tags ( aren't required on the file to be included
      (C) For the inclusion of remote files the allow-url-pope must be enabled ad URL wrapper must be supported
      (D) Including a file produces the same result as copying the data from the file specified into the location in which the statement appears.
      (A) include()
      (B) require()
      (C) both of above
      (D) None of above