Attributes in XML indicate
Attributes in XML indicate
Attributes in XML indicate
Akilesh Kharvi ? Dec 8 '2016 at 21:26
Answer : a way of attaching properties to elements
Explanation:
Attributes are part of the XML elements. An element can have multiple unique attributes. Attribute gives more information about XML elements. To be more precise, they define properties of elements. An XML attribute is always a name-value pair.
Syntax
An XML attribute has following syntax:
<element-name attribute1="" attribute2="">
....content..
< /element-name>
example:
<garden>
<plants category="flowers"/>
<plants category="shrubs">
</plants>
</garden>
so Attribute is a way of attaching properties to elements
The software that establishes a standard way of information exchange between web servers and browsers is called
Which of the following is NOT a client-server application ?
Akilesh Kharvi ? Dec 8 '2016 at 21:22
Answer: Ping.
Explanation:
Ping is not a client server application. Ping is a computer network administration utility used to test the reachability of a host on an Internet Protocol (IP). In ping, there is no server that provides a service.
Which of the following objects can be used in expressions and scriplets in JSP without explicily declaring them ?
Nithin K ? Dec 7 '2016 at 23:16
Answer : Session and request only
Explanation:
Implicit objects in JSP are
Session: The session object for the client.
Request: the request triggering the execution of the JSP page.
What is the correct HTML tag for the largest heading ?
Nithin K ? Dec 7 '2016 at 23:15
Answer : h1
Explanation:
The "<h1>" to "<h6>" tags are used to define HTML headings. "<h1>" defines the most important heading. "<h6>" defines the least important heading.