Classic Jhumka Earrings Silver INR 113.00 Free Shipping Buy Now
Black Jhumka Earrings & Studs INR 94.00 Free Shipping Buy Now
Classic Jhumka Earrings Silver INR 207.00 Free Shipping Buy Now
Beautiful stud earing INR 93.00 Free Shipping Buy Now
Different Size Hoop and Stud Earrings Set INR 243.00 Free Shipping Buy Now
Golden Hoop Earing INR 70.00 Free Shipping Buy Now
Home Practice Tests General Knowledge Practice Tests General Knowledge Quiz - Question & Answers Set - 15
15 Questions
Time Left -

General Knowledge Quiz - Question & Answers Set - 15

  • Question 3 :
  • What is PEAR
  • APEAR is short for "PHP Extension and Application Repository" The purpose of PEAR is to provide: 1. A structured library of open-sourced code for PHP users 2. A system for code distribution and package maintenance 3. A standard style for code w
  • Question 7 :
  • How can I execute a PHP script using command line
  • AJust run the PHP CLI (Command Line Interface) program and provide the PHP script file name as the command line argument. For example, "php myScript.php", assuming "php" is the command to invoke the CLI program. Be aware that if your PHP script was writt
  • Question 9 :
  • What is the functionality of the functions STRSTR() and STRISTR()
  • Astring strstr ( string haystack, string needle ) returns part of haystack string from the first occurrence of needle to the end of haystack. This function is case-sensitive. stristr() is idential to strstr() except that it is case insensitive.
  • Question 11 :
  • What is the functionality of the function strstr and stristr
  • Astrstr() returns part of a given string from the first occurrence of a given substring to the end of the string. For example: strstr("user@example.com","@") will return "@example.com". stristr() is idential to strstr() except that it is case insensitive.