Interview Questions

AJAX Interview Questions Android Interview Questions Angular 2 Interview Questions AngularJs Interview Questions Apache Presto Interview Questions Apache Tapestry Interview Questions Arduino Interview Questions ASP.NET MVC Interview Questions Aurelia Interview Questions AWS Interview Questions Blockchain Interview Questions Bootstrap Interview Questions C Interview Questions C Programming Coding Interview Questions C# Interview Questions Cakephp Interview Questions Cassandra Interview Questions CherryPy Interview Questions Clojure Interview Questions Cobol Interview Questions CodeIgniter interview Questions CoffeeScript Interview Questions Cordova Interview Questions CouchDB interview questions CSS Buttons Interview Questions CSS Interview Questions D Programming Language Interview Questions Dart Programming Language Interview Questions Data structure & Algorithm Interview Questions DB2 Interview Questions DBMS Interview Questions Django Interview Questions Docker Interview Questions DOJO Interview Questions Drupal Interview Questions Electron Interview Questions Elixir Interview Questions Erlang Interview Questions ES6 Interview Questions and Answers Euphoria Interview Questions ExpressJS Interview Questions Ext Js Interview Questions Firebase Interview Questions Flask Interview Questions Flex Interview Questions Fortran Interview Questions Foundation Interview Questions Framework7 Interview Questions FuelPHP Framework Interview Questions Go Programming Language Interview Questions Google Maps Interview Questions Groovy interview Questions GWT Interview Questions Hadoop Interview Questions Haskell Interview Questions Highcharts Interview Questions HTML Interview Questions HTTP Interview Questions Ionic Interview Questions iOS Interview Questions IoT Interview Questions Java BeanUtils Interview Questions Java Collections Interview Questions Java Interview Questions Java JDBC Interview Questions Java Multithreading Interview Questions Java OOPS Interview Questions Java Programming Coding Interview Questions Java Swing Interview Questions JavaFX Interview Questions JavaScript Interview Questions JCL (Job Control Language) Interview Questions Joomla Interview Questions jQuery Interview Questions js Interview Questions JSF Interview Questions JSP Interview Questions KnockoutJS Interview Questions Koa Interview Questions Laravel Interview Questions Less Interview Questions LISP Interview Questions Magento Interview Questions MariaDB Interview Questions Material Design Lite Interview Questions Materialize CSS Framework Interview Questions MathML Interview Questions MATLAB Interview Questions Meteor Interview Questions MongoDB interview Questions Moo Tools Interview Questions MySQL Interview Questions NodeJS Interview Questions OpenStack Interview Questions Oracle DBA Interview Questions Pascal Interview Questions Perl interview questions Phalcon Framework Interview Questions PhantomJS Interview Questions PhoneGap Interview Questions Php Interview Questions PL/SQL Interview Questions PostgreSQL Interview Questions PouchDB Interview Questions Prototype Interview Questions Pure CSS Interview Questions Python Interview Questions R programming Language Interview Questions React Native Interview Questions ReactJS Interview Questions RequireJs Interview Questions RESTful Web Services Interview Questions RPA Interview Questions Ruby on Rails Interview Questions SAS Interview Questions SASS Interview Questions Scala Interview Questions Sencha Touch Interview Questions SEO Interview Questions Servlet Interview Questions SQL Interview Questions SQL Server Interview Questions SQLite Interview Questions Struts Interview Questions SVG Interview Questions Swift Interview Questions Symfony PHP Framework Interview Questions T-SQL(Transact-SQL) Interview Questions TurboGears Framework Interview Questions TypeScript Interview Questions UiPath Interview Questions VB Script Interview Questions VBA Interview Questions WCF Interview Questions Web icon Interview Questions Web Service Interview Questions Web2py Framework Interview Questions WebGL Interview Questions Website Development Interview Questions WordPress Interview Questions Xamarin Interview Questions XHTML Interview Questions XML Interview Questions XSL Interview Questions Yii PHP Framework Interview Questions Zend Framework Interview Questions Network Architect Interview Questions

Top 15 XHTML Interview Questions for 2022

1) What is XHTML?

XHTML (Extensible Hyper Text Markup Language) it is similar to the HTML but has some strict rule than HTML. It is said to be HTML defined as XML application.

2) Difference between XHTML and HTML.

Main differences are: On basis of Structure
DOCTYPE in XHTML is mandatory.

ATTRIBUTES of xmnls in <html> is mandatory.

Basic tags as <html>,<head>,<title>,<body> is mandatory.
On basis of Element
  • All elements must be properly nested.
  • All elements must always be closed.
  • XHTML document must have root element.
On basis of Attributes
  • Attributes name must be in Lower Case.
  • All values must be quoted of Attributes.
  • Attribute minimization is Forbidden.

3) Why prefer XHTML over HTML?

  • XHTML uses style sheets instead of tags (font, color, alignment tags etc).
  • XHTML embeds style sheets and scripts in CDATA section.
  • It is combination of XML + HTML.
  • It is portable i.e. non-pc platform can also access XHTML.

4) Describe validation in XHTML?

W3C validates and check the markup validity of Web Documents in XHTML.

5) Why choose XHTML over HTML ?

  • It uses style sheet over tags (font, color, alignment tags) of HTML.
  • In XHTML style sheets and scripts embeds in CDATA.
  • XHTML is the combination of XML + HTML.
  • It is Portable i.e. Non-PC platform can also run XHTML.

6) Elements in XHTML can be overlapped or not?

No, Elements cannot be overlapped in XHTML. Example:
<strong>Wrong</strong> <i> <b>Your Text </i></b>  

<strong>Right</strong> <i><b>Your Text </b></i>

7) How can "Value" in attribute is implemented in XHTML?

Example
<ul tutorial="tutorial"> <input type="radio" name="title" value="decline" checked="checked">  

decline  

</input>
 

8) Define Modularization in XHTML?

XHTML can be divided in many modules which are abstract and provide modularity i.e. complexity and ability to evolve known as Modularization in XHTML.

9) Give the use of XHTML Modules.

Its module helps is in XML DTD (Document Type Definition) Language.

10) What is the use of XSLT?

XSLT automatically converts the XHTML document into WML.

11) Enlist the types of DTD in XHTML.

It is of three types
  • Strict DTD
  • Transitional DTD
  • Frameset DTD

12) How to convert HTML into XHTML.

By changing some syntax or structure convention
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  

<html xmlns="http://www.w3.org/1999/xhtml">  

<head>  

        <title>Title of document</title>  

</head>  

<body>  

  some content   

</body>  

</html>

13) Can XHTML become the master storage format of resources?

No, as XHTML lacks few semantics error. Ideal format should be XML then we can used XSLT to convert resources to XHTML.

14) Describe the need of Modular DTD?

It makes easier to deploy new application as it uses only a subset of XHTML.

15) Define Document Object Model?

It is a W3C Standard for representation of structured document as an object oriented model. DOM acts as an application programming interface for accessing HTML and XML Documents.