Education
Degree: Bachelor's
12345
678910
// GIET University (2024 - 2028)
const education = {
program: "B.Tech in Computer Science",
major: "Applied Mathematics",
status: "Active (Year 1/2)",
extracurricular: [
"Data Science Club Member",
"Python Researcher"
]
};
Secondary Education
12345
678910
// St. Xavier's High school (2021 - 2023)
struct HigherSecondary {
string board = "CBSE";
string stream = "Science Major";
float top_performing_in = ["Physics", "Calculus"];
void achievements() {
print("Consistent Top Performer");
}
};