Online Exam Quiz

questionQuestion  1 to 30

How do you find the position of the first occurrence of a substring in a string in PHP?

  • strpos()
  • find()
  • search()
  • locate()
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

What is the output of echo (int)( (0.1+0.7) * 10 );?

  • 7
  • 8
  • 9
  • 10
Mark for review

Which of the following is used to start an output buffer in PHP?

  • ob_start()
  • buffer_start()
  • start_ob()
  • output_start()
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

How do you convert a string to lowercase in PHP?

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

How do you redirect to another page in PHP?

  • header("Location: page.php");
  • redirect("page.php");
  • move("page.php");
  • location("page.php");
Mark for review

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

  • include "file.php";
  • include_file("file.php");
  • file_include("file.php");
  • require "file.php";
Mark for review

Which of the following is used to get information about a variable in PHP?

  • var_dump()
  • var_info()
  • var_detail()
  • var_get()
Mark for review

Which of the following is a correct way to open a file in read mode in PHP?

  • fopen("file.txt", "r");
  • fopen("file.txt", "read");
  • open("file.txt", "r");
  • open("file.txt", "read");
Mark for review

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

  • function myFunction() { }
  • create myFunction() { }
  • define myFunction() { }
  • function() { }
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

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

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

How do you append to a file in PHP?

  • fopen("file.txt", "a");
  • open("file.txt", "a");
  • append("file.txt", "a");
  • file_append("file.txt", "a");
Mark for review

How do you define a constructor in a PHP class?

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

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

  • ;
  • .
  • :
  • #
Mark for review

Which of the following is a superglobal in PHP?

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

How do you check if a variable is an array in PHP?

  • is_array($var)
  • check_array($var)
  • isArray($var)
  • array_check($var)
Mark for review

How do you get the current timestamp in PHP?

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

How do you check if a variable is empty in PHP?

  • empty($var)
  • is_empty($var)
  • check_empty($var)
  • empty_check($var)
Mark for review

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 get the last element of an array in PHP?

  • end($array)
  • last($array)
  • array_end($array)
  • get_last($array)
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

What will strtolower("HELLO"); return?

  • hello
  • HELLO
  • Hello
  • hElLo
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 declare an abstract class in PHP?

  • abstract class MyClass { }
  • class abstract MyClass { }
  • class MyClass abstract { }
  • abstract MyClass { }
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

What does MVC stand for in PHP frameworks?

  • Model View Controller
  • Module View Controller
  • Model View Component
  • Module View Component
Mark for review

Which function is used to output text in PHP?

  • echo
  • print
  • write
  • show
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

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