Web-Technologies

Question 1

Consider the following XML DTD describing course information in a university:

<!ELEMENT Univ (Course+, Prof+)>
<!ELEMENT Course (Title, Eval*)>
<!ATTLIST Course Number ID #REQUIRED Instructor IDREF #IMPLIED>
<!ELEMENT Title (#PCDATA)>
<!ELEMENT Eval (#PCDATA)>
<!ATTLIST Eval Score CDATA #REQUIRED>
<!ELEMENT Prof EMPTY>
<!ATTLIST Prof Name ID #REQUIRED Teaches IDREF #IMPLIED>

What is returned by the following XQuery?

let $as := //@Score
for $c in /Univ/Course[Eval]
let $cs := $c/Eval?@Score
where min($cs) > avg($as)
return $c 
A
The professor with the lowest course evaluation
B
Professors who have all their course evaluations above the university average
C
The course with the lowest evaluation
D
Courses with all evaluations above the university average
Question 1 Explanation: 
Note: Out of syllabus.
Question 2

Given below are HTML lines,

With reference to the HTML lines given above, consider the following statements.
(i) Clicking on the point <80, 75> does not have any effect.
(ii) The web browser can identify the area applicable to the mouse-click within the image and the subsequent action to be taken without additional responses from the web server.
(iii) The dots in the cgi-bin URL will be resolved by the web browser before it is sent to the web server.
(iv) The "fd.html" request when sent to the web server will result in a GET request.
Exactly how many of the statements given above are correct?

A
0
B
1
C
2
D
3
Question 2 Explanation: 
Note: Out of syllabus.
Question 3

Consider the XML document fragment given below:

Consider the XPath expression: *[not (self)::TOC]
What would be the result of the given XPath expression when the current node is Book?

A
The Title and Content elements
B
The Content and TOC elements
C
The Title and TOC elements
D
The Title, Content and TOC elements
Question 3 Explanation: 
Note: Out of syllabus.
Question 4

Which of the following is TRUE only of XML but NOT HTML?

A
It is derived from SGML
B
It describes content and layout
C
It allows user defined tags
D
It is restricted only to be used with web browsers
Question 4 Explanation: 
Note: Out of syllabus.
Question 5
Which of following statements is/are False?
1. XML overcomes the limitations in HTML to support a structured way of organizing content.
2. XML specification is not case sensitive while HTML specification is case sensitive.
3. XML supports user defined tags while HTML uses pre-defined tags.
4. XML tags need not be closed while HTML tags must be closed.
A
2 only
B
1 only
C
2 and 4 only
D
3 and 4 only
Question 6
In a web server, ten Web Pages are stored with the URLs of the form http://www.yourname.com/var.html; where, var is a different number from 1 to 10 for each Webpage. Suppose, the client stores the Webpage with var = 1 (say W1) in local machine, edits and then tests. Rest of the Web Pages remains on the web server. W1 contains several relative URLs of the form “var.html” referring to the other Web Pages. Which one of the following statements needs to be added in W1, so that all the relative URLs in W1 refer to the appropriate Web Pages on the web server?
A
<a.href: “http://www.yourname.com/”, href: “...var.html”>
B
<base href: “http://www.yourname.com/”>
C
<a.href: “http://www.yourname.com/”>
D
<base href: “http://www.yourname.com/”, range: “...var.html”>
Question 7

Consider the HTML table definition given below:



The number of rows in each column and the number of columns in each row are:

A
〈2, 2, 3〉 and 〈2, 3, 2〉
B
〈2, 2, 3〉 and 〈2, 2, 3〉
C
〈2, 3, 2〉 and 〈2, 3, 2〉
D
〈2, 3, 2〉 and 〈2, 2, 3〉
Question 7 Explanation: 
Note: Out of syllabus. [Web Technologies]
Question 8

HTML (Hyper Text Markup Language) has language elements which permit certain actions other than describing the structure of the web document. Which one of the following actions is NOT supported by pure HTML (without any server or client side scripting) pages?

A
Embed web objects from different sites into the same page
B
Refresh the page automatically after a specified interval
C
Automatically redirect to another page upon download
D
Display the client time as part of the page
Question 8 Explanation: 
Note: Out of syllabus.
Question 9

A graphical HTML browser resident at a network client machine Q accesses a static HTML webpage from a HTTP server S. The static HTML page has exactly one static embedded image which is also at S.  Assuming no caching, which one of the following is correct about the HTML webpage loading (including the embedded image)?

A
Q needs to send at least 2 HTTP requests to S, each necessarily in a separate TCP connection to server S
B
Q needs to send at least 2 HTTP requests to S, but a single TCP connection to server S is sufficient
C
A single HTTP request from Q to S is sufficient, and a single TCP connection between Q and S is necessary for this
D
A single HTTP request from Q to S is sufficient, and this is possible without any TCP connection between Q and S
Question 9 Explanation: 
By default, HTTP is a persistent connection.
Whenever a browser opens a webpage, a separate HTML request must be sent for each image or component in HTML like css file or javascript. But all can be done in the same TCP connection.
Question 10
In HTML, < map > tag is used for
A
defining a path between two nodes in an image
B
defining clickable region in an image
C
highlighting an area in an image
D
defining the site-map of a web-site
Question 10 Explanation: 
The HTML < map > element is used with < area > elements to define an image map (a clickable link area).
Question 11
Which of the following statements regarding XML is/are TRUE? (A) XML is a set of tags designed to tell browsers how to display text and images in a web page. (B) XML defines a syntax for representing data, but the meaning of data varies from application to application. (C) < Letter >, < LETTER > and < letter > are three different tags in XML Choose the correct answer from the options given below:
A
(A) and (B) only
B
(A) and (C) only
C
(B) and (C) only
D
(A), (B) and (C)
Question 11 Explanation: 
-XML was designed to carry data - with focus on what data is
-HTML was designed to display data - with focus on how data looks
→ FALSE: HTML is a set of tags designed to tell browsers how to display text and images in a web page.
→ TRUE
Question 12
The default character encoding in HTML5 is ______.
A
UTF-16
B
UTF-32
C
UTF-8
D
ISO-8859-1
Question 12 Explanation: 
For HTML5, the default character encoding is UTF-8.
This has not always been the case. The character encoding for the early web was ASCII.
Question 13
_____ CSS property allows you to wrap a block of text around an image.
A
wrap
B
push
C
float
D
align
Question 14
What does < main > include?
A
Header
B
Sidebar
C
Article
D
Footer
Question 14 Explanation: 
Answer can be option A also. Main tag contains the content that is main and unique to the document and is not repeated such as sidebar etc. Header can be in the main tag.
Question 15
Which of the following constructs is not supported by Java Server Pages?
A
JSP Directives
B
JSP Scriptlets
C
JSP Actions
D
JSP Reaction
Question 16
If we don’t want to allow a floating div to the left side of an element, ______ CSS property will we use.
A
margin
B
clear
C
float
D
padding
Question 16 Explanation: 
The clear property specifies on which sides of an element floating elements are not allowed to float.
Syntax: clear: none|left|right|both|initial|inherit;
Question 17
Adding the style attributes in HTML elements, is known to be ______.
A
Internal
B
Inline
C
Outline
D
External
Question 17 Explanation: 
CSS can be added to HTML documents in 3 ways:
Inline - by using the style attribute inside HTML elements
Internal - by using a < style > element in the < head > section
External - by using a < link > element to link to an external CSS file
The most common way to add CSS, is to keep the styles in external CSS files.
Question 18
Term in the MVC architecture that receives events is called ______.
A
Receiver
B
Controller
C
Transmitter
D
Modulator
Question 18 Explanation: 
Term in the MVC architecture that receives events is called Controller.
Question 19
Which of the following statements is not correct?
A
HTML is not screen precise formatting language.
B
HTML does not specify a logic.
C
DHTML is used for developing highly interactive web pages.
D
HTML is a programming language.
Question 19 Explanation: 
HTML is not a programming language. It is a markup language. The abbreviation of HTML is hypertext markup language.
Question 20
Consider the following script: < html > < head >< title > JavaScript < title >< / head > < body > < script language-“JavaScript” > var a=80 var b=(==80 ? “pass” : “fail”): document, write(b) < / script > < / body > < / html > What will be the output of the above script?
A
pass
B
fail
C
80
D
Error at line 6
Question 21
An alternative to Java Script is
A
VBScript
B
ASP, NET
C
JSP
D
None of the given options
Question 22
When destroy 0 method of servlet gets called?
A
The destroy 0 method is called only once at the end of the life cycle of a servlet.
B
The destroy 0 method is called after the servlet has executed service method.
C
The destroy 0 method is called only once at the end of the life cycle of a servlet. And destroy 0 method is called after the servlet has executed service method.
D
None of the given options
Question 23
FOR XML document to be valid
A
document need to be well-formed
B
document need to be validated against a DTD
C
document need to be well-formed and document need to be validated against a DTD
D
document should contain valid data
Question 24
Which of the following instruct the browser which style sheet to use
A
< xml-stylesheet type=”text/xsl” href=”cdxsl” >
B
< xml-stylesheet type=”text/xsl” xsl=’cd.xsl” >
C
< ’/xml-stylesheet type=”text/dsl” href=”cd.xsl”? >
D
< ?xml-styleshet type=”test/xsl” xsl=”cd.xsl”? >
Question 25

What is the difference between XML and HTML?

A
HTML is used for exchanging data, XML is not
B
XML is used for exchanging data, HTML is not
C
HTML can have user defined tags, XML cannot
D
XML is used for exchanging data, HTML is not (and) HTML can have user defined tags, XML cannot
Question 25 Explanation: 
XML (Extensible Markup Language) and HTML (Hypertext Markup Language) are both markup languages used to structure and organize content, but they serve different purposes.
XML is a meta-language, meaning it defines the structure of data, while HTML is a presentation language, meaning it defines how data is displayed. XML is used to store and transport data, while HTML is used to create web pages.
Question 26

What are tags used for?

A
To replace paragraph i.e., p tags
B
To logically divide the paragraphs
C
To logically divide the document
D
To provide space between tables
Question 27

What are meta tags used for?

A
To store information usually relevant to browsers and search engines
B
To only store information usually relevant to browsers
C
To only store information about search engines
D
To store information about external links
Question 28

Which is true to change the text colour to red?

A
< BODY BGCOLOUR=RED >
B
< BODY TEXT=RED >
C
< BODY COLOUR=RED >
D
None of the given options
Question 29

Which tag is used to display the numbered list?

A
< OL > < /OL >
B
< DL > < /DL >
C
< UL > < /UL >
D
< LI > < /LI >
Question 30

The most popular way to materialize XML document is to use

A
DTD
B
XSLT
C
HTML
D
SOAP
Question 30 Explanation: 
The most popular way to materialize XML document is to use XSLT ( eXtensible Stylesheet Language)
Question 31

Apache Tomcat is a

A
Servlet
B
Java program
C
web server
D
web server that is capable of running Java programs
Question 32

In Javascript, what does in NaN function do?

A
Return true, if the argument is not a number
B
Return false, if the argument is not a number
C
Return true, if the argument is a number
D
None of the given options
Question 33
Which of the following is correct Content-Type header that a server side script should send for SSE in HTML5?
A
Content-Type: text/event-stream
B
Content-Type: text/ application-stream
C
Content-Type: text/data-stream
D
None of the options
Question 34
_________ is automatically loaded and operates as part of browser.
A
Add-ons
B
Plug-ins
C
Utilities
D
Widgets
Question 34 Explanation: 
Plug-ins is automatically loaded and operate as part of the browser.
Question 35
Which element is used to define discrete unit of content such as a blogpost, comment and so on?
A
section
B
class
C
article
D
none of the options
Question 36
Which of the following tag is used intended for navigation in HTML5?
A
nav
B
footer
C
section
D
navigation tag
Question 36 Explanation: 
The < nav > tag defines a set of navigation links.
Notice that NOT all links of a document should be inside a < nav > element. The < nav > element is intended only for major blocks of navigation links.
Browsers, such as screen readers for disabled users, can use this element to determine whether to omit the initial rendering of this content.
Question 37
How to specify the comment in the XML document?
A
< ?- -- >
B
< !-- --! >
C
< !-- -- >
D
< /-- -- >
Question 37 Explanation: 
The syntax for writing comments in XML is similar to that of HTML:
< !-- This is a comment -->
Question 38
Limitations of the XML Data Type are:
A
It cannot be compared or sorted. This means an XML data type cannot be used in a GROUP BY statement.
B
It cannot be used as a key column in an index.
C
The value() method of the XML data type returns a scalar value, so it can be specified anywhere where scalar values are allowed.
D
All of the options.
Question 38 Explanation: 
Limitations of the xml Data Type:
Note the following general limitations that apply to the xml data type:
The stored representation of xml data type instances cannot exceed 2 GB.
It cannot be used as a subtype of a sql_variant instance.
It does not support casting or converting to either text or ntext. Use varchar(max) or nvarchar(max) instead.
It cannot be compared or sorted. This means an xml data type cannot be used in a GROUP BY statement.
It cannot be used as a parameter to any scalar, built-in functions other than ISNULL, COALESCE, and DATALENGTH.
It cannot be used as a key column in an index. However, it can be included as data in a clustered index or explicitly added to a nonclustered index by using the INCLUDE keyword when the nonclustered index is created.
XML elements can be nested up to 128 levels.
Question 39
PI in XML specification stands for _______.
A
priceless instruction
B
processing instruction
C
polymorphic inheritance
D
primary instruction
Question 39 Explanation: 
A Processing Instruction (PI) is an SGML and XML node type, which may occur anywhere in the document, intended to carry instructions to the application.
Processing instructions are exposed in the Document Object Model as Node.PROCESSING_INSTRUCTION_NODE, and they can be used in XPath and XQuery with the 'processing-instruction()' command.
Question 40
Consider the following statements for XML (Extensible Markup Language) :
A. The number of tags decreases and users can define their own tags.
B. It is used for Presentation.
C. It is case sensitive.
D. It is dynamic.
Which of the above statements are true ?
A
B, C, D only
B
A, B, D only
C
A, C, D only
D
B, D only
Question 41
Match List - I with List - II.
List-I
(A) HTML
(B) DHTML
(C) XML
(D) JAVA
List-II (IV) Used for data storage and transport.
Choose the correct answer from the options given below:
A
(A)-(I), (B)-(III), (C)-(IV), (D)-(II)
B
(A)-(II), (B)-(I), (C)-(IV), (D)-(III)
C
(A)-(II), (B)-(I), (C)-(III), (D)-(IV)
D
(A)-(III), (B)-(IV), (C)-(II), (D)-(I)
Question 42
Which one of the following allows the session to continue?
A
When a user quits a browser
B
When the user logs out and is invalidated by the servlet
C
When the session is timed out due to inactivity
D
When the user refreshes the browser and there is a persistent cookie
Question 42 Explanation: 
Except the last statement, in all remaining cases the session will be closed.
Question 43
Which mechanism in XML allows organizations to specify globally unique names as element tags in documents?
A
root
B
header
C
schema
D
namespace
Question 44
Discovery of cross sales opportunities is called as _____.
A
Association
B
Visualization
C
Correlation
D
Segmentation
Question 44 Explanation: 
→ Association rule learning is a rule-based machine learning method for discovering interesting relations between variables in large databases. It is intended to identify strong rules discovered in databases using some measures of interestingness.
→ This rule-based approach also generates new rules as it analyzes more data. The ultimate goal, assuming a large enough dataset, is to help a machine mimic the human brain’s feature extraction and abstract association capabilities from new uncategorized data.
Question 45
Which of the following is the correct statement for declaring and assigning the value of 100 to an integer variable called stdno ?
A
Dim stdno=100
B
Dim stdno=100 As Integer
C
Dim stdno As Integer=100
D
Dim stdno As Integer(100)
Question 45 Explanation: 
Specifying an Initial Value: →You can assign a value to a variable when it is created. For a value type, you use an initializer to supply an expression to be assigned to the variable. The expression must evaluate to a constant that can be calculated at compile time.
→Dim quantity As Integer = 10
Dim message As String = "Just started"
Question 46
Which of the following methods in VB is used to load the form into memory and display it on the screen?
A
Load
B
Display
C
Visible
D
Show
Question 46 Explanation: 
Show method displays a UserForm object.
Syntax: [ object ].Show modal

The Show method syntax has these parts:

Question 47
In ASP, which of the following methods is used to end the current user session and destroy the current session object immediately?
A
Session.Exit
B
Session.End
C
Session.Abandon
D
Session.terminate
Question 47 Explanation: 
→Clear - Removes all keys and values from the session-state collection.
→Abandon - removes all the objects stored in a Session. If you do not call the Abandon method explicitly, the server removes these objects and destroys the session when the session times out.It also raises events like Session_End.
Question 48
<DT> tag is designed to fit a single line of our web page but <DD> tag will accept
A
A character
B
A word
C
A line of text
D
Full paragraph
Question 48 Explanation: 
→The
tag is used to describe a term/name in a description list.
→The
tag is used in conjunction with
(defines a description list) and
(defines terms/names).
→Inside a
tag you can put paragraphs, line breaks, images, links, lists, etc.
Question 49
Which of the following are the types of Cascading Style Sheets(CSS)?
A
Local,Internal and External
B
Inline,Inhouse and External
C
Inbuilt,Internal and External
D
Inline,Internal and External
Question 49 Explanation: 
Three types of Cascading Style Sheets(CSS) are Inline,Internal and External
Question 50
Which of the following is true to open a link in a new browser window?
A
< a href=”url” target=”_blank” >
B
< a href=”url” target=”_new” >
C
< a href=”url” target=”_top” >
D
< a href=”url” target=”_self” >
Question 50 Explanation: 
The < a > tag defines a hyperlink, which is used to link from one page to another. Default target
If no target is specified, the link will open in the current context, unless the user or browser specifies otherwise.
a target=”_blank” Open in New Browser Tab (or Window)
The target attribute specifies where the linked document will open when the link is clicked. The default is the current window. If target="_blank", the linked document will open in a new tab or (on older browsers) a new window.
There are 50 questions to complete.

Access subject wise (1000+) question and answers by becoming as a solutions adda PRO SUBSCRIBER with Ad-Free content

Register Now