May 11, 2019

Srikaanth

Dell Boomi HTML Interview Questions Answers

What Does A <hgroup> Tag Do?

It is used for heading sections. Header tags used are from <h1> to <h6>. The largest is the main heading of the section, and the others are sub-headings.

Which Video Formats Are Used For The Video Element?

Ogg, MPEG4, WebM.

How Can We Embed Video In Html5?

<video src="movie.ogg" controls="controls"></video>

Which Video Format Is Supported By Ie?

IE supports MPEG4 and WebM.

Name The Audio Formats Supported In Html5?

Ogg Vorbis, MP3, WAV.

What Will The Following Code Do?
<audio Src="song.ogg" Controls="controls"></audio>


It will play the audio file named song.ogg.

How Will You Define Canvas With Reference To Html5?

It is a rectangular area, where we can control every pixel.

How Is Xhtml Better Than Html?

The following are the reasons for why XTML is better than HTML

XHTML uses style sheets instead of font, color and alignment tags of HTML.
XHTML allows to style sheets and scripts embedding in CDATA section.
XML of XHTML eases the integration of new elements as subsets of SGML.
Portable – Non-pc platforms can be accessed with XHTML.
Dell Boomi Most Frequently Asked HTML Interview Questions Answers
Dell Boomi Most Frequently Asked HTML Interview Questions Answers

What Is Xhtml Modularization? Why Xhtml Modularization?

The decomposition of XHTML and by reference HTML into a group of modules that are abstract to provide modularity is known as XHTML modularization. These modules are utilized in the XML document type definition language. The rules needed to define the abstract model uses XML DTD.
Modularization of XHTML refers to specify well defined set of XHTML elements which can be compiled and extended by the XHTML document developers, other XML standards specifications.
Modularization of XTML acts as a means for the designers of product for specifying the elements that supports a specific devise by using standard building blocks and standard methods for building blocks usage. The content community gets “points of conformance” by using these modules.

What Is Xhtml Validation?

XHTML validation is the process of validating XHTML document with w3c’s validator

How Is Xhtml Better Than Html? Why Would You Want To Use Xhtml?

to be able to take advantage of new coding techniques
problems with the earlier versions have been fixed.
XHTML is a fairly close copy of HTML 4.01.

Extensibility : Under HTML, the addition of a new group of elements requires alteration of the entire DTD. XML greatly eases the integration of new element collections as it is a subset of SGML itself and specifies it's own DTD.

Portability : By the year 2002 as much as 75% of Internet access could be carried out on non-PC platforms such as palm computers, televisions, fridges, automobiles, telephones, etc. In most cases these devices will not have the computing power of a desktop computer, and will not be designed to accommodate ill-formed HTML as do current browsers.

Currently, the Netscape browser helps greatly for testing web pages by displaying blank or broken pages when it comes across sloppy coding. IE is the most forgiving browser and will show almost any page no matter the extent of coding errors. While HTML itself isn't completely lacking in extensibility or portability but the evolution of it has been extremely slow compared to the pace of Internet development. This fuels the problems encountered trying to make your pages work on a wide range of browsers and platforms. XHTML will help to remedy those problems.

Is Is Right Only Certain Tags May Nest Inside Other Tags In Xhtml?

Yes, In XHTML we can insert only certain tags inside other tags. Example
<ol> Some my favorite flowers are
<li>lotus</li>
<li>lilly</li>
<li>sunflower</li>
and my most favorite flower is
<li>red rose</li> </ol>
In the above example we insert the paragraph between
<li> tag.It's wrong. In case of XHTML our example looks like that, becomes <p>
Some my favorite flowers are:</p> <ol>
<li>lotus</li>
<li>lilly</li>
<li>sunflower</li>
<li>red rose</li>
</ol>

What Is Xhtml? Why Xhtml?

XHTML stands for Extensible Hypertext Markup Language. It is a combination of XML and HTML capabilities. XHTML can be viewed as intersection of HTML and XML in many aspects.

Why To Use Xhtml?

Most of the web pages contain bad HTML Combines the strengths of both XML and HTML.
XHTML is strict in defining the tags, like Properly nested elements.
All elements must always be closed.
All elements must be written in lower case.
Every XHTML document must have one root element.

Differences Between Xml And Html

Since XML and HTML are derived from SGML they are similar, but have the following differences
1. XML is case-sensitive.
2. XML must have quotes (single or double) around attributes.
3. Most interpreters of HTML are very forgiving about missing end tags – XML parses are not.
4. Comments start with <– and end with –>. Inside a comment, "–" may not appear. Although this is fine in html, it confuses xml parsers.

In Xhtml Tags May Overlap Or Not?

In XHTML tags may not be overlapped.
Example: <em> emphasized text and <b>bold </em>text</b> We can use above example in XHTML like that, <em>emphasized text </em> is <b>bold text</b>

Write Example That Shows Every Attribute Must Have A Value In Xhtml?

Using example I will show you in XHTML every attribute must have a value.
Example in HTML
<ol compact> <input type="radio" name="title" value="decline" checked>decline</input>
Below, I write a same example in XHTML. <ol compact="compact" > <input type="radio" name="title" value="decline" checked="checked">decline</input> In this we assign value compact, checked to element compact and checked.

Why Is This Xslt Important?

Rather than manually creating WML markup, XSLT will enable XHTML documents to be automatically converted to WML.

Should I Use An Http Get Or Post For My Ajax Calls?

AJAX requests should use an HTTP GET request when retrieving data where the data will not change for a given request URL. An HTTP POST should be used when state is updated on the server. This is in line with HTTP idempotency recommendations and is highly recommended for a consistent web application architecture.

Subscribe to get more Posts :