Upload Button Icon Add office photos

Bosch

Compare button icon Compare button icon Compare

Filter interviews by

Bosch HR Executive Generalist Interview Questions and Answers

Updated 2 May 2022

Bosch HR Executive Generalist Interview Experiences

2 interviews found

I applied via Naukri.com

Round 1 - Group Discussion 

Employees relation and employees communication, problem solving skills,
Grivence handling related

Round 2 - Employees related questions 

(1 Question)

  • Q1. Work place satisfaction

Interview Preparation Tips

Interview preparation tips for other job seekers - HR roles and responsibilities and strategies

I applied via Job Portal

Round 1 - HR 

(1 Question)

  • Q1. HR core activities related

Interview Preparation Tips

Interview preparation tips for other job seekers - HR roles and responsibilities,
Skills setting and employees communication and employees relation

HR Executive Generalist Interview Questions Asked at Other Companies

Q1. 1) What does HR means ? 2) do you have knowledge about payroll ma ... read more
asked in QO BOX
Q2. Can you brief the script for telephonic conversation?
Q3. How you manage the manpower handling? How you maintained consumpt ... read more
Q4. Appraisal : if emp is not satisfied how to handle?
asked in WIPL
Q5. How quickly you can learn the things

Interview questions from similar companies

I applied via Referral and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Please explain about your profile

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all be free to attend the interview.
Be bold in your explanations.
Questions mainly fall from your profile explanation.

Try to tell what you have worked with.

I applied via Naukri.com and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Inventory management
  • Q2. Logistics
  • Q3. FIFO
  • Q4. MRP
  • Q5. Personal details

Interview Preparation Tips

Interview preparation tips for other job seekers - Given details briefly
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Where you want to see after 5 years
  • Q2. Any questions you have
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was easy coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Regarding Kalman Filter
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the smart pointers?
  • Ans. 

    Smart pointers are objects that store a pointer to dynamically allocated memory and provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically releasing memory when the pointer is no longer needed.

    • Examples include unique_ptr, shared_ptr, and weak_ptr in C++.

    • unique_ptr is used for exclusive ownership, shared_ptr for shared ownership, and weak_ptr to break circular references.

  • Answered by AI
  • Q2. What is the lamda function?
  • Ans. 

    A lambda function is a small anonymous function defined in a single line of code without a name.

    • Lambda functions are often used in programming languages that support functional programming.

    • They are commonly used for short, simple operations that do not require a named function.

    • Lambda functions can take any number of arguments but can only have one expression.

    • Example: lambda x: x*2 defines a lambda function that doubles

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. What is threading?
  • Ans. 

    Threading is a way for a program to split itself into multiple simultaneous tasks.

    • Threading allows for parallel execution of tasks within a program.

    • Each thread has its own stack and runs independently of other threads.

    • Threads can communicate with each other and share resources.

    • Example: A web server handling multiple client requests concurrently using threads.

  • Answered by AI
  • Q2. What is lamda function?
  • Ans. 

    Lambda function is an anonymous function in programming that can have multiple parameters and can be used as an argument to other functions.

    • Lambda functions are also known as anonymous functions because they do not have a name.

    • They are often used for short, one-time tasks that do not require a separate function definition.

    • Lambda functions can take multiple parameters and return a single value.

    • Example: lambda x, y: x + ...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Basic of Oops in Cpp ?
  • Q2. How byte padding is done?
  • Ans. 

    Byte padding is the process of adding extra bytes to a data structure to ensure it meets a certain size or alignment requirement.

    • Byte padding is commonly used in computer memory allocation to align data structures to memory boundaries.

    • Padding is necessary to ensure that data structures are properly aligned for efficient memory access.

    • For example, if a data structure requires alignment on a 4-byte boundary, padding may ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Aug 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Tell us about your PhD research.
Round 2 - Technical 

(1 Question)

  • Q1. How to detect false target?
  • Ans. 

    Detecting false targets involves analyzing patterns, behavior, and data to identify inconsistencies.

    • Analyze patterns and behavior of the target to look for inconsistencies

    • Use data validation techniques to verify the authenticity of the target

    • Implement anomaly detection algorithms to flag suspicious targets

    • Utilize machine learning models to predict and identify false targets

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a highly experienced Senior Software Engineer with a strong background in developing innovative solutions.

    • Over 10 years of experience in software development

    • Expertise in Java, Python, and SQL

    • Proven track record of leading successful projects

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consists of aptitudes and some pseudocode snippets to solve and it also had one medium level coding question and one hard level coding question.

Round 2 - Technical 

(5 Questions)

  • Q1. Write a pattern pyramid number in Java
  • Ans. 

    Pattern pyramid number in Java

    • Use nested loops to print the pyramid pattern

    • Increment the number in each row

    • Handle spaces for proper alignment

  • Answered by AI
  • Q2. Write a C program to find Factorial of a number
  • Ans. 

    A C program to find the factorial of a number using recursion

    • Use a recursive function to calculate the factorial

    • Handle the base case when the number is 0 or 1

    • Multiply the number with the factorial of (number-1) in each recursive call

  • Answered by AI
  • Q3. What is Little endian and Big endian in C
  • Ans. 

    Little endian and Big endian are byte ordering formats in which multi-byte data is stored in memory.

    • Little endian: Least significant byte is stored at the lowest memory address.

    • Big endian: Most significant byte is stored at the lowest memory address.

    • Example: In Little endian, the number 0x12345678 is stored as 78 56 34 12 in memory.

    • Example: In Big endian, the same number is stored as 12 34 56 78 in memory.

  • Answered by AI
  • Q4. Why do you use Docker and Git
  • Ans. 

    I use Docker for containerization to easily manage and deploy applications, and Git for version control to collaborate and track changes.

    • Docker allows for consistent development environments across different machines

    • Git helps track changes, collaborate with team members, and revert to previous versions if needed

    • Both tools improve efficiency and productivity in software development

  • Answered by AI
  • Q5. Draw architecture diagram for your Machine Learning Project
  • Ans. 

    The architecture diagram for a Machine Learning project typically includes data preprocessing, model training, evaluation, and deployment stages.

    • Data preprocessing stage involves cleaning, transforming, and preparing the data for model training.

    • Model training stage includes selecting the appropriate algorithm, training the model on the data, and tuning hyperparameters.

    • Evaluation stage involves assessing the model's per...

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Tell me about your family
  • Ans. 

    I come from a close-knit family of four, including my parents and younger sister.

    • My parents have always been supportive of my career choices and encouraged me to pursue my passion for software engineering.

    • My younger sister is currently studying computer science and we often collaborate on coding projects together.

    • Family gatherings are important to us and we enjoy spending quality time together, whether it's celebrating

  • Answered by AI
  • Q2. Which is your favorite subject and why
  • Q3. What will you do if you get rejected in this round

Interview Preparation Tips

Topics to prepare for Aptiv Associate Software Engineer interview:
  • C
  • OS
  • Data Structures

Skills evaluated in this interview

Bosch Interview FAQs

How many rounds are there in Bosch HR Executive Generalist interview?
Bosch interview process usually has 1-2 rounds. The most common rounds in the Bosch interview process are Group Discussion and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

Yazaki Interview Questions
3.8
 • 136 Interviews
Aptiv Interview Questions
3.5
 • 100 Interviews
Valeo Interview Questions
4.0
 • 92 Interviews
DENSO Interview Questions
4.1
 • 77 Interviews
JTEKT Interview Questions
4.1
 • 66 Interviews
Faurecia Interview Questions
3.9
 • 63 Interviews
Tenneco Interview Questions
3.8
 • 62 Interviews
Tata Cummins Interview Questions
4.3
 • 60 Interviews
View all
Bosch HR Executive Generalist Salary
based on 7 salaries
₹3 L/yr - ₹5.8 L/yr
16% more than the average HR Executive Generalist Salary in India
View more details

Bosch HR Executive Generalist Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

4.9

Skill development

5.0

Work-life balance

4.6

Salary

4.6

Job security

4.9

Company culture

3.3

Promotions

4.9

Work satisfaction

Explore 3 Reviews and Ratings
Senior Engineer
873 salaries
unlock blur

₹5 L/yr - ₹18.1 L/yr

Senior Software Engineer
820 salaries
unlock blur

₹6 L/yr - ₹24 L/yr

Assistant Manager
674 salaries
unlock blur

₹5.4 L/yr - ₹19 L/yr

Software Engineer
520 salaries
unlock blur

₹3.5 L/yr - ₹13.1 L/yr

Deputy Manager
497 salaries
unlock blur

₹9 L/yr - ₹25.9 L/yr

Explore more salaries
Compare Bosch with

Yazaki

3.8
Compare

Faurecia

3.9
Compare

Valeo

4.0
Compare

Continental Automotive Components

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