InterviewSolution
| 1. |
Give Me An Example Of Xml Document? |
|
Answer» <?XML version="1.0" encoding="UTF-8"?> <cars xmlns="http://www.withoutbook.com/cars" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.withoutbook.com/cars cars.xsd"> <car year="2001"> <make>BMW</make> <model>Z3</model> <color>yellow</color> </car> <car year="2001"> <make>Honda</make> <model>ODYSSEY</model> <color>green</color> </car> <car year="1997"> <make>Saturn</make> <model>SC2</model> <color>PURPLE</color> </car> </cars> <?xml version="1.0" encoding="UTF-8"?> <cars xmlns="http://www.withoutbook.com/cars" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.withoutbook.com/cars cars.xsd"> <car year="2001"> <make>BMW</make> <model>Z3</model> <color>yellow</color> </car> <car year="2001"> <make>Honda</make> <model>Odyssey</model> <color>green</color> </car> <car year="1997"> <make>Saturn</make> <model>SC2</model> <color>purple</color> </car> </cars> |
|