Education
Education built the blueprint, the workshop made it real.
My degree in Computer Science & Applications (B.Sc. Hons)from Lovely Professional University gave me the foundations of algorithms, system design, and problem-solving. Graduating with Distinctionprepared me to think like an engineer.
Beyond the classroom, I treated every project like a workshop—experimenting, debugging, and refining. Along the way, earning myChartered Project Management (CIMP) certification helped me bridge theory with execution, sharpening both technical and leadership skills.
B.Sc (Hons) Computer Science & Applications · Lovely Professional University, IndiaDistinction
Graduated with distinction in Computer Science & Applications. Gained a strong foundation in programming, system architecture, and software engineering while working on hands-on projects and research.
Chartered Project Management (CIMP) · Chartered Institute of Project Management
Certified in project planning, execution, and leadership. Strengthened ability to manage cross-functional teams, deliver projects on time, and align technology initiatives with business goals.
educationJourney.ts
education = {
"degree": "B.Sc (Hons) Computer Science & Applications",
"institution": "Lovely Professional University, India",
"gpa": "Distinction",
"certifications": ["Chartered Project Management - CIMP"]
}
print(f"🎓 Degree: {education['degree']}")
print(f"🏫 Institution: {education['institution']} (GPA: {education['gpa']})")
for cert in education['certifications']:
print(f"📜 Certified in: {cert}")