A Learning Portal from Recruitment India
Relative URLs are used to ____________
link the same page with other sites
link other pages with other sites
link other pages within the same site
does not link
Answer with explanation
Answer: Option CExplanation
Relative URLs are used for linking other pages within the same site. These are the shorthand version of absolute URLs. It does not need a domain name. These URLs are helpful when building a site on a computer because we can create links between pages without having set up for hosting or domain name.
Workspace
How can you make an e-mail link?
<mail href +”[email protected]”>
<a href =”mail to: [email protected]”>
<a href = “[email protected]”>
Both (b) and (c)
Workspace
Which of the following statement is true?
Attribute names must be in uppercase
Attribute values should not be quoted
Attribute minimization is mandatory
Attribute values must be quoted
Answer with explanation
Answer: Option DExplanation
HTML is hypertext markup language. There are many rules and regulations in HTML for attribute specification. HTML is case in-sensitive and thus we can write attribute name in either uppercase or lowercase, none of it is going to make difference. There is nothing like that atrribute name should be minimized, we can write attribute name as long as and as short as we want. The only rule for attribute name is that it should be in quoted form.
Workspace
The web standard allows programmers on many different computer platforms to dispersed format and display the information server. These programs are called?
Web Browsers
HTML
Internet Explorer
None of these
Answer with explanation
Answer: Option AExplanation
Web Browsers
Workspace
What will happen if the height and width of the video are not set while video loads?
page flickers
page crash
none of the mentioned
Answer with explanation
Answer: Option AExplanation
If height and width are not set, the browser does not know the size of the video. The effect will be that the page will change (or flicker) while the video loads.
Workspace
Choose the correct statement for HTML
Exo is a cloud-based ide that offers collaboration and deployment features
Exo does not support java and python
Exo supports javascript and html5
Both a and c
Answer with explanation
Answer: Option DExplanation
Exo provides a free, cloud-based IDE that offers collaboration and deployment features. In addition to HTML5 and JavaScript, it supports the development of Java, Ruby, and Python applications.
Workspace
Which of the following type attributes of input element defines control for entering a telephone number?
mob
tel
mobile
telephone
Answer with explanation
Answer: Option BExplanation
The input element with a type attribute whose value is “tel” represents a one-line plain-text edit control for entering a telephone number.
Workspace
Which of the following property is used to determine which drag operation was desired?
dragend
getData
dropEffect
captureData
Answer with explanation
Answer: Option CExplanation
During the drop event, you should retrieve that data that was dropped from the event and insert it at the drop location. One can use the dropEffect property to determine which drag operation was desired.
Workspace
Which of the following is the first web browser?
Nexus
Netscape Navigator
Internet Explorer
Mosaic
Answer with explanation
Answer: Option AExplanation
The first web browser was invented in 1990 called World Wide Web which was later renamed to Nexus.
Workspace
The __________ defines the syntax of markup constructs and include additional definitions such as character entity references.
Attributes
DTD
Elements
SGML
Answer with explanation
Answer: Option BExplanation
The DTD defines the syntax of markup constructs. The DTD may include additional definitions such as character entity references.
Workspace
What is the use of “defer” attribute?
It defers rendering of html page
It defers script execution until the page has been rendered
It defers rendering of css attributes
None of mentioned
Answer with explanation
Answer: Option BExplanation
The defer attribute is a boolean attribute. When present, it specifies that the script is executed when the page has finished parsing.
Workspace
Which tag can be used to insert a horizontal line on a web page?
< hr>
< br>
< line>
< line direction = “horizontal”>
Answer with explanation
Answer: Option DExplanation
The < hr> tag gives a thematic break on the page. An example can be a change of topic.
Workspace
What should we add to a template in Dreamweaver in order to control where page content goes?
Content Controllers
Frames
HTML controllers
Editable Regions
Answer with explanation
Answer: Option DExplanation
Editable template regions control which areas of a template-based page a user can edit.
Workspace
Which plugins can provide fallback support for old browsers?
Flash
Quicktime
both a and b
none of the mentioned
Answer with explanation
Answer: Option CExplanation
An attribute of the format: type=”application/x-shockwave-flash” will justify the purpose.
Workspace
Calling the ______________ method during both a dragenter and dragover event will indicate that a drop is allowed at that location.
drop
drag
preventDefault
dataTransfer
Answer with explanation
Answer: Option CExplanation
Calling the preventDefault method during both a dragenter and dragover event will indicate that a drop is allowed at that location. However, you will commonly wish to call the preventDefault method only in certain situations, for example, only if a link is being dragged.
Workspace
We can define ________ number of sites with one copy of dreamweaver installed on our computer.
990
10
only 1
unlimited
Answer with explanation
Answer: Option DExplanation
Dreamweaver is an IDE to build custom web apps and applications. There is no definite limit to it.
Workspace
Which CSS property is used with the direction property to set or return whether the text should be overridden to support multiple languages in the same document?
direction
line-height
color
unicode-bidi
Answer with explanation
Answer: Option DExplanation
Unicode-bidi
Workspace
__________ can be used to advise the browser to download media content in the background to improve playback.
autobuffer
buffer
data-X
Answer with explanation
Answer: Option BExplanation
It suggests to the browser that it should load as much of the resource as possible. As long as the browser’s own media cache isn’t full, it will keep on downloading.
Workspace
Which of the following property is common in all drag events?
drag effects
drag data
dataTransfer
dragcenter
Answer with explanation
Answer: Option CExplanation
The dataTransfer property of all drag events holds data about the drag and drop operation.
Workspace
Which of the following is used to read a HTML page and render it?
Web matrix
Web browser
Web server
None of the mentioned
Answer with explanation
Answer: Option BExplanation
A web browser (commonly referred to as a browser) is a software application for retrieving, presenting and traversing information resources on the World Wide Web.
Workspace