You are on page 1of 5

Question & Answer Sessions 23

Day 23

1) Who is known as the father of PHP?

Rasmus Lerdrof

2) What was the old name of PHP?

Personal Home Page

3) The correct sequence of HTML tags for starting a webpage is -

HTML, Head, Title, Body

4) HTML is what type of language ?

Markup Language

5) Which of the following is not a variable scope in PHP?

Extern

.6) Which of the following is used to display the output in PHP?

Both (echo) and (print)

7) Who is Known as the father of World Wide Web (WWW)?


Tim Berners-Lee

8) HTML uses

Fixed tags defined by the language

9) Which of the following function in PHP can be used to test the type of any variable?

gettype()

10) PHP is an example of ___________ scripting language.


Server-side

11) Which of the following is not true?

PHP can not be embedded into html.

12)Which of the following variables is not a predefined variable?


$ask

13) Which of the following functions returns the number of characters in a string variable?

strlen($variable)

14) Which statement will output $lfc on the screen?


echo "$lfc";

15) Which of the following function returns a text in title case from a variable?

ucwords($var)
16)Which of the following is the correct syntax to display the hyperlinks without any underline?

{text-decoration : none;}

17) Which of the following is the correct way to start an ordered list with the count of numeric
value 4?

<ol type = "1" start = "4">

18) Which HTML tag produces the biggest heading?

<h1>

19) The CSS property used to specify the transparency of an element is -

opacity

20) What if one does not use the doctype in the starting of HTML document?

Browser finds the document in quirky mode

21) A program in HTML can be rendered and read by -

Web browser

22) Which of the following is not correct with reference to HTML?

None of the above


23) What should be the table width, so that the width of a table adjust to the current width of the
browser window?

100%

24)  Which of the following HTML tag is used to display the text with scrolling effect?

<marquee>

25) Write a short note from the HTML language.


HTML stands for Hyper Text Markup Language,and It is used to create
Web pages.We can create the structure of a web page using html,html
consists of a series of elements,which tell the browser how to display the
content.

a html element is defined by a start tag, some content, and an end tag

eg- <h1>Hello</h1>

You might also like