Upload Button Icon Add office photos

Filter interviews by

Tibrewala Electronics Interview Questions and Answers

Updated 18 Jul 2024

Tibrewala Electronics Interview Experiences

Popular Designations

3 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Explain about ur previous job

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (8)

Interview Questionnaire 

5 Questions

  • Q1. 1.How is interview process & what about
  • Q2. Hindi & English Communication is very important in this company and 70 to 80% Technical related knowledge important.
  • Q3. How is Company working culture & atmosphere?
  • Q4. Good working culture but Little bit work pressure.
  • Q5. How is Salary?

Interview Preparation Tips

Interview preparation tips for other job seekers - Finally i got good job in Ltd company.

Design Engineer Interview Questions asked at other Companies

Q1. Stress Strain curve, What will happen if you use petrol in diesel engine and Diesel in petrol engone.
View answer (5)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Mar 2022

I applied via Company Website and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Quality Tools& lean management
  • Q2. Previous company work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - job seekers Should be able to know job description & company details

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Communication Concepts
  • Q2. Embedded Concepts

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlisted based on CGPA and Profile
Tips: CGPA above 7.5 and Communication/CS based coursework/ability

Round: Test
Experience: C Coding Questions which checked basic knowledge of C
Tips: Brush up your C skills. Questions are easy but may require knowledge of stuff like what is big endian and little endian etc.
Duration: 1 hour 30 minutes
Total Questions: 12

Round: Technical Interview
Experience: My Communication relation concepts were tested. My Major Project was asked in detail.
Tips: If Comm background, prepare ITC, MultiCarrier/Wireless at a good level. If not they will ask C.

Round: Technical Interview
Experience: I was asked basic level embedded concepts.
Tips: Prepare on the following and similar stuff : How to implement a pseudo dynamic memory allocation using flash memory- which data structure to use. How does Inter Process Communication work. How does a multicore processor synchronizes its cores. If Comm background, give the TX and RX chain design (Wireless System Design)

Skills: Communication Systems, Embedded Systems, C Programming
College Name: IIT Madras

Software Engineer Interview Questions & Answers

MaxLinear user image Gayathri S ee15m052

posted on 4 Dec 2016

I applied via Campus Placement and was interviewed before Dec 2015. There were 2 interview rounds.

Interview Preparation Tips

Round: Test
Experience: It was a written test with some numerical aptitude questions and coding questions. The test was fairly easy
Duration: 1 hour

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Preparation Tips

Round: Test
Experience: It was a written test with some numerical aptitude questions and coding questions. The test was fairly easy
Tips: Learn about pointers and using function pointers

Round: Technical Interview
Experience: First, I was asked to brief about the projects I have done so far. Then there were some questions about C programming like pointers, const pointers, storage classes, volatile keyword etc. It was followed by some basic questions about computer architecture, microcontroller, FPGA, RTOS

Round: Technical Interview
Experience: In this round I was asked to write algorithm for some simple problems like checking if a given integer (not string) is palindrome or not, checking if a number is a multiple of 3 (using bitwise operations) etc

College Name: IIT Madras

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. DS and Algo questions based on DP and backtracking
  • Q2. Clone linked list with random pointers.
  • Ans. 

    Clone a linked list with random pointers.

    • Create a new node for each node in the original list.

    • Store the mapping between the original and cloned nodes in a hash table.

    • Traverse the original list again and set the random pointers in the cloned list using the hash table.

    • Return the head of the cloned list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly DS and Algo rounds followed by design rounds. Sometimes there can be language specific questions.

Skills evaluated in this interview

I applied via Referral and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic c programming
  • Q2. Previous experience questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest. And prepare well in data structures
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Pointer and linked list

Round 3 - Case Study 

Pure technical on kernel programming

Round 4 - Technical 

(3 Questions)

  • Q1. Pure technical questions on background project
  • Q2. Mutex semaphore and spinlock
  • Q3. How you will achieve multi threaded programming
  • Ans. 

    Multi-threaded programming can be achieved by creating multiple threads that run concurrently.

    • Identify the tasks that can be executed in parallel

    • Create threads using threading libraries in the chosen programming language

    • Synchronize the threads to avoid race conditions and deadlocks

    • Use locks, semaphores, and mutexes to manage shared resources

    • Optimize the performance by balancing the workload among threads

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Why you want to join this company
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. This was more like shortlisting round with manager. Asked about resume and previous work experience. Not much Technical questions.
Round 3 - One-on-one 

(5 Questions)

  • Q1. Python programming questions, Basics
  • Q2. Python oops concepts
  • Q3. What is module in Python
  • Ans. 

    A module in Python is a file containing Python code, which can define functions, classes, and variables.

    • Modules help organize Python code into reusable components

    • Modules can be imported into other Python scripts using the 'import' keyword

    • Examples of modules in Python include math, random, and os

  • Answered by AI
  • Q4. Python memory management
  • Q5. Basic Devops questions

Skills evaluated in this interview

Tibrewala Electronics Interview FAQs

How many rounds are there in Tibrewala Electronics interview?
Tibrewala Electronics interview process usually has 1 rounds. The most common rounds in the Tibrewala Electronics interview process are Technical and HR.
How to prepare for Tibrewala Electronics interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Tibrewala Electronics. The most common topics and skills that interviewers at Tibrewala Electronics expect are Sales, Field Sales, Market Research, Sales Management and Digital Marketing.
What are the top questions asked in Tibrewala Electronics interview?

Some of the top questions asked at the Tibrewala Electronics interview -

  1. Hindi & English Communication is very important in this company and 70 to 80% T...read more
  2. Good working culture but Little bit work pressu...read more
  3. Quality Tools& lean managem...read more

Tell us how to improve this page.

Tibrewala Electronics Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Havells Interview Questions
4.0
 • 209 Interviews
Blue Star Interview Questions
4.1
 • 159 Interviews
Voltas Interview Questions
4.0
 • 129 Interviews
Bajaj Electricals Interview Questions
4.0
 • 124 Interviews
Whirlpool Interview Questions
4.0
 • 94 Interviews
IFB Interview Questions
3.6
 • 91 Interviews
Symphony Interview Questions
4.1
 • 8 Interviews
View all

Tibrewala Electronics Reviews and Ratings

based on 46 reviews

3.6/5

Rating in categories

3.2

Skill development

3.7

Work-life balance

3.3

Salary

3.6

Job security

3.5

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 46 Reviews and Ratings
Quality Engineer
14 salaries
unlock blur

₹2.2 L/yr - ₹4.6 L/yr

QA Engineer
7 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Executive Accountant
6 salaries
unlock blur

₹2 L/yr - ₹2.9 L/yr

Senior HR Executive
5 salaries
unlock blur

₹2.8 L/yr - ₹6 L/yr

Quality Inspector
5 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Tibrewala Electronics with

Bajaj Electricals

4.0
Compare

Voltas

4.0
Compare

Havells

4.0
Compare

Crompton Greaves Consumer Electricals

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