Created by Vivan Web Solution QUIZ Please read these instructions carefully!* Do not try to copy questions and search for answers on the Internet.* Do not take screenshots.* Do not ask someone else to pass your test for you.* If you break any rules, THE TEST WILL BE ABORTED. 1 / 15 1) What will be the output of the following PHP code?<?php$num = "123";if (!filter_var($num, FILTER_VALIDATE_INT))echo("Integer is not valid");elseecho("Integer is valid");?> A) Error B) Integer is valid C) Integer is not valid D) No output is returned 2 / 15 2) Which two predefined variables are used to retrieve information from forms? A) $__GET & $__SET B) GET & SET C) $_GET & $_SET D) $GET & $SET 3 / 15 3) Which one of the following statements is used to create a table? A) CREATE table_name (column_name column_type); B) CREATE TABLE table_name (column_name column_type); C) CREATE table_name (column_type column_name); D) CREATE TABLE table_name (column_type column_name); 4 / 15 4) How many types of JOINS are there in SQL? A) 1 B) 4 C) 2 D) 3 5 / 15 5) The class from which the child class inherits is called ________i) Child classii) Parent classiii) Super classiv) Base class A) Only i) B) ii) and iv) C) ii), iii) and iv) D) Only iii) 6 / 15 6) Which keyword is used to refer to properties or methods within the class itself? A) public B) private C) $this D) protected 7 / 15 7) Which one of the following functions will convert a string to all uppercase? A) strtoupper() B) uppercase() C) struppercase() D) str_uppercase() 8 / 15 8) What will be the output of the following PHP code?<?phpfor ($count = 1; $count < 20; $count++);print $count;?> A) 20 B) 19 C) 12345678910….1920 D) 12345678910….19 9 / 15 9) Which is the right way of declaring a variable in PHP? A) $3hello B) $_hello C) $this D) $5_Hello 10 / 15 10) Which one of the following statements can be used to select the database? A) $mysqli=select_db('databasename'); B) mysqli=select_db('databasename'); C) mysqli->select_db('databasename'); D) $mysqli->select_db('databasename'); 11 / 15 11) You use the get_class_methods() function to return the names of all the methods in the class. Which function will you use to print it on the screen? A) printf() B) print_r C) print_ar D) echo 12 / 15 12) Which one of the following keyword is used to inherit our subclass into a superclass? A) implements B) extends C) inherit D) include 13 / 15 13) What will be the output of the following PHP code?<?php$a1 = array("red", "green");$a2 = array("blue", "yellow");print_r(array_merge($a1, $a2));?> A) Array ( [0] => blue [1] => yellow ) B) Array ( [0] => red [1] => green [2] => blue [3] => yellow ) C) Array ( [0] => red [1] => green) D) Array ( [0] => blue [1] => yellow [2] => red [3] => green ) 14 / 15 14) What will be the output of the following PHP code?<?php$x = 10;$y = 20;if ($x > $y + $y != 3){ print "hi" ;}else{print "how are u"};?> A) error B) how are u C) no output D) hi 15 / 15 15) What will be the output of the following PHP code?<?phpdefine("GREETING", "PHP is a scripting language");echo $GREETING;?> A) no output B) $GREETING C) GREETING D) PHP is a scripting language Your score is LinkedIn Facebook 0% Restart quiz