What is HTTP? Explain its working?
What is DNS?
Why do I need a domain name like 'www.aucse.Com'?
What happens when I type in some url and press enter?
How does CGI work? Can I use 'C' language to write a CGI?
Working of Proxy Server, Cookies, types of cookies?
What is Firewall?
How to redirect to another page?
Some questions on web servers.
What is DOM?
Connection Pooling in IIS 3.0 and 4.0
What is Code Base, Style Sheets?
Need for CSS
DHTML: Difference between FontSize and Font Size?
Layers in TCP/IP
Some sites work with "http://sitename.com" but for some sites we need to specify "www" - like "http://www.sitename.com". Why?
Explain "URL Encoding",HTML "entity", GET method, POST method
If we force XML for web design, the browzer size will reduce. How?
How does DTD work?
Difference between ASP and DHTML?
How to create virtual directory in IIS?
Can I host muliple sites on same machine?
Administration of IIS.
Some questions on ODBC and internet.
XML and propritory databbases.
Working of ping, telnet, gopher.
Some questions about cross-browzer compatibility.
Search Your Question
Thursday, April 17, 2008
Web Technology Concepts
Web designer interview questions
1. Whats is the difference between cellspacing and cellpadding?
2. If a page has to be loaded over all frames in window, what should be the value of TARGET attributes?
3. Which one of the following settlement is correct?
1. A table cannot contain another table
2. A Form can ve nested inside another form
3. Which element are table cells
4. List out tags that are support exclusively by IE and Netscape.
5. What tags are used to embed one html page inside another html page (without using frames)?
6. In dreamweaver what is used to apply same layout to my pages.
7. Which HTML tag is used to define an internal style sheet?
8. How do you define an inline style?
XML Interview Questions
1. what is XML?
XML stands for Extensible Markup Language
It is a meta-markup language (you make up your own tags)
XML is not a programming language, it is a data format
XML documents can be parsed.
2. What is the difference between XML & HTML?
XML describes data, HTML displays data.
HTML has predefined tags, in XML we define tags
HTML can be displayed on its own, XML cannot.
The combination of XML and HTML is XHTML.
3. What is a "well-formed" document?
The well formed document must obey the basic XML constraints like :
All Documents must have a prolog.
Document must have a root tag.
All begin-tags must have end-tags. (case sensitive)
All attribute values must be quoted.
Elements must be properly nested.
All entities must be declared.
If a document is not a well-formed document it is not a XML document.
4. What is DTD?
Document Type Definition defines the structure of an XML document. A
DTD can be declared inline in your XML document, or as an external
reference.
DTD defines :
What element (tag) names are allowed
What attributes are used with each element
Which child elements belong to which parent elements
What order child elements can appear in
Also declares entities and notations
5. What are the building blocks of XML?
Elements
Attributes
Entities
Notations
6. What is a valid document
If a document's structure and tag names match the information model,
it is `valid'. Validation is optional. A valid document is always
well-formed.
7. What is XSLT?
XSLT is a language for transforming the structure of XML documents.
The XSL Transformations (XSLT) vocabulary provides a rule-based
framework for selecting and processing document content, and
transforming it into new documents
8. What is XML Parser?
A set of software components designed for reading, processing and
creating XML documents.
Parsers expose the structures and tags within a XML document thus
making it easy to process XML documents.
9. What are the types of Parsers
DOM Vs SAX
SAX is event-based and DOM is object-based
SAX is developed by XML-Dev mailing list and DOM is a W3C
recommendation
DOM constructs a tree in memory and SAX does not
SAX is read-only and DOM is read-write.
SAX uses less memory and is fast & efficient
We also have Validating and non-validating parsers.
10. What is XML family ?
Display : XHTML, XSLT, XSL
Modeling : DTD, XML Schema
Manipulating : DOM, SAX
Querying : Xlink, XQL, Xpath