Problem Statement: The resume features that are covered by my XML
language are the following:
- Name
- Home and School Address
- Major of study
- Education
| XML Tag | Description |
| <resume> .... </resume> | resume |
| <name> .... </name> | name category |
| <firstname> .... </firstname> | first name |
| <lastname> .... </lastname> | last name |
| <address> .... </address> | address category |
| <homeaddress> .... </homeaddress> | home address |
| <schooladdress> .... </schooladdress> | school address |
| <major> .... </major> | major |
| <education> .... </education> | education |
| <highschool> .... </highschool> | high school |
| <college> .... </college> | college |
XML INPUT CODE
- <?xml version="1.0"?>
- <resume>
- <name>
- <lastname>Lattanzio </lastname>
- <firstname>William</firstname>
- </name>
- <address>
- <homeaddress> 123 Fake Street</homeaddress>
- <schooladdress> 123 Not Real Road</schooladdress>
- </address>
- <major> Engineering</major>
- <specialty> Civil</specialty>
- <education>
- <highschool> Fakeville High</highschool>
- <college> Univ. of Maryland</college>
- </education>
- </resume>
XML OUTPUT PREVIEW
- Lattanzio William
- 123 Fake Street
- 123 Not Real Road
- Engineering
- Civil
- Fakeville High
- Univ. of Maryland
Tree Diagram of tag hiearchy and content
- Resume
- Name
- Address
- Home Address
- School Address
- Major of study
- Education