Web Technologies Quiz

A comprehensive quiz covering HTML, XML, XSL, web services (SOAP, UDDI), and JavaScript fundamentals

33 Questions Published

Questions

Question 1 Multiple Choice (Multiple Answers)

5.How do you call a function named "myFunction"?

  1. myFunction()
  2. call myFunction()
  3. call function myFunction
  4. function myFunction
Question 2 Multiple Choice (Multiple Answers)

6.How do you write a conditional statement for executing some statements only if "i" is equal to 5?

  1. if (i==5)
  2. if i=5
  3. if i=5 then
  4. if i==5 then
Question 3 Multiple Choice (Multiple Answers)

7.How does a "for" loop start?

  1. for (i = 0; i <= 5; i++)
  2. for i = 1 to 5
  3. for (i <= 5; i++)
  4. for (i = 0; i <= 5)
Question 4 Multiple Choice (Multiple Answers)

8.How can you add a comment in a JavaScript?

  1. 'This is a comment
  2. <!--This is a comment-->
  3. //This is a comment
  4. "This is a comment
Question 5 Multiple Choice (Multiple Answers)

9.How do you round the number 7.25, to the nearest whole number?

  1. Math.round(7.25)
  2. round(7.25)
  3. rnd(7.25)
  4. Math.rnd(7.25)
Question 6 Multiple Choice (Multiple Answers)

10.How do you find the largest number of 2 and 4?

  1. Math.ceil(2,4)
  2. Math.max(2,4)
  3. top(2,4)
  4. ceil(2,4)
Question 7 Multiple Choice (Multiple Answers)

3.How do you write "Hello World" in an alert box?

  1. alertBox="Hello World"
  2. alertBox("Hello World")
  3. alert("Hello World")
  4. msgBox("Hello World")
Question 8 Multiple Choice (Single Answer)

Which of the following problems is not intented to be solved by WebServices?

  1. Interoperability
  2. User Interface
  3. Complexity
  4. Firewall traversal
Question 9 True/False

A SOAP Envelope contains Head, Title and Body

  1. True
  2. False
Question 10 Multiple Choice (Single Answer)

UDDI stands for:

  1. Unified Description, Discovery and Integration
  2. Unified Discovery, Description and Intelligence
  3. Universal Description, Discovery and Integration
  4. Universal Discovery, Description and Integration
Question 11 True/False

"Apache Axis2" is a revolutionary web service tool because - it enhances users' online experience by faster processes of application

  1. True
  2. False
Question 12 Multiple Choice (Single Answer)

Which of the following is not applicable to SOAP

  1. It is a communication protocol
  2. It is a format for sending messages
  3. It is based on XML
  4. It does not allow you to get around firewalls
  5. None of these
Question 13 Multiple Choice (Single Answer)

This method ensures that each XML element type and attribute name has a unique identity

  1. named pipe
  2. fully-qualified domain name
  3. Multiprotocol Label Switching
  4. namespace
Question 14 True/False

XSL stands for EXtensible Stylesheet Language.

  1. True
  2. False
Question 15 True/False

XSL is stylesheet

  1. True
  2. False
Question 16 Multiple Choice (Multiple Answers)

XSLT supports is supported by the browsers

  1. Mozilla Firefox
  2. Internet Explorer
  3. Opera
  4. ALL
Question 17 True/False

XSL is a programming language

  1. True
  2. False
Question 18 True/False

An XSL style sheet consists of one or more set of rules that are called templates.

  1. True
  2. False
Question 19 Multiple Choice (Single Answer)

What is stands for HTML?

  1. Hyper Text Markup Language
  2. Hyper Text My Language
  3. Higher Text Markup Language
  4. Hyper Text Multiple Language
Question 20 Multiple Choice (Single Answer)

What is HTML stands for?

  1. Hyper Text Markup Language
  2. Higher Text Markup Language
  3. Hyper Text My Language
  4. Hyper Text Makeup Language
Question 21 True/False

HTML tags normally come in pairs?

  1. True
  2. False
Question 22 Multiple Choice (Multiple Answers)

What is the extension for HTML file?

  1. htm
  2. html
  3. hta
  4. htl
Question 23 Multiple Choice (Single Answer)

What is used for Bulleted Lists in HTML?

  1. <ul>
  2. <ol>
  3. <dl>
  4. <gl>
Question 24 True/False

HTML headings are defined with the

to

tags?

  1. True
  2. False
Question 25 Multiple Choice (Single Answer)

HTML links are defined with the -- tag?

  1. <a>
  2. <p>
Question 26 Multiple Choice (Single Answer)

In the followsing code, what is "href" Code:- This is a link

  1. attribute
  2. Paragraph
  3. html tag
  4. property
Question 27 Multiple Choice (Single Answer)

For Horizontal rule, we can use in HTML as --

  1. <p>

  2. <hr>
Question 28 Multiple Choice (Single Answer)

In HTML, comments can be used as --

  1. /* This is a comment */
  2. 'This is a comment
  3. //This is a comment
  4. <!-- This is a comment -->
Question 29 Multiple Choice (Single Answer)

How to use style for an paragraph?

  1. style attribute
  2. class attribute
  3. id attribute
  4. name attribute
Question 30 Multiple Choice (Single Answer)

How to use radio button in HTML?

  1. <input type='radio' name='rdButton' id='rdButton'>
  2. <input type='check' name='rdButton' id='rdButton'>
  3. <input type='input' name='rdButton' id='rdButton'>
  4. <input type='text' name='rdButton' id='rdButton'>
Question 31 Multiple Choice (Single Answer)

Following code create the table having -- rows?

  1. Two Rows and One column
  2. Two columns and One Row
  3. Two Rows and Two columns
  4. One Row and One column
Question 32 Multiple Choice (Single Answer)

What does HTML stand for?

  1. Hyperlinks and Text Markup Language
  2. Hyper Text Markup Language
  3. Home Tool Markup Language
  4. Higher Text Markup Language
Question 33 Multiple Choice (Single Answer)

Who is making the Web standards?

  1. Mozilla
  2. Google
  3. Microsoft
  4. The World Wide Web Consortium