Upload Button Icon Add office photos

Filter interviews by

Tirex Chargers Senior Embedded Hardware Engineer Interview Questions and Answers

Updated 30 Aug 2022

Tirex Chargers Senior Embedded Hardware Engineer Interview Experiences

1 interview found

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 

(1 Question)

  • Q1. Present and expected ctc. HR policies
  • Ans. 

    I prefer not to disclose my current salary. As for expected CTC, I am looking for a competitive package based on my experience and skills.

    • I am open to negotiation based on the job requirements and responsibilities

    • I am looking for a package that is commensurate with my experience and skills

    • I am aware of the company's HR policies and am willing to abide by them

    • I am looking for a long-term career opportunity with growth p

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. About experience related. Skill related. Tools & Soft skill related. About expertise.

Interview Preparation Tips

Interview preparation tips for other job seekers - Company always looks for good candidature for growing.
Make sure your designation and related work roles & responsibility.
Make feel your experience to your interviewer.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Bare metal code for blinking an LED,
  • Ans. 

    Blinking an LED using bare metal code involves directly manipulating hardware registers without an operating system.

    • Access the GPIO register for the specific pin connected to the LED

    • Set the pin as an output

    • Toggle the pin state at regular intervals to create the blinking effect

  • Answered by AI
  • Q2. Different types of pointers, volatile variable, storage classes, Static and extern keywords, ISR,
  • Ans. 

    Different types of pointers, volatile variable, storage classes, Static and extern keywords, ISR

    • Pointers: Null pointer, void pointer, function pointer

    • Volatile variable: Used to indicate that a variable may be changed by external factors

    • Storage classes: auto, register, static, extern

    • Static keyword: Used to declare variables that are only accessible within the same file

    • Extern keyword: Used to declare variables that are d...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Find nth largest number in a jumbled array
  • Ans. 

    Use sorting to find the nth largest number in a jumbled array.

    • Sort the array in descending order.

    • Access the nth element in the sorted array to find the nth largest number.

  • Answered by AI
  • Q2. Deeper questions on static, compilation

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Compilation process in c
  • Ans. 

    Compilation process in C involves preprocessing, compiling, assembling, and linking.

    • Preprocessing: Includes header files, macro expansions, and conditional compilation.

    • Compiling: Translates source code to assembly code specific to the target architecture.

    • Assembling: Converts assembly code to machine code in object files.

    • Linking: Combines object files and libraries to generate an executable file.

  • Answered by AI
  • Q2. Write a function pointer syntax?
  • Ans. 

    Function pointer syntax allows for storing the address of a function in a pointer variable.

    • Syntax: return_type (*pointer_name)(parameters)

    • Example: void (*funcPtr)(int) = &someFunction;

  • Answered by AI
  • Q3. Discussion on current project?
  • Q4. Reverse the string?
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end of the string

    • Continue swapping until reaching the middle of the string

  • Answered by AI
  • Q5. Set , clear and toggle the bit
Round 2 - HR 

(2 Questions)

  • Q1. Mostly salary discussion
  • Q2. Tell about yourself

Interview Preparation Tips

Topics to prepare for TCS Embedded Firmware Engineer interview:
  • Embedded C
Interview preparation tips for other job seekers - Prepare it well.

Skills evaluated in this interview

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
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Asked regarding programs
  • Q2. Asked regarding questions of memory structure
  • Q3. What is Compilation process
  • Ans. 

    Compilation process is the process of converting source code into machine code by a compiler.

    • Source code is written in a high-level programming language

    • Compiler translates the source code into assembly code

    • Assembler converts the assembly code into machine code

    • Final executable file is generated

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice ..I got selected
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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Programing language
Round 3 - Aptitude Test 

Syllabus based question

Round 4 - HR 

(1 Question)

  • Q1. Introduction, education

Tirex Chargers Interview FAQs

How many rounds are there in Tirex Chargers Senior Embedded Hardware Engineer interview?
Tirex Chargers interview process usually has 3 rounds. The most common rounds in the Tirex Chargers interview process are Resume Shortlist, HR and Technical.
What are the top questions asked in Tirex Chargers Senior Embedded Hardware Engineer interview?

Some of the top questions asked at the Tirex Chargers Senior Embedded Hardware Engineer interview -

  1. Present and expected ctc. HR polic...read more
  2. About experience related. Skill related. Tools & Soft skill related. About expe...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.8k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.4k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
Genpact Interview Questions
3.9
 • 2.9k Interviews
View all

Tirex Chargers Senior Embedded Hardware Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Senior Accountant
4 salaries
unlock blur

₹4.4 L/yr - ₹5 L/yr

Explore more salaries
Compare Tirex Chargers with

Exide Industries

3.5
Compare

Amaron Batteries

4.6
Compare

Luminous Power Technologies

4.2
Compare

Su-Kam Power Systems

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview