Upload Button Icon Add office photos

Filter interviews by

Egston Electronics Interview Questions and Answers

Updated 6 Nov 2022

Egston Electronics Interview Experiences

Popular Designations

2 interviews found

I applied via Walk-in and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Stores materials hander to production
  • Q2. What's work

Interview Preparation Tips

Interview preparation tips for other job seekers - Store related

Store Incharge Interview Questions asked at other Companies

Q1. if material purchase in party but some material in liquid and some has been expiared how would have in this case?
View answer (4)

I applied via Walk-in and was interviewed in Oct 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 - Technical 

(1 Question)

  • Q1. Technical round Current voltage basic electronics knowledge
Round 3 - HR 

(1 Question)

  • Q1. Gentral face to face. Interview

Interview Preparation Tips

Interview preparation tips for other job seekers - All of go that company knowledge is improving and any qualifications are got a job confirm

Interview questions from similar companies

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

I applied via LinkedIn

Round 1 - Coding Test 

C#, .net MVC questions with jQuery.

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

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
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
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 - One-on-one 

(1 Question)

  • Q1. Digital circuit Designing for adders, mux, couter, FSM. In Verilog Blocking and non-blocking assignments, RAM RTL code, Datatypes etc
  • Ans. 

    Digital circuit design in Verilog including adders, mux, counter, FSM, RAM RTL code, datatypes, and blocking/non-blocking assignments.

    • Verilog is a hardware description language used for digital circuit design.

    • Adders are used for arithmetic operations, mux for data selection, counter for counting, and FSM for control logic.

    • Blocking assignments are executed sequentially, while non-blocking assignments are executed concur...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Introduction, Want to join or not

Interview Preparation Tips

Interview preparation tips for other job seekers - Be formal with the explanation.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Apr 2022. There were 3 interview rounds.

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 - Aptitude Test 

OS Networks C Programming Aptitude Mcqs

Round 3 - Coding Test 

Two Coding questions and were of medium to hard level.

Interview Preparation Tips

Interview preparation tips for other job seekers - be Cool and Calm and answer as required. Dont Panic.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Questions related to ipc
  • Q2. Question on data structures
  • Q3. Some on arm architecture
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Ofdm, Fixed point, sampling theorem, digital filters,
  • Q2. Previous work clarity
  • Ans. 

    Previous work clarity is essential for successful collaboration and understanding of project requirements.

    • Clearly explain the projects you have worked on in the past, including your role and responsibilities

    • Provide examples of how you communicated with team members to ensure clarity in project goals

    • Discuss any challenges you faced in previous projects and how you overcame them

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Fft, ofdm, CP, sampling theorem, previous experience,
  • Q2. C basics, memory layout, function pointer, big small endian, bit manipulation, zero padding in structures
Round 3 - Coding Test 

Bit manipulation, memory layout, interrupts, semaphore mutex, implement memcpy, sorting, algo to share resource equally

Round 4 - One-on-one 

(1 Question)

  • Q1. Previous work experience, general attitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for coding, strong on basics
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Implement atoi in c language
  • Ans. 

    atoi function converts a string to an integer in C language

    • Use a loop to iterate through each character of the input string

    • Check if the character is a digit (0-9) using 'isdigit' function

    • Calculate the integer value by multiplying the current value by 10 and adding the digit value

  • Answered by AI
  • Q2. Remove the head of the linked list mainitning the remaining links

Egston Electronics Interview FAQs

How many rounds are there in Egston Electronics interview?
Egston Electronics interview process usually has 3 rounds. The most common rounds in the Egston Electronics interview process are Resume Shortlist, Technical and HR.
How to prepare for Egston 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 Egston Electronics. The most common topics and skills that interviewers at Egston Electronics expect are Auditing, Customer Complaints, Company Secretary, Cost Accounting and Finance.
What are the top questions asked in Egston Electronics interview?

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

  1. Technical round Current voltage basic electronics knowle...read more
  2. Stores materials hander to producti...read more

Tell us how to improve this page.

Egston Electronics Reviews and Ratings

based on 21 reviews

3.2/5

Rating in categories

4.0

Skill development

3.4

Work-life balance

3.2

Salary

3.9

Job security

3.3

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 21 Reviews and Ratings
Team Lead
5 salaries
unlock blur

₹2.4 L/yr - ₹4.1 L/yr

Electrician
5 salaries
unlock blur

₹1.6 L/yr - ₹3 L/yr

Planning Engineer
5 salaries
unlock blur

₹2 L/yr - ₹2.8 L/yr

Ipqc
4 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

Mechanical Maintenance Technician
4 salaries
unlock blur

₹1.9 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Egston Electronics with

ILJIN ELECTRONICS

3.7
Compare

Smiiel - A Unit Of Motherson Sumi System

3.7
Compare

STJ Electronics

3.6
Compare

Lumens Technologies

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