Upload Button Icon Add office photos

Filter interviews by

Jagdamba Auto Components Senior Engineer Interview Questions and Answers

Updated 31 May 2023

Jagdamba Auto Components Senior Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in May 2023. 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. Quality assurance and quality control related
Round 3 - HR 

(1 Question)

  • Q1. Why hike required?
  • Ans. 

    Hike is required to refresh the mind and body, and to improve physical fitness.

    • Hiking provides an opportunity to disconnect from technology and connect with nature.

    • It helps to reduce stress and improve mental health.

    • Hiking is a great way to improve cardiovascular health and strengthen muscles.

    • It can also be a social activity, allowing people to bond over a shared experience.

    • Examples of popular hiking destinations inclu

  • Answered by AI

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Cnc programming
  • Q2. Induction hardening process
Round 2 - One-on-one 

(1 Question)

  • Q1. Manpower handling
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Hacker Rank test with medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. Technical discussion mainly around system design, different architectures, problem solving and coding question may be asked.
Round 3 - Case Study 

A case study for a problem statement

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(4 Questions)

  • Q1. Asked to write a program to check whether string is valid or not. String consists of only three kind of special characters "(), [], {}". We need to return true if all special characters are in correct for...
  • Q2. What is useRef hook used for?
  • Ans. 

    useRef hook is used to persist a mutable value across renders without causing a re-render.

    • Used to store mutable values that do not trigger re-renders.

    • Commonly used for accessing DOM elements or storing previous values.

    • Does not cause a re-render when the value changes.

  • Answered by AI
  • Q3. What are the best practices to avoid rerenders and to improve performance
  • Ans. 

    Use memoization, virtual DOM, and shouldComponentUpdate to avoid unnecessary rerenders and improve performance.

    • Implement memoization to store the result of expensive function calls and avoid recalculating them.

    • Use virtual DOM to efficiently update only the parts of the UI that have changed.

    • Override shouldComponentUpdate to prevent unnecessary rerenders by comparing current and next props/state.

  • Answered by AI
  • Q4. What are callbacks, Promises, async await
  • Ans. 

    Callbacks, Promises, async await are asynchronous programming concepts in JavaScript.

    • Callbacks are functions passed as arguments to another function to be executed later.

    • Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • async await is a syntax for writing asynchronous code that looks synchronous, making it easier to read and maintain.

    • Example: Using a callback to handle th...

  • Answered by AI

Skills evaluated in this interview

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

Write word count program

Round 2 - One-on-one 

(2 Questions)

  • Q1. Architecture of Spark
  • Q2. What is AWS Glue job
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array questions - rearranging letters for encryption

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself and your experience in college.
  • Q2. Database and sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep true to job posting. Hiring for another job and then, making people do something else is not good.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Do you have working experience of SwiftUI
  • Q2. Have you ever implemented or worked with server driven UIs
  • Ans. 

    Yes, I have experience implementing server driven UIs.

    • Implemented server driven UIs using JSON responses to dynamically update UI elements

    • Worked with frameworks like React and Angular to handle server driven UI updates

    • Used server driven UIs to efficiently manage and display large amounts of data

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is closure and types?
  • Ans. 

    Closure is a function that captures variables from its surrounding scope, allowing it to access those variables even after the scope has closed.

    • Closure allows a function to access variables from its lexical scope even after the function has finished executing.

    • Types of closures include lexical closures, which capture variables from the surrounding lexical scope, and function closures, which capture variables from the fu...

  • Answered by AI
  • Q2. What is Core data and all operations with example/scenarios
  • Ans. 

    Core Data is a framework provided by Apple for managing the model layer objects in an iOS application.

    • Core Data is used for storing, retrieving, and managing data in an iOS app.

    • It provides an object-oriented interface to work with data.

    • Operations include creating, reading, updating, and deleting data.

    • Example: Creating a new record in Core Data for a user profile.

    • Example: Fetching a list of items from Core Data to displ

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to join the company?
  • Q2. Why should we hire you

Interview Preparation Tips

Topics to prepare for Collabera Technologies Senior Software Engineer interview:
  • Core Data
  • SwiftUI
  • GCD
  • Memory Management
Interview preparation tips for other job seekers - Good inteview

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Group Discussion 

Initially, they shortlist the candidates and group them into batches of 15 students. During this process, they conduct a group discussion (GD) in which each student has 3 minutes to think, followed by an opportunity to describe their points in 2 to 3 minutes.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and express your point clearly.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the next pointers of each node

    • Initialize three pointers: prev = null, current = head, next = null

    • Iterate through the linked list, updating next to current's next, current's next to prev, and moving prev and current pointers forward

    • Return the new head, which is the last node visited

  • Answered by AI
  • Q2. Find a bit is set
  • Ans. 

    To find if a bit is set, use bitwise AND operator with the bit position

    • Use bitwise AND operator (&) with the bit position to check if it is set

    • If the result is greater than 0, then the bit is set

    • Example: Check if 3rd bit is set in binary number 1010 - (1010 & 0100) = 0100 (4), so 3rd bit is set

  • Answered by AI
  • Q3. Create a thread in process
  • Ans. 

    Creating a thread in a process involves allocating resources for a new thread to run concurrently with other threads.

    • Use threading libraries like pthreads in C or java.util.concurrent in Java

    • Create a new thread object and pass a function or method to be executed by the thread

    • Start the thread to begin execution

    • Join the thread to wait for it to finish before continuing

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Coding Test 

Linked list, array, tree and graph questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well aptitude and coding

Jagdamba Auto Components Interview FAQs

How many rounds are there in Jagdamba Auto Components Senior Engineer interview?
Jagdamba Auto Components interview process usually has 3 rounds. The most common rounds in the Jagdamba Auto Components interview process are Resume Shortlist, Technical and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Jagdamba Auto Components interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Sheenlac Paints Interview Questions
4.6
 • 198 Interviews
ABC Consultants Interview Questions
3.9
 • 169 Interviews
Chegg Interview Questions
4.2
 • 151 Interviews
Nokia Networks Interview Questions
4.3
 • 109 Interviews
Testbook.com Interview Questions
3.6
 • 96 Interviews
Tracxn Interview Questions
3.2
 • 96 Interviews
MAQ Software Interview Questions
2.0
 • 93 Interviews
View all
Jagdamba Auto Components Senior Engineer Salary
based on 9 salaries
₹3.2 L/yr - ₹4.8 L/yr
58% less than the average Senior Engineer Salary in India
View more details

Jagdamba Auto Components Senior Engineer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

4.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

2.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Senior Engineer
9 salaries
unlock blur

₹3.2 L/yr - ₹4.8 L/yr

QA Engineer
7 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Junior Executive
6 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

CNC Machine Operator
5 salaries
unlock blur

₹0.2 L/yr - ₹2.2 L/yr

CNC Operator
5 salaries
unlock blur

₹1.5 L/yr - ₹2 L/yr

Explore more salaries
Compare Jagdamba Auto Components with

State Street Syntel

3.7
Compare

Nokia Networks

4.3
Compare

Sterling & Wilson

4.2
Compare

AXA Business Services

3.9
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