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 Electronics Engineer Interview Questions and Answers

Updated 17 Nov 2024

7 Interview questions

An Electronics Engineer was asked 7mo ago
Q. Write a program to swap two variables.
Ans. 

A SWAP program exchanges the values of two variables without using a temporary variable.

  • Use XOR operation to swap two variables without using a temporary variable.

  • Example: a = 5, b = 10. After swapping, a = 10, b = 5.

  • Ensure to handle cases where the variables are the same.

An Electronics Engineer was asked 7mo ago
Q. Draw an OR gate and an AND gate.
Ans. 

An OR gate outputs true if at least one input is true; an AND gate outputs true only if all inputs are true.

  • OR Gate Symbol: A curved shape with two inputs and one output.

  • AND Gate Symbol: A flat shape with two inputs and one output.

  • Example of OR Gate: If input A is 0 and input B is 1, output is 1.

  • Example of AND Gate: If input A is 1 and input B is 1, output is 1.

Electronics Engineer Interview Questions Asked at Other Companies

asked in vivo
Q1. What is CMOS and MOSFET Types of mosfet and define them How do i ... read more
Q2. UPS technical and working process how transformer works what does ... read more
Q3. How do you check the acceleration time parameter in a Danfoss VFD ... read more
Q4. Give me an example of when you had to compromise code quality to ... read more
Q5. Which plants have you worked with, such as LMW, Rieter, or others ... read more
An Electronics Engineer was asked
Q. What are the different data types?
Ans. 

Data types are classifications that specify which type of value a variable can hold.

  • Data types include integers, floating point numbers, characters, strings, and booleans.

  • Examples of data types are int (for integers), float (for floating point numbers), char (for characters), and bool (for booleans).

🔥 Asked by recruiter 3 times
An Electronics Engineer was asked
Q. What is a join in SQL?
Ans. 

Join in SQL is used to combine rows from two or more tables based on a related column between them.

  • Join is used to retrieve data from multiple tables based on a related column

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

What people are saying about TCS

View All
a digital marketer
3d
Do you think they're gonna work on employees' work-life balance, OR for just publicity?
Infosys, Infosys, TCS, Genpact Revise Workplace Policies Infosys is sending a warning mail, if an employee overshoots the daily limit while working remotely, the system triggers a notification Genpact introduced a new policy to log in before 11 am But will these companies really change, or is it just a show to mask their issues?
FeedCard Image
Got a question about TCS?
Ask anonymously on communities.
An Electronics Engineer was asked
Q. What is a class and how do you create one?
Ans. 

A class is a blueprint for creating objects in object-oriented programming.

  • Classes define the properties and behaviors of objects.

  • To create a class, use the 'class' keyword followed by the class name and curly braces.

  • Inside the class, you can define attributes (variables) and methods (functions).

  • Example: class Car { String color; void start() { //code here } }

🔥 Asked by recruiter 28 times
An Electronics Engineer was asked
Q. What is polymorphism?
Ans. 

Polymorphism is a concept in object-oriented programming where a single function or method can operate on different types of data.

  • Polymorphism allows for flexibility and reusability in code

  • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding)

  • Example: a function that can calculate the area of different shapes (circle, square, triangle) based on the input type

🔥 Asked by recruiter 2 times
An Electronics Engineer was asked
Q. What is inheritance and what are its types?
Ans. 

Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

  • Inheritance allows for code reusability and promotes a hierarchical relationship between classes.

  • There are different types of inheritance such as single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

  • Example: Class B inheriting from Class A - 'class B ...

Are these interview questions helpful?

TCS Electronics Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude exam was about time, distance, verbal reasoning, work, and all. It was easy.

Round 2 - Technical 

(2 Questions)

  • Q1. Draw OR gate and AND gate
  • Ans. 

    An OR gate outputs true if at least one input is true; an AND gate outputs true only if all inputs are true.

    • OR Gate Symbol: A curved shape with two inputs and one output.

    • AND Gate Symbol: A flat shape with two inputs and one output.

    • Example of OR Gate: If input A is 0 and input B is 1, output is 1.

    • Example of AND Gate: If input A is 1 and input B is 1, output is 1.

  • Answered by AI
  • Q2. SWAP program for two variables
  • Ans. 

    A SWAP program exchanges the values of two variables without using a temporary variable.

    • Use XOR operation to swap two variables without using a temporary variable.

    • Example: a = 5, b = 10. After swapping, a = 10, b = 5.

    • Ensure to handle cases where the variables are the same.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TCS Electronics Engineer interview:
  • Java
Interview preparation tips for other job seekers - Advance a programming language and have a good knowledge in your core academics.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jun 2022. There were 4 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 - Aptitude Test 

Aptitude test and code test is there for and need to pass

Round 3 - Technical 

(6 Questions)

  • Q1. Technical round with logical and theory questions will be there
  • Q2. What is inheritance and type of
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Inheritance allows for code reusability and promotes a hierarchical relationship between classes.

    • There are different types of inheritance such as single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

    • Example: Class B inheriting from Class A - 'class B exten...

  • Answered by AI
  • Q3. What is poly morph sm
  • Ans. 

    Polymorphism is a concept in object-oriented programming where a single function or method can operate on different types of data.

    • Polymorphism allows for flexibility and reusability in code

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding)

    • Example: a function that can calculate the area of different shapes (circle, square, triangle) based on the input type

  • Answered by AI
  • Q4. What is class and how to create
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • Classes define the properties and behaviors of objects.

    • To create a class, use the 'class' keyword followed by the class name and curly braces.

    • Inside the class, you can define attributes (variables) and methods (functions).

    • Example: class Car { String color; void start() { //code here } }

  • Answered by AI
  • Q5. What are the data type
  • Ans. 

    Data types are classifications that specify which type of value a variable can hold.

    • Data types include integers, floating point numbers, characters, strings, and booleans.

    • Examples of data types are int (for integers), float (for floating point numbers), char (for characters), and bool (for booleans).

  • Answered by AI
  • Q6. What is join in sql
  • Ans. 

    Join in SQL is used to combine rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables based on a related column

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Question based on salary negotiation and background and qualifications

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear and study the basics of the languages and oops concepts

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What is name mangling?

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions based on the CV we kept
  • Q2. Questions related to powershell, storages, networking in azure IaaS, NSG

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare whatever u kept in CV and the basics

What people are saying about TCS

View All
a digital marketer
3d
Do you think they're gonna work on employees' work-life balance, OR for just publicity?
Infosys, Infosys, TCS, Genpact Revise Workplace Policies Infosys is sending a warning mail, if an employee overshoots the daily limit while working remotely, the system triggers a notification Genpact introduced a new policy to log in before 11 am But will these companies really change, or is it just a show to mask their issues?
FeedCard Image
Got a question about TCS?
Ask anonymously on communities.

Interview Questionnaire 

1 Question

  • Q1. Spring and SpringBoot

Interview Questionnaire 

1 Question

  • Q1. Design facebook
  • Ans. 

    Designing Facebook is a complex task involving various components and technologies.

    • Identify the core features of Facebook such as user profiles, news feed, messaging, and groups.

    • Choose appropriate technologies for each component such as PHP for backend, React for frontend, and MySQL for database.

    • Ensure scalability and performance by implementing caching, load balancing, and database sharding.

    • Implement security measures...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Database, logical reasoning

Skills evaluated in this interview

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.
Are these interview questions helpful?

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 before Feb 2021. There were 2 interview rounds.

Round 1 - Case Study 
Round 2 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process is smooth and majorly asked direct questions and some scenarios

Interview Questionnaire 

1 Question

  • Q1. React hooks

TCS Interview FAQs

How many rounds are there in TCS Electronics Engineer interview?
TCS interview process usually has 3 rounds. The most common rounds in the TCS interview process are Aptitude Test, Technical and Resume Shortlist.
What are the top questions asked in TCS Electronics Engineer interview?

Some of the top questions asked at the TCS Electronics Engineer interview -

  1. What is class and how to cre...read more
  2. What is inheritance and type...read more
  3. What are the data t...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
TCS Electronics Engineer Salary
based on 7 salaries
₹3 L/yr - ₹7.1 L/yr
14% more than the average Electronics Engineer Salary in India
View more details

TCS Electronics Engineer Reviews and Ratings

based on 4 reviews

3.5/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.7

Salary

3.7

Job security

3.7

Company culture

3.4

Promotions

3.5

Work satisfaction

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

₹3.9 L/yr - ₹8.3 L/yr

IT Analyst
65.5k salaries
unlock blur

₹7.7 L/yr - ₹12.7 L/yr

AST Consultant
53.6k salaries
unlock blur

₹12 L/yr - ₹20.6 L/yr

Assistant System Engineer
33.2k salaries
unlock blur

₹2.5 L/yr - ₹6.4 L/yr

Associate Consultant
33k salaries
unlock blur

₹16.2 L/yr - ₹28 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