Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by TCS Team. If you also belong to the team, you can get access from here

TCS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TCS Mechanical Engineer Interview Questions and Answers for Freshers

Updated 16 Jun 2024

TCS Mechanical Engineer Interview Experiences for Freshers

1 interview found

Interview Questionnaire 

1 Question

  • Q1. What are your strengths?

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What is name mangling?

Skills evaluated in this interview

Mechanical Engineer Interview Questions Asked at Other Companies for Fresher

Q1. Thermodynamics law, How to calculate bearing block size,what type ... read more
Q2. If you were working at our plant in Surat, where the local langua ... read more
Q3. You have three boxes: one contains only apples, one contains only ... read more
Q4. On which planet do human beings live?
Q5. How can I verify your proficiency in Marathi, as stated in your r ... read more

I appeared for an interview in Dec 2016.

Interview Questionnaire 

3 Questions

  • Q1. Reason for low scores.
  • Ans. 

    Low scores due to lack of time management and exam anxiety.

    • Struggled to allocate enough time for each question

    • Difficulty managing time during the exam

    • Anxiety affecting performance under pressure

  • Answered by AI
  • Q2. Questions regarding my final year project.
  • Ans. 

    My final year project focused on designing a solar-powered water purification system for rural communities.

    • Conducted extensive research on existing water purification methods and their limitations.

    • Designed a prototype using solar panels to power the purification process, ensuring sustainability.

    • Tested the system's efficiency in removing contaminants from water samples, achieving over 90% purification.

    • Collaborated with ...

  • Answered by AI
  • Q3. Thermodynamics.

Interview Preparation Tips

College Name: NIT Warangal

I applied via Naukri.com and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Coming to AEM,Interviewer has covered all the topics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls don't join in TechMahindra.Especially for AEM Folks.Because there are no projects at all.They force you to learn and work in other domain.Then your AEM knowledge will vanish.Worst Company.

What people are saying about TCS

View All
an operations executive
3d
Going by the current news of layoffs at TCS, it’s honestly heartbreaking
People who’ve given their time, effort, and energy to the company are suddenly being shown the door. It really makes you think... no matter how senior or experienced you are, no role is ever fully safe. The same company that once relied on them is now asking them to leave. Feels unfair, honestly. And if there’s anyone who’s seen or experienced something off inside, maybe now’s the time to speak up. pls share your story. Not to point fingers, but just so others understand what actually goes on. We all deserve transparency. We all deserve better.
FeedCard Image
Got a question about TCS?
Ask anonymously on communities.

I applied via Campus Placement and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About the basics of c, c++ and java, also asked to explain the project that I developed.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and transparent. Explain your reasons and issues if any they are under standable.

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Past experience and communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

TCS HR Interview Questions

355 questions and answers

Q. Tell me about your work on your last project.
Q. What are the key responsibilities and how does this role work?
Q. Can you provide an explanation about yourself?

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Sir I am interested sir please follow me.
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

We should be clear on logics, syntax can be ignored but logics should be very clear

Round 3 - HR 

(2 Questions)

  • Q1. Are you comfortable working from any location
  • Q2. What are your expectations from our organisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be focused and be prepared. Try be as relaxed and clam you can.

Interview Questionnaire 

6 Questions

  • Q1. Explain abstract factory design pattern ?
  • Q2. How do you do range based map iteration
  • Ans. 

    Range based map iteration can be done using a for-each loop or iterators.

    • Use a for-each loop to iterate over the map elements.

    • Alternatively, use iterators to traverse the map.

    • The range-based for loop is preferred for its simplicity and readability.

    • Example: for(auto const& [key, value] : myMap) { //do something with key and value }

  • Answered by AI
  • Q3. What are detached and joined threads
  • Ans. 

    Detached threads are independent threads that run separately from the main thread. Joined threads are threads that wait for the main thread to finish.

    • Detached threads are created using pthread_detach() function

    • Joined threads are created using pthread_join() function

    • Detached threads do not need to be explicitly terminated

    • Joined threads must be explicitly terminated using pthread_exit() or return statement

    • Detached thread...

  • Answered by AI
  • Q4. What are static code analysis tools
  • Ans. 

    Static code analysis tools are software programs that analyze source code to find potential issues and improve code quality.

    • Static code analysis tools scan code without executing it

    • They can detect issues such as security vulnerabilities, coding errors, and performance problems

    • Examples of static code analysis tools include SonarQube, ESLint, and Checkstyle

  • Answered by AI
  • Q5. Command to list currently running threads in linux
  • Ans. 

    Command to list currently running threads in linux

    • Use the 'ps' command with the 'H' option to display threads in a hierarchy

    • Use the 'top' command to display threads in real-time

    • Use the 'htop' command for an interactive display of threads

  • Answered by AI
  • Q6. Can we perform arithmetic operation on Unique pointer
  • Ans. 

    No, arithmetic operations cannot be performed on unique pointers.

    • Unique pointers are used to manage the lifetime of dynamically allocated objects.

    • They cannot be copied or assigned, only moved.

    • Arithmetic operations are not defined for pointers, including unique pointers.

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Tell me About your self?
  • Q2. Hi, I am chandran
  • Q3. I did my school in govt ,hr ,sec, school nayakkanpatti I did my college in GKM COLLEGE OF ENGINEERING AND TECHNOLOGY,new perungalathur I committed in , BE MECHANICAL ENGINEERING

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very useful in my careyar,
And this is my frst interview for my life time,
This interview was a technical one but was majorly a stress test.it lasted for aboutq 1hour 10question asked to me ware related to my BE MECHANICAL ENGINEERING.i.e computer science related topic.

TCS Interview FAQs

How many rounds are there in TCS Mechanical Engineer interview for freshers?
TCS interview process for freshers usually has 1-2 rounds. The most common rounds in the TCS interview process for freshers are Technical and Resume Shortlist.
What are the top questions asked in TCS Mechanical Engineer interview for freshers?

Some of the top questions asked at the TCS Mechanical Engineer interview for freshers -

  1. What are the materials used in Aero-Engi...read more
  2. Gear ,turbo, difference type of mod...read more
  3. Difference Concentricity and Run ...read more

Tell us how to improve this page.

TCS Mechanical Engineer Salary
based on 64 salaries
₹4.2 L/yr - ₹8.7 L/yr
43% more than the average Mechanical Engineer Salary in India
View more details

TCS Mechanical Engineer Reviews and Ratings

based on 11 reviews

4.2/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.3

Salary

4.9

Job security

3.9

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 11 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹3.9 L/yr - ₹8.3 L/yr

IT Analyst
65.3k salaries
unlock blur

₹8 L/yr - ₹14.6 L/yr

AST Consultant
54.2k salaries
unlock blur

₹12.4 L/yr - ₹21 L/yr

Associate Consultant
33.6k salaries
unlock blur

₹15.3 L/yr - ₹28.4 L/yr

Assistant System Engineer
33.2k salaries
unlock blur

₹2.5 L/yr - ₹6.2 L/yr

Explore more salaries
Compare TCS with

Amazon

4.0
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

3.7
Compare
write
Share an Interview