Loading...
Education has always been the cornerstone of my journey into the tech world. Pursuing a Bachelors' in Information Technology at Veer Surendra Sai University Of Technology Burla, Sambalpur has provided me with a solid foundation in computer science and software engineering principles. My academic journey has been complemented by hands-on projects and coursework, enabling me to build practical skills and a deep understanding of modern technological solutions.
Started pursuing my btech degree from vssut burla
Joined Harkirats cohort
1
2const educationJourney = {
3 degree: "Bachelor of Engineering in Information Technology",
4 university: "VSSUT, Burla",
5 courses: [
6 "Mastering the MERN Stack",
7 "100x Dev by Harkirat Singh",
8 "Debugging: Survival Instinct",
9 "Pro-level Stack Overflow Navigation",
10 ],
11};
12
13console.log(`My Education: ${educationJourney.degree} at ${educationJourney.university}`);
14educationJourney.courses.forEach(course => console.log(`- ${course}`));
15