0% found this document useful (0 votes)
15 views12 pages

Chayan XML

Dbbcxxbskshsbsk dkshzjs sjjsgsjsjs djyddbjskx hsknsbdhd djdjdhwnkss nsjshdbs

Uploaded by

rajdipr36
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views12 pages

Chayan XML

Dbbcxxbskshsbsk dkshzjs sjjsgsjsjs djyddbjskx hsknsbdhd djdjdhwnkss nsjshdbs

Uploaded by

rajdipr36
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Input:

<?xml version="1.0" encoding="UTF"?>

<College>

<Student>

<firstname> Chayan</firstname>

<lastname> Jana </lastname>

<contact> +919599733425 </contact>

<email> [email protected] </email>

<Address>

<city> Pingla </city>

<state>West Bengal</state>

<pin> 721140 </pin>

</Address>

</Student>

</College>
Output:
Input:

<?xml version="1.0" encoding="UTF"?>

<Employee>

<Name>

<First-name> Chayan</First-name>

<Last-name> Jana </Last-name>

</Name>

<Contact>

<Mobile> +919599733425 </Mobile>

<Landline> 03222-233452 </Landline>

</Contact>

<Address>

<City> Midnapore </City>

<Street> Keranitola Street </Street>

<Zip-code> 721101 </Zip-code>

</Address>

</Employee>
Output:
Input:

<?xml version="1.0" encoding="UTF"?>

<Book-info>

<Title>XML Complete Reference</Title>

<Author-name>Heather Williamson</Author-name>

<Publisher-name>Tata Mcgraw Hill</Publisher-name>

<ISBN-number>007044725X</ISBN-number>

<Edition>July, 2024</Edition>

<Price>Rs 690.00</Price>

</Book-info>
Output:
Input:
<?xml version="1.0" encoding="UTF"?>

<Bookstore>

<book category="cooking">

<title lang="English"> Everyday Italian </title>

<author> Giada De Laurentiis </author>

<year> 2005 </year>

<price> 30.00 </price>

</book>

<book category="children">

<title lang="English"> Harry Potter </title>

<author> K.Rowling </author>

<year> 2005 </year>

<price> 29.99 </price>

</book>

<book category="web">

<title lang="English"> Learning XML </title>

<author> Erik T.Roy </author>

<year> 2003 </year>

<price> 39.95 </price>

</book>

</Bookstore>
Output:
5. Create a valid XML document with at least five details of breakfast
menu like: name,price,description,calories.

Input:
<?xml version="1.0" encoding="UTF"?>

<menu>

<food>

<name> Belgian Waffles </name>

<price currency="$"> 5.95 </price>

<description> Two of our famous Belgian waffles with plenty of real maple syrup </description>

<calories>

<fat>"7.7" </fat>

<total>"310"</total>

</calories>

<vitamins>

<a> 7 </a>

<c> 0 </c>

</vitamins>

</food>

<food>

<name> Strawberry Belgian Waffles </name>

<price currency="$"> 7.95 </price>

<description> Light Belgian waffles covered with strawberries and whipped cream </description>

<calories>

<fat>"6.7" </fat>

<total>"410"</total>

</calories>

<vitamins>

<a> 3 </a>

<c> 9 </c>

</vitamins>

</food>

</menu>
Output:
6. Write a XML document for Customer with following details:Name(first
name and last name),address(post,dist,state and
pin),product(name,price),order date.

Input:

<?xml version="1.0" encoding="UTF"?>

<Customer-info>

<Name>

<first-name> Chayan </first-name>

<last-name> Jana </last-name>

</Name>

<address>

<post> medinipur </post>

<dist> Paschim Medinipur </dist>

<state> West bengal </state>

<pin> 721140 </pin>

</address>

<product>

<name> lux-soap </name>

<price> Rs 30.00 </price>

</product>

<order-date> 18.05.2024 </order-date>

</Customer-info>
Output:

You might also like