0% found this document useful (0 votes)
2 views

xml_json_csv

The document provides examples of data representation in different formats including JSON, XML, and CSV. Each format displays student information such as registration number, name, percentage, contact details, and current employment status. The examples illustrate how the same data can be structured differently depending on the format used.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

xml_json_csv

The document provides examples of data representation in different formats including JSON, XML, and CSV. Each format displays student information such as registration number, name, percentage, contact details, and current employment status. The examples illustrate how the same data can be structured differently depending on the format used.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

#################

Json Format -Example


#################
{
"Student": {
"RegNumber": "123456",
"StudentName": "John Doe",
"OverallPercentage": 85.5,
"ContactNumber": "9876543210",
"CurrentDetails": {
"Status": "Working",
"Organization": "ABC Pvt Ltd",
"Position": "Software Developer"
}
}
}

#################
XML Format -Example
#################
<Student>
<RegNumber>123456</RegNumber>
<StudentName>John Doe</StudentName>
<OverallPercentage>85.5</OverallPercentage>
<ContactNumber>9876543210</ContactNumber>
<CurrentDetails>
<Status>Working</Status>
<Organization>ABC Pvt Ltd</Organization>
<Position>Software Developer</Position>
</CurrentDetails>
</Student>
#################
CSV Format
#################
RegNumber,StudentName,OverallPercentage,ContactNumber,Status,Organization,Position
123456,John Doe,85.5,9876543210,Working,ABC Pvt Ltd,Software Developer
##############

You might also like