0% found this document useful (0 votes)
6 views3 pages

College-Db Json

The document contains information about three students, including their IDs, names, ages, GPAs, and enrolled courses. It also lists four courses with details such as course IDs, names, credits, instructors, and semesters. The students and courses are structured in a JSON format, providing a clear overview of the academic data.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views3 pages

College-Db Json

The document contains information about three students, including their IDs, names, ages, GPAs, and enrolled courses. It also lists four courses with details such as course IDs, names, credits, instructors, and semesters. The students and courses are structured in a JSON format, providing a clear overview of the academic data.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

{

"students": [
{
"student_id": "S001",
"first_name": "Vetri",
"last_name": "Vasanth",
"age": 22,
"gpa": 8.9,
"courses": [
{ "course_id": "C101", "course_name": "Computer Science", "credits": 3 },
{ "course_id": "C102", "course_name": "Mathematics", "credits": 4 }
]
},
{
"student_id": "S002",
"first_name": "Sara",
"last_name": "Kumar",
"age": 21,
"gpa": 9.2,
"courses": [
{ "course_id": "C101", "course_name": "Computer Science", "credits": 3 },
{ "course_id": "C103", "course_name": "Physics", "credits": 4 }
]
},
{
"student_id": "S003",
"first_name": "Anu",
"last_name": "Sharma",
"age": 23,
"gpa": 7.5,
"courses": [
{ "course_id": "C102", "course_name": "Mathematics", "credits": 4 },
{ "course_id": "C104", "course_name": "Chemistry", "credits": 3 }
]
}
],
"courses": [
{
"course_id": "C101",
"course_name": "Computer Science",
"credits": 3,
"instructor": "Prof. John Doe",
"semester": "Fall 2025"
},
{
"course_id": "C102",
"course_name": "Mathematics",
"credits": 4,
"instructor": "Prof. Jane Smith",
"semester": "Spring 2025"
},
{
"course_id": "C103",
"course_name": "Physics",
"credits": 4,
"instructor": "Prof. Mary Johnson",
"semester": "Fall 2025"
},
{
"course_id": "C104",
"course_name": "Chemistry",
"credits": 3,
"instructor": "Prof. Alan Brown",
"semester": "Spring 2025"
}
]
}
{
"students": [
{
"student_id": "S001",
"first_name": "Vetri",
"last_name": "Vasanth",
"age": 22,
"gpa": 8.9,
"courses": [
{ "course_id": "C101", "course_name": "Computer Science", "credits": 3 },
{ "course_id": "C102", "course_name": "Mathematics", "credits": 4 }
]
},
{
"student_id": "S002",
"first_name": "Sara",
"last_name": "Kumar",
"age": 21,
"gpa": 9.2,
"courses": [
{ "course_id": "C101", "course_name": "Computer Science", "credits": 3 },
{ "course_id": "C103", "course_name": "Physics", "credits": 4 }
]
},
{
"student_id": "S003",
"first_name": "Anu",
"last_name": "Sharma",
"age": 23,
"gpa": 7.5,
"courses": [
{ "course_id": "C102", "course_name": "Mathematics", "credits": 4 },
{ "course_id": "C104", "course_name": "Chemistry", "credits": 3 }
]
}
],
"courses": [
{
"course_id": "C101",
"course_name": "Computer Science",
"credits": 3,
"instructor": "Prof. John Doe",
"semester": "Fall 2025"
},
{
"course_id": "C102",
"course_name": "Mathematics",
"credits": 4,
"instructor": "Prof. Jane Smith",
"semester": "Spring 2025"
},
{
"course_id": "C103",
"course_name": "Physics",
"credits": 4,
"instructor": "Prof. Mary Johnson",
"semester": "Fall 2025"
},
{
"course_id": "C104",
"course_name": "Chemistry",
"credits": 3,
"instructor": "Prof. Alan Brown",
"semester": "Spring 2025"
}
]
}

You might also like