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
I​ n XML we can specify the frequency of an element by using the symbols:
A
+ * !
B
# * !
C
+* ?
D
- * ?
Question 11
In XML, DOCTYPE declaration specifies to include a reference to __________ file.
A
Document type Definition
B
Document type declaration
C
Document transfer definition
D
Document type language
Question 12
An XML document that adheres to syntax rules specified by XML 1.0 specification in that it must satisfy both physical and logical structured, is called:
A
Well - formed
B
Reasonable
C
Valid
D
Sophisticated
Question 12 Explanation: 
A well-formed document in XML is a document that "adheres to the syntax rules specified by the XML 1.0 specification in that it must satisfy both physical and logical structures".
Well formed documents requirements:
1. Content be defined.
2. Content be delimited with a beginning and end tag
3. Content be properly nested (parents within roots, children within parents)
Question 13
Which of the following statement(s) is/are TRUE regarding Java Servlets ?
(a) A Java Servlet is a server-side component that runs on the web server and extends the capabilities of a server.
(b) A Servlet can use the user interface classes like AWT or Swing.
A
Only (a) is TRUE.
B
Only (b) is TRUE.
C
Both (a) and (b) are TRUE.
D
Neither (a) nor (b) is TRUE.
Question 13 Explanation: 
TRUE: A Java Servlet is a server-side component that runs on the web server and extends the capabilities of a server.
FALSE: A Servlet can not use the user interface classes like AWT or Swing.
→ Servlets can respond to any types of requests, they most commonly implement web containers for hosting web applications on web servers and thus qualify as a server-side servlet web API.
Question 14
Consider the following HTML table definition:
<table border = 1>
   <tr>
            <td> colspan = 2> Text A </td>
  </tr>
   <tr>
              <td> Text B </td>
<td> Text C </td*gt;
   </tr>
 <tr>
               <td rowspan = 2> Text D </td>
 </tr>
 <tr>
          <td> Text E </td>
 <tr>
          <td> Text F </td>
 </tr>
</table>
The above HTML code would render on screen as:
A

B

C

D

Question 14 Explanation: 

Question 15
Which of the following statements is/are TRUE ?
(a) In HTML, character entities are used to incorporate external content into a web page, such as images.
(b) Once a web server returns a cookie to a browser, the cookie will be included in all future requests from the browser to the same server.
A
Only (a) is TRUE.
B
Only (b) is TRUE.
C
Both (a) and (b) are TRUE.
D
Neither (a) nor (b) is TRUE.
Question 15 Explanation: 
FALSE: Entities are used to display characters that have special HTML meaning, such as “<” and “>”.
FALSE: Once a web server returns a cookie to a browser, the cookie will be included in all future requests from the browser to the same server.
Question 16
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 17
An alternative to Java Script is
A
VBScript
B
ASP, NET
C
JSP
D
None of the given options
Question 18
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 19
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 20
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 21
Which tag is used to enclose any number of javascript statements in HTML document?
A
< code >
B
< script >
C
< title >
D
< body >
Question 21 Explanation: 
The < script > tag is used to define a client-side script (JavaScript).
The < script > element either contains scripting statements, or it points to an external script file through the src attribute.
Common uses for JavaScript are image manipulation, form validation, and dynamic changes of content.
Question 22
Match List-I with List-II:


Choose the correct option from those given below:
A
(a).(i), (b).(ii), (c).(iii), (d).(iv)
B
(a).(ii), (b).(i), (c).(iii), (d).(iv)
C
(a).(iv), (b).(iii), (c).(ii), (d).(i)
D
(a).(iii), (b).(iv), (c).(ii), (d).(i)
Question 22 Explanation: 
Frame attribute → To specify the side of the table frame that display border
The < frame > tag defines one particular window (frame) within a < frameset >.
Each < frame > in a < frameset > can have different attributes, such as border, scrolling, the ability to resize, etc.
< tr > tag → To enclose each row in a table.
The < tr > tag defines a row in an HTML table.
A < tr > element contains one or more or elements
Valign attribute → for vertical alignment of content in cell
< a > tag → To create link in HTML
Question 23

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 23 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 24

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 25

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 26

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 27

Which tag is used to display the numbered list?

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

The most popular way to materialize XML document is to use

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

Apache Tomcat is a

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

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 31
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 31 Explanation: 
Except the last statement, in all remaining cases the session will be closed.
Question 32
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 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
The default character encoding in HTML5 is ______.
A
UTF-16
B
UTF-32
C
UTF-8
D
ISO-8859-1
Question 40 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 41
_____ CSS property allows you to wrap a block of text around an image.
A
wrap
B
push
C
float
D
align
Question 42
What does < main > include?
A
Header
B
Sidebar
C
Article
D
Footer
Question 42 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 43
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 44
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 44 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 45
Adding the style attributes in HTML elements, is known to be ______.
A
Internal
B
Inline
C
Outline
D
External
Question 45 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 46
Term in the MVC architecture that receives events is called ______.
A
Receiver
B
Controller
C
Transmitter
D
Modulator
Question 46 Explanation: 
Term in the MVC architecture that receives events is called Controller.
Question 47
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 47 Explanation: 
The HTML < map > element is used with < area > elements to define an image map (a clickable link area).
Question 48
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 48 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: XML defines a syntax for representing data, but the meaning of data varies from application to application.
→ TRUE: XML is case sensitive.
Question 49
Discovery of cross sales opportunities is called as _____.
A
Association
B
Visualization
C
Correlation
D
Segmentation
Question 49 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 50
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 50 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.
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