Upload Button Icon Add office photos

Filter interviews by

Sandhar Daewha Automotive Systems L2 Engineer Interview Questions and Answers

Updated 17 Jan 2023

Sandhar Daewha Automotive Systems L2 Engineer Interview Experiences

1 interview found

L2 Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2023

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

I was interviewed in Jul 2022.

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. PPAP,APQP AND MSA RELATED QUESTIONS WILL BE ASKED.
Round 3 - HR 

(1 Question)

  • Q1. Personal details and Salary Expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Ne confident, Make Your Basics Strong. Should be Hesitant while answering Questions.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Java related basic questions
  • Q2. Android questions based on previous roles
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions were asked
  • Q2. In depth questions for knowledge check
Round 3 - Behavioral 

(2 Questions)

  • Q1. Previous roles & responsibilities
  • Q2. One basic stack & queue question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Institute of Technical Education and Research, Bhuvaneshwar and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

All are MCQ questions followed by 2-3 coding questions .

Round 2 - Coding Test 

Duration is 45 mins and 2-3 coding questions.

Round 3 - Technical 

(1 Question)

  • Q1. All about topics mentioned in resume.
Round 4 - HR 

(1 Question)

  • Q1. Actually it is a management round so they asked technical questions along with hr questions.

Interview Preparation Tips

Topics to prepare for Daimler Truck Software Engineer interview:
  • Python
  • DSA
  • SQL
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. One leetcode easy-medium problem
  • Q2. Java, springboot and oops question
Round 2 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. System design questions

Interview Preparation Tips

Interview preparation tips for other job seekers - HR didnt reach out post interviews
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1 hr, there were some DSA problems

Round 2 - Coding Test 

1 hr, there were some DSA problems

Round 3 - Manegerical 

(2 Questions)

  • Q1. Any hard situation u faced ?
  • Q2. How you tackled hard situation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

DBms, operating system, system design, java, opps, data structure, web development, 3 codes.

Round 3 - Technical 

(4 Questions)

  • Q1. Basic questions on java, opps, dbms, data structure
  • Q2. Detail explanations of oops ?
  • Ans. 

    OOPs is a programming paradigm based on the concept of objects that interact with each other.

    • OOPs stands for Object-Oriented Programming.

    • It focuses on encapsulation, inheritance, and polymorphism.

    • Encapsulation is the process of hiding implementation details from the user.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects to take on multiple forms or behaviors.

    • Exa...

  • Answered by AI
  • Q3. Q3. Coding to Reverse the string by words .
  • Ans. 

    Code to reverse a string by words

    • Split the string into words using space as delimiter

    • Reverse the order of words

    • Join the words using space as delimiter

  • Answered by AI
  • Q4. Operating system

Software Engineer Interview Questions & Answers

Cerence user image Shubham Ganesh Vitore

posted on 29 Jul 2024

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

(4 Questions)

  • Q1. What is the design pattern? Singleton Design patter
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Used when only one instance of a class is needed throughout the system

    • Provides a global access point to the instance

    • Implemented by creating a static method to return the same instance each time it is called

  • Answered by AI
  • Q2. Difference Hashmap and Concurrent Hashmap
  • Ans. 

    HashMap is not thread-safe, while ConcurrentHashMap allows multiple threads to read and write concurrently.

    • HashMap is not synchronized and not thread-safe, while ConcurrentHashMap is synchronized and thread-safe.

    • ConcurrentHashMap allows multiple threads to read and write concurrently without any external synchronization, while HashMap requires external synchronization for concurrent access.

    • ConcurrentHashMap achieves hi...

  • Answered by AI
  • Q3. Collection Framework
  • Q4. Difference between list , set
  • Ans. 

    List is an ordered collection of elements with duplicates allowed, while set is an unordered collection of unique elements.

    • List maintains the order of elements, while set does not guarantee any specific order.

    • List allows duplicate elements, while set does not allow duplicates.

    • Example: List - [1, 2, 3, 1], Set - {1, 2, 3}

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain about activity life cycle
  • Ans. 

    Activity life cycle in Android refers to the sequence of states an activity goes through from creation to destruction.

    • Activity life cycle consists of several states such as onCreate, onStart, onResume, onPause, onStop, onDestroy, etc.

    • onCreate() is called when the activity is first created, onStart() is called when the activity becomes visible to the user, onResume() is called when the activity starts interacting with t...

  • Answered by AI
  • Q2. What are the components of Android
  • Ans. 

    Components of Android include activities, services, content providers, and broadcast receivers.

    • Activities: User interface components that represent a single screen with a user interface.

    • Services: Background tasks that run independently of the UI.

    • Content Providers: Manage a shared set of app data.

    • Broadcast Receivers: Respond to system-wide broadcast announcements.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What if Flow in kotlin and why we use it, keywords of kotlin
  • Ans. 

    Kotlin Flow is a reactive stream library in Kotlin for handling asynchronous data streams.

    • Kotlin Flow is used for handling asynchronous data streams in a sequential and non-blocking manner.

    • It provides a way to emit multiple values asynchronously and handle backpressure.

    • Keywords in Kotlin include suspend, flow, collect, emit, filter, map, etc.

  • Answered by AI
  • Q2. Explain about implementation patterns present in Android
  • Ans. 

    Implementation patterns in Android are design patterns that help in structuring and organizing code for better maintainability and scalability.

    • MVC (Model-View-Controller) pattern separates the application into three main components to improve code organization and reusability.

    • MVVM (Model-View-ViewModel) pattern separates the UI logic from the business logic, making it easier to test and maintain.

    • Singleton pattern ensur...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about one project you worked on?
  • Q2. Tell me about yourself?
Interview experience
5
Excellent
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 - Coding Test 

Basic core Java questions on String, Integer & Collection

Round 3 - One-on-one 

(1 Question)

  • Q1. About role, project, Microservices
Round 4 - One-on-one 

(1 Question)

  • Q1. Detailed questions on Spring Boot, MySql

Sandhar Daewha Automotive Systems Interview FAQs

How many rounds are there in Sandhar Daewha Automotive Systems L2 Engineer interview?
Sandhar Daewha Automotive Systems interview process usually has 3 rounds. The most common rounds in the Sandhar Daewha Automotive Systems interview process are Resume Shortlist, Technical and HR.

Tell us how to improve this page.

Sandhar Daewha Automotive Systems L2 Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Varroc Group Interview Questions
3.6
 • 172 Interviews
UNO Minda Interview Questions
4.0
 • 166 Interviews
Navitasys India Interview Questions
4.2
 • 100 Interviews
IFB Interview Questions
3.6
 • 91 Interviews
Bharat Forge Interview Questions
3.9
 • 55 Interviews
View all
Senior Engineer
9 salaries
unlock blur

₹3.8 L/yr - ₹6 L/yr

QA Manager
4 salaries
unlock blur

₹13.2 L/yr - ₹15.5 L/yr

Senior Engineer In Quality
4 salaries
unlock blur

₹6.9 L/yr - ₹7.5 L/yr

Process Engineer
3 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Senior Executive
3 salaries
unlock blur

₹5 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Sandhar Daewha Automotive Systems with

Samvardhana Motherson Group

3.8
Compare

Bharat Forge

3.9
Compare

Sundaram Clayton

4.1
Compare

Rane Group

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