Online Exam Quiz

questionQuestion  1 to 30

What is the correct way to create an array in PHP?

  • $array = array("value1", "value2");
  • $array = ("value1", "value2");
  • $array = ["value1", "value2"];
  • $array = {value1, value2};
Mark for review

How do you format a number with grouped thousands in PHP?

  • number_format($number)
  • format_number($number)
  • num_format($number)
  • number_group($number)
Mark for review

How do you convert a string to lowercase in PHP?

  • strtolower($string)
  • lower($string)
  • to_lower($string)
  • string_to_lower($string)
Mark for review

Which of the following is used to generate a random number in PHP?

  • rand()
  • random()
  • generate_rand()
  • rand_number()
Mark for review

Which of the following is the right way to get the length of a string in PHP?

  • strlen($string)
  • length($string)
  • size($string)
  • strlength($string)
Mark for review

What will strpos("Hello world", "world"); return?

  • 5
  • 6
  • 7
  • 8
Mark for review

How do you define a constructor in a PHP class?

  • function __construct() { }
  • function construct() { }
  • function __construct() { }
  • function: construct() { }
Mark for review

How do you declare an abstract class in PHP?

  • abstract class MyClass { }
  • class abstract MyClass { }
  • class MyClass abstract { }
  • abstract MyClass { }
Mark for review

How do you send a raw HTTP header in PHP?

  • header("HTTP/1.1 200 OK");
  • send_header("HTTP/1.1 200 OK");
  • sendhttp("HTTP/1.1 200 OK");
  • httpheader("HTTP/1.1 200 OK");
Mark for review

Which of the following is a superglobal in PHP?

  • $_POST
  • $GLOBALS
  • $_SESSION
  • All of the above
Mark for review

Which of the following is the correct way to create a class in PHP?

  • class MyClass { }
  • create class MyClass { }
  • define class MyClass { }
  • class: MyClass { }
Mark for review

Which of the following is a way to comment in PHP?

  • // This is a comment
  • /* This is a comment */
  • # This is a comment
  • All of the above
Mark for review

Which of the following is used to check if a variable is of integer type in PHP?

  • is_int()
  • is_integer()
  • check_int()
  • Both is_int() and is_integer()
Mark for review

What is the correct way to include a file only once in PHP?

  • include_once "file.php";
  • include "file.php";
  • require_once "file.php";
  • require "file.php";
Mark for review

How do you remove all leading and trailing whitespace in PHP?

  • trim($string)
  • strip($string)
  • clean($string)
  • whitespace_remove($string)
Mark for review

Which of the following is used to terminate the execution of a script in PHP?

  • exit()
  • die()
  • stop()
  • Both exit() and die()
Mark for review

How do you define a constant in PHP?

  • define("CONSTANT", "value");
  • constant("CONSTANT", "value");
  • const CONSTANT = "value";
  • define: CONSTANT = "value";
Mark for review

How do you get the current timestamp in PHP?

  • time()
  • timestamp()
  • current_time()
  • now()
Mark for review

How do you get the last element of an array in PHP?

  • end($array)
  • last($array)
  • array_end($array)
  • get_last($array)
Mark for review

Which of the following functions is used to sort an array in PHP?

  • sort()
  • array_sort()
  • order()
  • arrange()
Mark for review

PHP files have a default file extension of...

  • .html
  • .xml
  • .php
  • .js
Mark for review

How do you destroy a session in PHP?

  • session_destroy()
  • destroy_session()
  • session_end()
  • end_session()
Mark for review

How do you create a cookie in PHP?

  • setcookie("name", "value", time()+3600)
  • createcookie("name", "value", 3600)
  • makecookie("name", "value", 3600)
  • cookie("name", "value", time()+3600)
Mark for review

How can you get the number of elements in an array in PHP?

  • count($array)
  • size($array)
  • length($array)
  • elements($array)
Mark for review

What does PDO stand for?

  • PHP Data Object
  • PHP Database Object
  • PHP Data Orientation
  • PHP Database Orientation
Mark for review

How do you write to a file in PHP?

  • fwrite($file, $data);
  • write($file, $data);
  • file_write($file, $data);
  • write_file($file, $data);
Mark for review

Which function is used to output text in PHP?

  • echo
  • print
  • write
  • show
Mark for review

How do you connect to a MySQL database in PHP?

  • $conn = new mysqli($host, $user, $pass)
  • $conn = connect($host, $user, $pass)
  • $conn = mysql($host, $user, $pass)
  • $conn = db_connect($host, $user, $pass)
Mark for review

What will strtolower("HELLO"); return?

  • hello
  • HELLO
  • Hello
  • hElLo
Mark for review

Which of the following is the correct way to end a PHP statement?

  • ;
  • .
  • :
  • #
Mark for review

blinkerOnline

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • Answered
  • Not Answered
  • Marked for Review