Web Technologies MCQ Questions and Answers pdf - Set 03 - ObjectiveBooks

Web Technologies MCQ Questions and Answers pdf - Set 03

Practice Test: Question Set - 03


1. Markup tags tell the web browser
    (A) How to organize the page
    (B) How to display the page
    (C) How to display message box on page
    (D) None of these

2. Consider the following script:

<html>

<head><title>JavaScript</title></head>

<body>

<script language=”JavaScript”>

var a=80

var b=(a==80 ? “pass” :”fail”);

document.write(b)

</script>

</body>

</html>

What will be the output of the above script?

    (A) Pass
    (B) Fail
    (C) Null
    (D) Error at line 6

3. The attribute, which define the relationship between current document and HREF'ed URL is
    (A) REL
    (B) URL
    (C) REV
    (D) All of these

4. <Base> tag is designed to appear only between
    (A) <HEAD>
    (B) <TITLE>
    (C) <BODY>
    (D) <FORM>

5. Which of the following is true about XHTML?
    (A) It is a new hybrid technology that is different from both XML and HTML
    (B) It has totally replaced HTML as the tool for building Web pages
    (C) It is a reformulation of HTML in XML
    (D) One cannot use it to create Web pages

6. The map definition file is generally stored in
    (A) CGI-BIN
    (B) RECYCLE-BIN
    (C) BIN
    (D) All of these

7. Which of the following statements is false about event handlers in JavaScript?
    (A) They can be included with input tags
    (B) They can be associated with end of file processing for a database application
    (C) They can be included with the form tag
    (D) They are generally used to call functions when triggered

8. In ASP the function which returns the current system date is:
    (A) getDate()
    (B) Date()
    (C) Now()
    (D) getCurrentDate()

9. Which of the following options is correct with regard to HTML?
    (A) It is a modeling language
    (B) It is a DTP language
    (C) It is a partial programming language
    (D) It is used to structure documents

10. How can you make an e-mail link?
    (A) <mail href +"xxx@y.com">
    (B) <a href ="mail to: xxx@y.com">
    (C) <a href = "xxx@y.com">
    (D) Both (b) and (c)

Show and hide multiple DIV using JavaScript View All Answers

 Next Tests: