Upload Button Icon Add office photos

Bosch Global Software Technologies

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Bosch Global Software Technologies Associate Software Engineer Interview Questions and Answers for Experienced

Updated 15 Jan 2025

Bosch Global Software Technologies Associate Software Engineer Interview Experiences for Experienced

7 interviews found

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

I applied via Great Learning and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

20 Questions with choose the correct answers

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me details about your major project
  • Ans. 

    Developed a web-based inventory management system for a retail company

    • Used Java for backend development

    • Implemented responsive design using HTML, CSS, and JavaScript

    • Integrated database management system for storing product information

  • Answered by AI
  • Q2. Tell me about your self
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The tests had three main sections logical, quantitive and verbal.

Round 2 - Technical 

(2 Questions)

  • Q1. Print the duplicate elements in an array
  • Ans. 

    Print duplicate elements in an array of strings

    • Iterate through the array and store elements in a HashMap with element as key and count as value

    • Print elements with count greater than 1 as duplicates

  • Answered by AI
  • Q2. About Projects - Built and the Technologies.

Skills evaluated in this interview

Associate Software Engineer Interview Questions Asked at Other Companies for Experienced

asked in Ericsson
Q1. You are a team leader and one of your employee is unable to compl ... read more
asked in Mphasis
Q2. 1. All types of database commands- DDL, DML, DCL, TCL 2. Write a ... read more
asked in TCS
Q3. Linked List Value Search Problem Statement Given a Singly Linked ... read more
asked in TCS
Q4. Search an Element in a Sorted Array Given a sorted array 'A' of ' ... read more
asked in Eviden
Q5. Tell me about yourself? Tell difference Between pointer and refer ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

1 - 2 hours with negative marking, It was conducted by HirePro

Round 2 - Technical 

(1 Question)

  • Q1. Bubble Sort, Selection Sort, Asked about the college project.
Round 3 - HR 

(1 Question)

  • Q1. Why do you like to join Bosch as a fresher and not other company?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General Aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. Questions about data structures and project

Bosch Global Software Technologies interview questions for designations

 Associate Software Developer

 (2)

 Software Engineer

 (23)

 Senior Software Engineer

 (29)

 Embedded Software Engineer

 (1)

 Assistant Software Engineer

 (1)

 Software Engineer Trainee

 (1)

 Associate Engineer

 (5)

 Associate Consultant

 (1)

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 - Technical 

(1 Question)

  • Q1. Can you explain virtual keyword
  • Ans. 

    The virtual keyword in C++ is used to declare a member function in a base class that can be overridden in a derived class.

    • Virtual keyword is used to achieve runtime polymorphism in C++

    • Virtual functions are declared in a base class and can be overridden in derived classes

    • When a virtual function is called, the actual function that gets executed is determined at runtime based on the type of object

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Can you explain the projects done at your college
Round 4 - HR 

(1 Question)

  • Q1. How would you like to grow in your next few years

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Coding Test 

C and c++ questions. And aptitude questions. Some from dec and mpmc multiple choice questions

Round 2 - Technical 

(3 Questions)

  • Q1. Favorite subjects, questions on gate, logics, architecture of 8085, control systems
  • Q2. C programming, type casting and type convertion.
  • Q3. Questions on projects, sensors used and working principle
Round 3 - HR 

(1 Question)

  • Q1. Introduction, project done and contribution.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2022. There were 4 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 - Aptitude Test 

Aptitude, logical reasoning, English and Coding round of 2 questions

Round 3 - Technical 

(1 Question)

  • Q1. Asked questions based on resume and previous experience.
Round 4 - Essay Writing 

(1 Question)

  • Q1. Questions regarding any general topics

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to keep the things only you know in the resume. Also be prepared about your work experience (if any) and challenges faced, projects etc.

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 110 minutes
Round difficulty - Medium

It was an mcq and coding round
It contained four sections:
1. Aptitude 
2. Reasoning
3. English
4. Coding (It contains 2 questions, one is medium and other is little hard)

  • Q1. 

    Concatenate the Largest Digit Problem

    You are given three non-zero numbers 'A', 'B', and 'C'. Your task is to determine the number created by concatenating the largest digit found in each number, in the s...

  • Ans. 

    Concatenate the largest digit from three numbers to form a new number.

    • Find the largest digit in each number 'A', 'B', and 'C'.

    • Concatenate the largest digits in the order 'A', 'B', and 'C' to form the new number.

    • Return the final concatenated number as the output.

  • Answered by AI
  • Q2. 

    Remove Vowels from a String

    Given a string STR of length N, your task is to remove all the vowels from that string and return the modified string.

    Input:

    The first line of input contains an integer 'T' ...
  • Ans. 

    Remove all vowels from a given string and return the modified string.

    • Iterate through each character in the string and check if it is a vowel (a, e, i, o, u or A, E, I, O, U).

    • If the character is not a vowel, add it to a new string.

    • Return the new string with all vowels removed.

  • Answered by AI
Round 2 - Group Discussion 

Round duration - 10 minutes
Round difficulty - Medium

Round 3 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was around 11:30 PM i feel very tensed after entering into room the interviewer asked me to take a seat and asked self introduction and then he asked can we start technical round ?The questions are below.
What was your specific role and responsibilities on the most recent project you worked on?
 

  • Q1. How can you retrieve the second highest salary from a database table?
  • Ans. 

    Retrieve the second highest salary from a database table

    • Use a SQL query with ORDER BY and LIMIT to retrieve the second highest salary

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1, 1

  • Answered by AI
Round 4 - HR 

Round duration - 5-10 months
Round difficulty - Easy

It was around 11:50 i think 
The environment is too cool and i am too sleepy 
The interview was happened in friendly manner

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Tirumala Engineering College. Eligibility criteriaNo baclogs,60%throughtout your educationCGI Inc. interview preparation:Topics to prepare for the interview - OOPS CONCEPTS,TKINTER MODULE in python,data Structures,sorting algorithms,dynamic programming basics,SQL statements like DML,DCL,DQL,DDL, Procedures and functions in PLSQLTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Practice one coding problem daily
Tip 2 : Do one project on each technology,
Tip 3 : Please communicate in English with others ,English plays a prominent role in interviews

Application resume tips for other job seekers

Tip 1 : one major project and mini project in resume
Tip 2 : Use a professional email address.
Tip 3 : Set your font size to 10-12 points.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself?
  • Q2. What was your jee rank?
  • Q3. Why did you choose the collage in which you are studying?
  • Q4. Tell some new technology which is coming?
  • Ans. 

    5G technology is coming which will revolutionize the way we communicate and connect with the world.

    • 5G technology will provide faster internet speeds and lower latency.

    • It will enable the development of new technologies such as self-driving cars and smart cities.

    • 5G networks will be able to support a larger number of devices connected simultaneously.

    • Major telecommunication companies such as Verizon and AT&T are already ro...

  • Answered by AI
  • Q5. Some basics question related to data structures like what is stack que etc?
  • Q6. In coming five years where do you see yourself?
  • Q7. Some basic questions related to your stream like what is a transistor etc?

Interview Preparation Tips

Interview preparation tips for other job seekers - HR behaviour was friendly and most of the time he will help you if you got stuck in question all the very best for your interview

I applied via Walk-in and was interviewed before Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. A program on recursion.
  • Ans. 

    Recursion is a programming technique where a function calls itself to solve a problem.

    • Recursion involves a base case and a recursive case

    • Recursion can be used to solve problems like factorial, Fibonacci sequence, and binary search

    • Recursion can be less efficient than iterative solutions for some problems

  • Answered by AI
  • Q2. Is a string mutable/immutable with an example
  • Ans. 

    A string can be both mutable and immutable depending on the programming language.

    • In languages like Java and Python, strings are immutable.

    • In languages like C++ and C#, strings are mutable.

    • Immutable strings cannot be modified once created, while mutable strings can be modified.

    • Example of immutable string: 'hello world'.replace('o', '0') returns 'hell0 w0rld'.

    • Example of mutable string: string s = 'hello'; s[0] = 'j'; s n

  • Answered by AI
  • Q3. OOPS concept with examples
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects.

    • OOPS stands for Object-Oriented Programming System

    • It focuses on creating objects that contain both data and functions

    • Encapsulation, Inheritance, and Polymorphism are the three main pillars of OOPS

    • Example: A car is an object that has properties like color, model, and functions like start, stop, and accelerate

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with the basics and stick to one language. Concept matters more than syntax.

Bosch Global Software Technologies Interview FAQs

How many rounds are there in Bosch Global Software Technologies Associate Software Engineer interview for experienced candidates?
Bosch Global Software Technologies interview process for experienced candidates usually has 3 rounds. The most common rounds in the Bosch Global Software Technologies interview process for experienced candidates are Technical, Aptitude Test and Resume Shortlist.
What are the top questions asked in Bosch Global Software Technologies Associate Software Engineer interview for experienced candidates?

Some of the top questions asked at the Bosch Global Software Technologies Associate Software Engineer interview for experienced candidates -

  1. Can you explain virtual keyw...read more
  2. Print the duplicate elements in an ar...read more
  3. Details on projects : I had done my project using microcontroller .so, specific...read more
How long is the Bosch Global Software Technologies Associate Software Engineer interview process?

The duration of Bosch Global Software Technologies Associate Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Bosch Global Software Technologies Associate Software Engineer Interview Process for Experienced

based on 7 interviews

2 Interview rounds

  • Aptitude Test Round
  • Technical Round
View more
11% more than the average Associate Software Engineer Salary in India
View more details

Bosch Global Software Technologies Associate Software Engineer Reviews and Ratings

based on 233 reviews

3.9/5

Rating in categories

3.5

Skill development

4.1

Work-life balance

3.1

Salary

4.1

Job security

4.0

Company culture

2.8

Promotions

3.5

Work satisfaction

Explore 233 Reviews and Ratings
Senior Software Engineer
6.6k salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Senior Engineer
2.8k salaries
unlock blur

₹6.7 L/yr - ₹20.5 L/yr

Software Engineer
2.8k salaries
unlock blur

₹4 L/yr - ₹11.5 L/yr

Associate Software Engineer
2k salaries
unlock blur

₹3 L/yr - ₹9.2 L/yr

Specialist
1.5k salaries
unlock blur

₹10 L/yr - ₹33 L/yr

Explore more salaries
Compare Bosch Global Software Technologies with

Mercedes-Benz Research and Development India

3.8
Compare

Capgemini

3.7
Compare

Accenture

3.8
Compare

Genpact

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