Upload Button Icon Add office photos

Bosch Global Software Technologies

Compare button icon Compare button icon Compare
4.0

based on 4.2k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Bosch Global Software Technologies Softwaretest Engineer Interview Questions and Answers

Updated 1 Jan 2023

Bosch Global Software Technologies Softwaretest Engineer Interview Experiences

3 interviews found

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

I applied via Naukri.com and was interviewed in Jul 2022. There were 5 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. Our testing questions
Round 3 - Technical 

(1 Question)

  • Q1. Testing technical questions
Round 4 - Behavioral 

(1 Question)

  • Q1. All techical and before company and what do you know about my company
Round 5 - HR 

(1 Question)

  • Q1. Salary discussions and before company details all the details

Interview Preparation Tips

Interview preparation tips for other job seekers - Be brave, be confident with your subject and attitude.
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 

If u have decent knowledge u can crack it easily

Round 3 - Technical 

(2 Questions)

  • Q1. Oops related question
  • Q2. Basic dsa questions and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool and calm and have a deceng knowledge of things and u will clear it easily

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If u get a blocker defect just the previous day of ur release dat ... read more
Q3. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Q4. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q5. Write Sql query for displaying total number of students from chil ... read more

I applied via AmbitionBox and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Numerical, verbal, reasoning,

Interview Preparation Tips

Topics to prepare for Bosch Global Software Technologies Softwaretest Engineer interview:
  • ETL Testing
  • SQL
Interview preparation tips for other job seekers - job will be do perfect and do time sense also

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is the importance of manual testing when compared to automation testing
  • Ans. 

    Manual testing is important for exploratory testing, usability testing, and ad-hoc testing.

    • Manual testing allows for exploratory testing where testers can explore the application and identify unexpected issues.

    • Usability testing, which involves real users interacting with the software, is best done manually to capture user experience.

    • Ad-hoc testing, where testers randomly test the application without predefined test cas...

  • Answered by AI
  • Q2. Real life scenario on web application testing
  • Ans. 

    Testing a web application for an online shopping platform

    • Testing the functionality of adding items to the cart and checking out

    • Testing the payment gateway integration for secure transactions

    • Testing the search functionality to ensure accurate results are displayed

    • Testing the responsiveness of the website on different devices and browsers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If some one want to apply any of the job in this company then please do have some experience even though they mentioned for freshers bsc, however you do your interview as best as possible at last they gonna reject bsc of lack of experience. Same happened to me.So plzz only attened any Oracle company interview if you have experience.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was good , there was merge intervals questions , and 1 hard questions

Round 2 - Technical 

(2 Questions)

  • Q1. Merge intervals
  • Q2. Hard question tough to answer

Interview Preparation Tips

Interview preparation tips for other job seekers - revise hard questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. SQL questions were asked.
  • Q2. Unix commands were asked
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Focus on coding, Question: find the duplicate string from list of string and the count of it(how many times it is repeated) Prepare oops and collections concepts.
  • Q2. Focus on method overriding
  • Q3. Difference between arraylist and LinkedInlist
  • Ans. 

    ArrayList is a resizable array implementation while LinkedList is a doubly linked list implementation.

    • ArrayList uses dynamic arrays to store elements, allowing fast random access but slower insertion and deletion.

    • LinkedList uses nodes with pointers to the next and previous elements, allowing fast insertion and deletion but slower random access.

    • Example: ArrayList - List names = new ArrayList<>(); LinkedList - List citie

  • Answered by AI
  • Q4. Use of static keyword
  • Ans. 

    The static keyword in programming is used to declare variables, methods, or classes that belong to the class itself rather than instances of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an instance of the class.

    • Static classes cannot be instantiated and are used for grouping related methods and variables.

    • Example: public static int count = 0; // static

  • Answered by AI

Skills evaluated in this interview

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

DSA, puzzles, DBMS, OD, and networking

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

(2 Questions)

  • Q1. Java program for prime no
  • Ans. 

    Java program to check if a number is prime or not

    • Create a function to check if a number is prime or not

    • Iterate from 2 to n/2 and check if n is divisible by any number

    • If n is divisible by any number, it is not prime

    • If n is not divisible by any number, it is prime

  • Answered by AI
  • Q2. Dynamic web table element program
  • Ans. 

    A dynamic web table element program involves identifying and interacting with elements in a table that change dynamically.

    • Identify the table element using unique identifiers like class or id

    • Use Selenium WebDriver to locate and interact with the table element

    • Handle dynamic changes in the table by using dynamic XPath or CSS selectors

    • Iterate through rows and columns to extract data or perform actions

  • Answered by AI

Skills evaluated in this interview

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

Simple and easy..basic questions only

Round 2 - Coding Test 

Coding like create application for online ticket booking

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Are you ready to work with us

Bosch Global Software Technologies Interview FAQs

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

Some of the top questions asked at the Bosch Global Software Technologies Softwaretest Engineer interview -

  1. Our testing questi...read more
  2. Testing technical questi...read more
  3. Oops related quest...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Bosch Global Software Technologies interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Bosch Global Software Technologies Softwaretest Engineer Salary
based on 167 salaries
₹4 L/yr - ₹13 L/yr
52% more than the average Softwaretest Engineer Salary in India
View more details

Bosch Global Software Technologies Softwaretest Engineer Reviews and Ratings

based on 18 reviews

4.0/5

Rating in categories

3.9

Skill development

4.2

Work-Life balance

3.8

Salary & Benefits

4.4

Job Security

3.9

Company culture

3.6

Promotions/Appraisal

3.7

Work Satisfaction

Explore 18 Reviews and Ratings
Senior Software Engineer
6.4k salaries
unlock blur

₹6.4 L/yr - ₹20 L/yr

Software Engineer
2.7k salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Senior Engineer
2.7k salaries
unlock blur

₹6.6 L/yr - ₹20.6 L/yr

Associate Software Engineer
1.9k salaries
unlock blur

₹3 L/yr - ₹9.1 L/yr

Specialist
1.5k salaries
unlock blur

₹9.8 L/yr - ₹31.8 L/yr

Explore more salaries
Compare Bosch Global Software Technologies with

Mercedes-Benz Research and Development India

3.9
Compare

Capgemini

3.8
Compare

Accenture

3.9
Compare

TCS

3.7
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