Upload Button Icon Add office photos

Filter interviews by

Tata Group IoT Embedded Developer Interview Questions and Answers

Updated 6 Jun 2022

Tata Group IoT Embedded Developer Interview Experiences

1 interview found

I applied via Walk-in and was interviewed in May 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 - Aptitude Test 

Based on embedded system

Round 3 - Group Discussion 

To tell about the social media

Interview Preparation Tips

Interview preparation tips for other job seekers - Iam a decepline person, Time management and open to work

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2023. 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 - Technical 

(3 Questions)

  • Q1. C Programming basic questions
  • Q2. Microcontroller basics
  • Q3. IoT Protocols, TCP/IP, other protocols like MQTT etc..
Round 3 - Technical 

(2 Questions)

  • Q1. Digital electronics basics, analog related questions on hardware level
  • Q2. Technical scenario based questions, the work that we have done before
Round 4 - HR 

(1 Question)

  • Q1. We can only offer you 10% hike, this domain is not that niche. Prem Navaz Nazar was the HR with Divya P.
  • Ans. I was in an impression atleast the company has good reputation hence a 30% minimum hike is what I was expecting. If I stay another 2 months in my same company I will be getting 12-15% hike, don't you think 10% is very minimal? The fact that an HR told Embedded domain is not that niche, I lost interest in the company. That's the tactics they use to lure you into accepting low salaries. Think about this for joining the...
  • Answered Anonymously
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is basic of c
  • Ans. 

    Basics of C include syntax, data types, variables, functions, and control structures.

    • C is a procedural programming language

    • Variables must be declared before use

    • Functions are blocks of code that perform a specific task

    • Control structures include if-else, loops, and switch-case

    • Data types in C include int, float, char, etc.

  • Answered by AI
  • Q2. What is basic of embedded
  • Ans. 

    Embedded systems are specialized computing systems designed to perform specific tasks within a larger system.

    • Embedded systems are typically designed to be small, efficient, and reliable.

    • They often have limited resources such as memory, processing power, and energy.

    • Examples of embedded systems include microcontrollers in household appliances, automotive control systems, and industrial automation.

    • Embedded software is spe...

  • Answered by AI
  • Q3. What is basic of contoller
  • Ans. 

    The basic of a controller is to manage and regulate the operation of a system or device.

    • Controllers receive input signals and process them to generate output signals.

    • They can be programmed to perform specific tasks or functions.

    • Examples include microcontrollers, PLCs, and PID controllers.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Volatile keyword
  • Q2. Project specific
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Reason for job change
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

C basics , data structure, logical questions.
, pointers

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Percentage, speed, series, logical abulity, differnces

Round 2 - Technical 

(3 Questions)

  • Q1. C programs, protocols, Embedded C, pointers
  • Q2. Strings swapping nibbles using c
  • Ans. 

    Swapping nibbles of strings in C

    • Use bitwise operations to swap the nibbles of each character in the string

    • Iterate through each character in the string and swap the nibbles

    • Ensure to handle edge cases like strings with odd length or non-hex characters

  • Answered by AI
  • Q3. I2c, can, spi, uart
Round 3 - HR 

(2 Questions)

  • Q1. Normal hr questions
  • Q2. Self, company details

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online c programming test using online tool

Round 2 - One-on-one 

(1 Question)

  • Q1. Manager level round - explain about project and area of difficulty in embedded. Which one we work and fix issue
Round 3 - HR 

(1 Question)

  • Q1. Discuss about offer letter

Embedded Software Engineer Interview Questions & Answers

Infosys user image Vishnupriya Thamilarasan

posted on 1 May 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
-

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Very basic c questions like an array

I applied via Job Portal and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

They took the first round for one hour. They asked related to the projects which i have worked on and questions related to project

Round 2 - HR 

(1 Question)

  • Q1. What is the reason to leave previous company

Interview Preparation Tips

Topics to prepare for TCS Embedded Engineer interview:
  • C language
Interview preparation tips for other job seekers - related to projects, programming language skills

I applied via Recruitment Consultant and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. 1,. volatile keyword
  • Q2. 2. Difference between structure and union
  • Ans. 

    Structure is a collection of variables of different data types while union is a collection of variables of same data type.

    • Structure allocates memory for all its variables while union allocates memory for only one variable at a time.

    • Structure is used when we want to store different types of data while union is used when we want to store only one type of data at a time.

    • Structure is accessed using dot (.) operator while u...

  • Answered by AI
  • Q3. 3. How to enter if and else at the same time
  • Ans. 

    It is not possible to enter if and else at the same time in a programming language.

    • If and else are conditional statements that are mutually exclusive.

    • They are used to execute different blocks of code based on a condition.

    • To execute multiple blocks of code simultaneously, you can use nested if-else statements or logical operators.

  • Answered by AI
  • Q4. Program to find factorial of a number
  • Ans. 

    Program to find factorial of a number

    • Use a loop to multiply the number with all the numbers less than it

    • Handle the case when the number is 0 or 1 separately

    • Use recursion to find factorial of a number

  • Answered by AI
  • Q5. Explain recursion with an example
  • Ans. 

    Recursion is a process where a function calls itself until a base condition is met.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively

    • It requires a base case to stop the recursion and prevent infinite looping

    • Example: Factorial function - n! = n * (n-1)!, where the function calls itself with n-1 until n=1

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the C programming basics.

Skills evaluated in this interview

Tata Group Interview FAQs

How many rounds are there in Tata Group IoT Embedded Developer interview?
Tata Group interview process usually has 3 rounds. The most common rounds in the Tata Group interview process are Resume Shortlist, Aptitude Test and Group Discussion.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k 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
 • 3k Interviews
View all
Manager
117 salaries
unlock blur

₹7.1 L/yr - ₹28.8 L/yr

Assistant Manager
116 salaries
unlock blur

₹3.8 L/yr - ₹15 L/yr

Software Engineer
83 salaries
unlock blur

₹5 L/yr - ₹21 L/yr

Senior Manager
70 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Engineer
44 salaries
unlock blur

₹2.1 L/yr - ₹10.1 L/yr

Explore more salaries
Compare Tata Group with

Reliance Industries

4.0
Compare

Aditya Birla Group

4.1
Compare

Mahindra & Mahindra

4.1
Compare

Bharti Enterprises

3.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview