Web Development Basics: HTML, JavaScript & XML
Fundamental concepts of web development including HTML tags and attributes, JavaScript syntax and methods, and XML document structure and syntax.
Questions
How can you open a link in a new browser window?
- <a href="url" target="_blank">
- <a href="url" target="new">
- <a href="url" new>
- <a window="url" new>
What is the correct HTML for making a checkbox?
- <input type="check" />
- <check>
- <checkbox>
- <input type="checkbox" />
Which set of tags looks like this? ·Dogs ·Cats ·Birds
- <ul></ul>
-
- <ol></ol>
- <dl></dl>
What is the HTML feature that divides a web page into two or more scrollable parts?
- Split Page
- Frame
- Forms
- Table
When you place a JavaScript on a Web page, which tag would you use?
- <JS></JS>
- <JSCRIPT></JSCRIPT>
- <JAVA></JAVA>
- <SCRIPT></SCRIPT>
What is the correct syntax of the declaration which defines the XML version?
- <?xml version="1.0"?>
- <xml version="1.0"/>
- <?xml version="1.0"/>
- <?xml version=1.0>
This is a "well formed" XML document? AXA TCS Reminder Please COnfirm your acceptance
- True
- False
XML elements cannot be empty
- True
- False
For the XML parser to ignore a certain section of your XML document, which syntax is correct?
- <![CDATA[ Text to be ignored ]]>
- <xml:CDATA[ Text to be ignored ]>
- <PCDATA> Text to be ignored </PCDATA>
- <CDATA> Text to be ignored </CDATA>
Choose the correct HTML tag for the largest heading
- <h1>
- <h6>
- <head>
- <heading>
What is the correct HTML for adding a background color?
- <background>yellow</background>
- <body background="yellow">
- <body style="background-color:yellow">
- <body style="background-color='yellow'">
How can you open a link in a new browser window?
- <a href="url" target="_blank">
- <a href="url" target="new">
- <a href="url" new>
- <a window="url" new>
What is the correct HTML for making a checkbox?
- <input type="check" />
- <check>
- <checkbox>
- <input type="checkbox" />
Which set of tags looks like this? ·Dogs ·Cats ·Birds
- <ul></ul>
-
- <dl></dl>
- <ol></ol>
What is the HTML feature that divides a web page into two or more scrollable parts?
- Split Page
- Frame
- Form
- table
When you place a JavaScript on a Web page, which tag would you use?
- <JS></JS>
- <JScript></JScript>
- <java></java>
- <script></script>
onBlur, onClick, and onFocus are all ______
- elements
- properties
- methods
- eventhandlers
What is the correct way to write a JavaScript array?
- var txt = new Array("tim","kim","jim")
- var txt = new Array:1=("tim")2=("kim")3=("jim")
- var txt = new Array(1:"tim",2:"kim",3:"jim")
- var txt = new Array="tim","kim","jim"
What is the correct JavaScript syntax for opening a new window called "w2" ?
- w2=window.open("http://www.w3schools.com");
- w2=window.open "http://www.w3schools.com";
- w2=window.new "http://www.w3schools.com";
- w2=window.new("http://www.w3schools.com");
//* in Xpath stands for
- all child nodes
- all elements
- all elements which have attributes
- no meaning at all