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

Clear (1)

TCS Embedded Systems Engineer Interview Questions and Answers

Updated 20 Dec 2020

TCS Embedded Systems Engineer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Difference between C & CPP, rate your coding skills on a scale of 1 to 10, asked questions from my area of interest (cloud computing), couple of HR and Manegerial questions were asked in the middle too

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview was pretty seemless. I answered the questions confidently even though I was afraid and excited at the same time. A calm attitude is all you need to attend interview. I had 3 people in my panel. They were from HR, manegerial and technical interview conducted by each person separately at the same time. Since mine was a virtual interview, my video and audio was on and interviewers mic was only on, so I wasn't able to predict anything from their faces. Make sure your programming languages basics are strong (OOPS concept, difference between C,CPP and JAVA) and basic questions from your area of interest. Since mine wass an on-campus recruitment, I had sent my resume when I applied so they already had mine. I'm not sure about off-campus tho. Guessing it must be the same.
All the best do well, definitely don't panic and put up a very positive and confident attitude even tho you don't know the answer properly. Be subtle if you don't know the answer. Answer politely. Good luck and always remember "good things take time".

Interview questions from similar companies

I applied via Company Website and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is recursion ? what is inheritance? what is heap? write a code to find the largest element in an array?
  • Ans. 

    Recursion is a process in which a function calls itself. Inheritance is a mechanism in OOP where a class inherits properties of another class. Heap is a region of memory used for dynamic memory allocation.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems.

    • Inheritance allows for code reuse and helps in creating a hierarchy of classes.

    • Heap is used for dynamic memory allocation in la...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence till the end of the interview and be clear with your voice .

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. What are the types of Machine learning
  • Ans. 

    There are three types of machine learning: supervised, unsupervised, and reinforcement learning.

    • Supervised learning involves labeled data and predicting outcomes based on that data.

    • Unsupervised learning involves finding patterns in unlabeled data.

    • Reinforcement learning involves an agent learning to make decisions based on rewards and punishments.

    • Examples of supervised learning include image classification and spam filt...

  • Answered by AI
  • Q2. What is oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm that uses objects to design applications.

    • OOPs is based on the concept of classes and objects

    • It focuses on encapsulation, inheritance, and polymorphism

    • It helps in creating modular, reusable, and maintainable code

    • Examples of OOPs languages are Java, C++, Python, etc.

  • Answered by AI
  • Q3. What is SDLC
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used to design, develop, and maintain software.

    • SDLC is a structured approach to software development

    • It involves several phases such as planning, analysis, design, implementation, testing, and maintenance

    • Each phase has its own set of activities and deliverables

    • SDLC helps ensure that software is developed efficiently, on time, and within budget

    • Examples of SDLC mo

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Basics and advance
  • Q2. About Responsibilities

I applied via Company Website and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why infosys?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and energetic.Speak fluently.Thats what they are seeking for

I applied via Campus Placement and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical Interview - Questions Were related to my projects and some Basics of Programming and Software Testing

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are Confident about you , its enough to crack the Interview

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Swap two number with and without temporary variable
  • Ans. 

    Swap two numbers with and without temporary variable

    • Without temporary variable: Use addition and subtraction

    • With temporary variable: Use a third variable to store the value of one of the numbers

    • Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;

    • Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid. It companies take interview to select you. And if you are selected in this company you are not lucky enough so try hard.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Brief interview
  • Q2. OOP concept
  • Q3. About infosys

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

Interview Questionnaire 

1 Question

  • Q1. Online test

Interview Preparation Tips

Interview preparation tips for other job seekers - On

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

Interview Questionnaire 

4 Questions

  • Q1. What Challenges did you faced in Project? And how did you tackled those.
  • Ans. 

    Faced challenges in a project and how tackled them

    • One of the challenges was managing conflicting priorities among stakeholders. I tackled it by setting clear expectations and priorities, and communicating regularly with all parties involved.

    • Another challenge was dealing with unexpected technical issues. I tackled it by conducting thorough research, consulting with experts, and testing different solutions until the issu...

  • Answered by AI
  • Q2. What is Encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information to the user.

    • Encapsulation is a fundamental concept in object-oriented programming.

    • It helps in achieving data abstraction and information hiding.

    • It allows for better control over the data and prevents unauthorized access.

    • Encapsulation is implemented using access modifiers such as public, private, and protected.

    • For examp...

  • Answered by AI
  • Q3. What is Dailect in Hibernate?
  • Ans. 

    Dialect in Hibernate is a configuration setting that defines the type of database used.

    • Dialect is responsible for generating SQL statements specific to the database.

    • It handles the differences in SQL syntax and data types between different databases.

    • Examples of dialects include MySQLDialect, OracleDialect, and PostgreSQLDialect.

  • Answered by AI
  • Q4. Difference between interface and Abstraction.
  • Ans. 

    Interface defines the contract between two entities while Abstraction hides the implementation details.

    • Interface is a blueprint of a class that defines the methods and properties that a class must implement.

    • Abstraction is a way of hiding the implementation details of a class and exposing only the necessary details to the user.

    • Interface is used for achieving multiple inheritance in Java.

    • Abstraction is used for achieving...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep the communication good with the Interviewer and listen carefully and you will find 50% of approch in the explanation only.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

LIST OF COMPANIES

Polmon Instruments

Locations

LIST OF COMPANIES

Ametek Instruments India

Locations

COMPANY BENEFITS

Honda Motorcycle & Scooter

No Benefits

LIST OF COMPANIES

Marine Electricals

Locations

REVIEWS

DXC Technology

No Reviews

LIST OF COMPANIES

Luna Technologies

Locations

INTERVIEWS

ClickSoftware

No Interviews

REVIEWS

Acma Computers

No Reviews

INTERVIEWS

Infosys

No Interviews

LIST OF COMPANIES

Saud Bahwan Group

Locations

Tell us how to improve this page.

TCS Embedded Systems Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
TCS Embedded Systems Engineer Salary
based on 50 salaries
₹3.9 L/yr - ₹9 L/yr
17% less than the average Embedded Systems Engineer Salary in India
View more details

TCS Embedded Systems Engineer Reviews and Ratings

based on 7 reviews

3.5/5

Rating in categories

3.2

Skill development

3.0

Work-life balance

3.4

Salary

5.0

Job security

3.1

Company culture

2.5

Promotions

2.6

Work satisfaction

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

₹1 L/yr - ₹9 L/yr

IT Analyst
66.2k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.5k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹5.8 L/yr

Associate Consultant
29.6k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent