Skip to main content

Engineering Career Insights: Interview with Dr. Vidhya

 Introduction:

 In my journey to understand the dynamic field of engineering and technology, I had the opportunity to interview Dr Vidhya(https://www.svce.ac.in/profile-info/?id=4297), the Head of the IT Department at Sri Venkateswara College of Engineering. With years of experience and a wealth of knowledge, Dr Vidhya shared valuable insights about engineering as a career, the stereotypical mindset of core branches, the impact of college reputation, choosing electives, and the value of an honours degree. Here’s what we learned.

Engineering: Beyond Physics and Maths

Many students choose engineering because of their strong foundation in physics and maths. However, Dr Vidhya emphasized that engineering offers much more than an extension of high school subjects. It’s an exciting career path that provides numerous opportunities to innovate and solve complex problems, leveraging the solid groundwork laid by these fundamental sciences.

The Scope of Core Branches

There’s a common stereotype that only Computer Science (CS) and Information Technology (IT) branches guarantee placements, while other branches have minimal scope. Dr Vidhya addressed this misconception by highlighting the evolving nature of core branches in the industry. She pointed out that core disciplines remain integral and when combined with expertise in emerging technologies like AI or Machine Learning, can significantly enhance a student’s career prospects.

The Impact of College Reputation

Aspiring engineers often aim for prestigious institutions like IITs and NITs, but only some manage to secure a spot. Dr Vidhya reassured that the college's name is not the ultimate determinant of success. Instead, what truly matters are the student’s interest, effort, and the skills they develop during their college years. She stressed the importance of choosing a college that offers training in current industry-relevant technologies and focusing on skill development over the next four years.

Choosing Elective Courses

Choosing the right elective courses is crucial for shaping one's career path. Dr Vidhya advised students to first build a strong foundation in their core subjects. She suggested creating a chart that outlines their interests, capabilities, and trends in their field for the next five years. By analyzing this with guidance from mentors, parents, and industry contacts, students can make informed decisions about their electives, aligning them with their career goals.

The Value of an Honors Degree

An honours degree can add significant value to a graduate’s profile. According to Dr Vidhya, the purpose of an honours degree is to certify that an individual is exceptionally skilled in a particular field. For instance, specializing in Data Science through an honours program can make a meaningful impact when entering the industry, demonstrating a high level of expertise and commitment.

Conclusion

The interview with Dr Vidhya provided profound insights into the field of engineering and technology. From debunking stereotypes about branch placements to emphasizing the importance of skills over college reputation, and from advising on elective choices to explaining the value of honours degrees, Dr Vidhya's guidance is invaluable for students and professionals alike. Focus on building relevant skills, stay curious, and continuously adapt to industry trends to succeed in the ever-evolving field of engineering.

What are your thoughts on these insights? Do you have any questions or experiences to share about your engineering journey? Leave your comments below, and let’s continue the conversation!

Comments

Popular posts from this blog

Essential Graphic Design Tools for Beginners: Insights from a New Designer

  This is a compilation of what Aishwarya shared in an interview I conducted with her. I've known Aishwarya for over 16 years. From a young age, she was interested in editing software, starting at just 10 years old. When I asked her what sparked her interest in graphic design , she explained that her innate creativity found an outlet in graphic design, allowing her to create amazing designs. Recently, I enjoyed exploring Aishwarya's Instagram, and I was truly impressed by her unique style and creativity. Her designs are a wonderful blend of simplicity and innovation, each piece reflecting her keen eye for detail and artistic flair. Aishwarya's journey into graphic design truly began during the lockdown. She started by making birthday videos for friends, some of the best I've seen. She mostly used her mobile phone and Filmora for her edits, gradually exploring more tools and delving into video editing. Regarding the software she uses, Aishwarya began with beginner-frien...

1ST HARD HITTING LESSON FROM COLLEGE

  BE Stubborn This is the 1st lesson college taught me. It taught me hard. It slapped tight and hard on my face and I cried. I cried a lot. I always thought that being stubborn is a bad quality one might possess, but in some cases, it’s not. It's showing others how confident you are about it and how much effort you have put into it. Today I failed to be stubborn. Remember the saying: "When you engage in people-pleasing, you are out of integrity with yourself." This is also applicable when you are not stubborn with yourself and your ideas. What exactly? Be stubborn about your goals & flexible about your methods. If you are confident about something and if you have a proper plan, never ever step down. Never! And never be afraid to take responsibility. It’s not about saying "paatukalam" to your teammates. It’s about giving them an idea. It involves organizing, having a proper plan in your head or better, on a piece of paper, and if you are a team lead, take up ...

XML vs. JSON: Understanding the Differences for Efficient Data Exchange

In data exchange, XML (eXtensible Markup Language) and JSON (JavaScript Object Notation) are widely used formats. Both have their strengths and weaknesses; understanding their differences is crucial for choosing the right one for your needs. Syntax XML : Uses a tag-based syntax. JSON : Utilizes a key-value pair syntax enclosed in curly braces {} or square brackets [] . Example: XML: <person>    <name>Harini</name>    <age>20</age> </person> JSON: {    "name": "John Doe",    "age": 30 } Data Types JSON : Supports a variety of data types including strings, booleans, arrays, and objects. XML : Considers all data as text, though it can represent complex structures using attributes and nested elements. Schema and Validation Schema and validation play a crucial role in ensuring data integrity and structure. I would love to share an analogy I read, If coding was cooking, the schema would be the...