PHP Intern / Fresher MCQ Test Important Points to Remember. No cell phones or other secondary devices in the room or test area Your desk/table must be clear or any materials except your test-taking device No one else can be in the room with you No talking No dual screens/monitors No use of additional applications or internet 1 / 40 What is the correct syntax in HTML for creating a link on a webpage? < BODY LINK = “mcqsets.html” > < LINK SRC= “mcqsets.html” > < A SRC = “mcqsets.html” > < A HREF = “mcqsets.html” > 2 / 40 What does the operator > > > > do? Right shift operator Zero fill left shift Zero fill right shift Left shift operator 3 / 40 What will be the output of the following php code? < ?php $num = 1; $num1 = 2; print $num . "+". $num1; ? > 3 Error 1+2 1.+.2 4 / 40 Which of the looping statements is/are supported by PHP? i) for loop ii) while loop iii) do-while loop iv) foreach loop All of the mentioned (i), (ii) and (iii) None of the mentioned (i) and (ii) 5 / 40 What least number must be added to 1056, so that the sum is completely divisible by 23 ? 21 None of these 2 18 6 / 40 He passed the examination in the first class because he…… worked hardly for it was hard working for it was working hard for it had worked hard for it 7 / 40 What MySQL property is used to create a surrogate key in MySQL? SEQUENCE UNIQUE AUTO_INCREMENT None of the above 8 / 40 Code that uses a class, function, or method is often described as the.. object code user code client code class code 9 / 40 ________ is an open source DBMS product that runs on UNIX, Linux and Windows. JSP/SQL Sun ACCESS MySQL JDBC/SQL 10 / 40 Today is Monday. After 61 days, it will be: Saturday Thursday Wednesday Tuesday 11 / 40 Find the odd man out. 396, 462, 572, 427, 671, 264 427 264 396 671 12 / 40 Synonyms: VENT Past tense of go Stodge Opening End 13 / 40 Which version of PHP introduced the instanceof keyword? PHP 5.3 PHP 5 PHP 6 PHP 4 14 / 40 The left associative dot operator (.) is used in PHP for delimeter multiplication concatenation separate object and its member 15 / 40 Pointing to a photograph of a boy Suresh said, “He is the son of the only son of my mother.” How is Suresh related to that boy? Father Cousin Brother Uncle 16 / 40 < b > tag makes the enclosed text bold. What is other tag to make text bold? < strong > < dar > < black > < emp > 17 / 40 Which of the following is used to delete an entire MYSQL database? mysql_drop_db mysql_drop_database mysql_drop_entiredb mysql_drop_dbas 18 / 40 PHP recognizes constructors by the name. classname() function __construct() _construct() function _construct() 19 / 40 What will be the output of the following PHP code? < ?php $a = 5; $b = 5; echo ($a === $b); ? > 5 === 5 Error 1 20 / 40 A, P, R, X, S and Z are sitting in a row. S and Z are in the centre. A and P are at the ends. R is sitting to the left of A. Who is to the right of P ? S A X Z 21 / 40 Which one of the following is the right way to define a constant? const $PI = “3.1415″; const PI = ’3.1415′; constant PI = ’3.1415′; constant PI = “3.1415″; 22 / 40 In a mixture 60 liters, the ratio of milk and water 2:1. If this ratio is to be 1 : 2, then the quantity of water to be further added is: 30 liters 20 liters 40 liters 60 liters 23 / 40 Antonyms: ENORMOUS Average Tiny Weak Soft 24 / 40 If your object must inherit behavior from a number of sources you must use a/an Interface static class Object abstract class 25 / 40 mysql_connect( ) does not take following parameter database host database name user ID password 26 / 40 A SELECT command without a WHERE clause returns? Nothing All the records from a table, or information about all the records SELECT is invalid without a WHERE clause All the records from a table that match the previous WHERE clause 27 / 40 For defining the possible line break which tag do we have to use in HTML 5? < summary > < track > < video > < wbr > 28 / 40 A sum of money is to be distributed among A, B, C, D in the proportion of 5 : 2 : 4 : 3. If C gets Rs. 1000 more than D, what is B’s share? Rs. 2000 Rs. 500 None of these Rs. 1500 29 / 40 What are 3 different ways to connect with MySQL? 1. MySQL 2. MySQLI 3. PDO 1 2,3 None 1,2,3 30 / 40 What will be the output of the following < ?php $foo = 'Bob'; $bar = &$foo; $bar = "My name is $bar"; echo $bar; echo $foo; ? > My name is Bob Bob My name is BobBob My name is BobMy name is Bob Error 31 / 40 Which of the following HTML code is valid? < font colour=”red” > < font color=”red” > All of above are style tags < red >< font > 32 / 40 What will be the output of the following PHP code? < ?php $color = "maroon"; $var = $color[ 2 ]; echo "$var"; ? > $var Error r a 33 / 40 Which of following are compound data type? Array None Objects Both 34 / 40 Which tag is used to display the large font size? < BIG >< /BIG > < SIZE >< /SIZE > < FONT >< /FONT > < LARGE >< /LARGE > 35 / 40 Which of the following advanced OOP features is/are not supported by PHP? i) Method overloading ii) Multiple Inheritances iii) Namespaces iv) Object Cloning All of the mentioned None of the mentioned i) and ii) iii) and iv) 36 / 40 In php Which method is used to getting browser properties? $_SERVER[ ‘PHP_SELF’ ] $_SERVER[ ‘HTTP_VARIENT’ ] $_SERVER[ ‘HTTP_USER_AGENT’ ]; $_SERVER[ ‘SERVER_NAME’ } 37 / 40 What will be the output of the following PHP code? < ?php $total = "25 students"; $more = 10; $total = $total + $more; echo "$total"; ? > 35 students 25 students Error 35 38 / 40 In PHP, during error handling include() generates__________ None of the above a warning, but the script will continue execution a fatal error, and the script will stop 39 / 40 Which one of the following statements should be used to include a file? @include ‘filename’; include‘filename’; #include‘filename’; #include ; 40 / 40 What will be the output of the following PHP code? < ?php $score = 1234;ET $scoreboard = (array) $score; echo $scoreboard[ 0 ]; ? > Error 1 1234 2 0%