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

Clear (1)

Bosch Global Software Technologies Senior Test Engineer Interview Questions, Process, and Tips

Updated 13 Aug 2024

Top Bosch Global Software Technologies Senior Test Engineer Interview Questions and Answers

View all 20 questions

Bosch Global Software Technologies Senior Test Engineer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is unit testing
  • Ans. 

    Unit testing is a software testing method where individual units or components of a software are tested in isolation.

    • Unit testing helps in identifying bugs early in the development process

    • It ensures that each unit of code is working as expected

    • Unit tests are usually automated and run frequently during development

    • Examples of unit testing frameworks include JUnit for Java, NUnit for .NET, and pytest for Python

  • Answered by AI
  • Q2. How do you perform unit testing
  • Ans. 

    Unit testing is performed by writing test cases for individual units or components of the software to ensure they work as expected.

    • Write test cases for each unit or component of the software

    • Execute the test cases to verify the functionality of the unit

    • Check for expected outcomes and compare with actual results

    • Use testing frameworks like JUnit, NUnit, or PyTest

    • Automate unit tests to run them regularly during development

  • Answered by AI
  • Q3. Which tool you have used to perform unit testing please elaborate
  • Ans. 

    I have used JUnit for performing unit testing in Java projects.

    • JUnit is a popular unit testing framework for Java

    • It provides annotations like @Test to define test methods

    • JUnit assertions like assertEquals are used to verify expected results

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have been applied for the post of Senior software Test engineer in the field of Embedded domain, Interview was quite difficult went around 1.25 hr.

Skills evaluated in this interview

I was interviewed in Jan 2022.

Round 1 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round , I was first asked some basic questions revolving around Software Testing in general and then when I told
the interviewer that I was more inclined towards Automation Testing he started asking me asking me questions around
that. In the end, the interviewer also asked me some questions related to SQL and DBMS.

  • Q1. Can you explain the Software Testing Life Cycle (STLC)?
  • Ans. 

    STLC is a systematic process for testing software applications from planning to closure.

    • STLC involves planning, designing, executing, and reporting on tests.

    • Phases include requirement analysis, test planning, test design, test execution, and closure.

    • Each phase has specific deliverables and goals to ensure quality software.

    • Example: In requirement analysis, testers review requirements to identify testable features.

  • Answered by AI
  • Q2. What is the importance of agile testing?
  • Ans. 

    Agile testing is important for ensuring continuous feedback, adapting to changes quickly, and delivering high-quality software.

    • Agile testing allows for continuous feedback from stakeholders, leading to early detection and resolution of issues.

    • It enables teams to adapt to changes quickly and efficiently, ensuring that the software meets evolving requirements.

    • By incorporating testing throughout the development process, a...

  • Answered by AI
  • Q3. What is the difference between manual testing and automated testing?
  • Ans. 

    Manual testing is done by humans executing test cases without automation tools, while automated testing is done using scripts and tools.

    • Manual testing requires human intervention to execute test cases, while automated testing uses scripts and tools to run tests.

    • Manual testing is time-consuming and prone to human error, while automated testing is faster and more reliable.

    • Manual testing is suitable for exploratory testin...

  • Answered by AI
  • Q4. What are some of the best practices in test automation?
  • Ans. 

    Best practices in test automation include proper planning, selecting the right tools, maintaining test scripts, and continuous integration.

    • Proper planning before starting test automation to define goals, scope, and strategy.

    • Selecting the right tools based on project requirements and team expertise.

    • Maintaining test scripts regularly to keep them up-to-date and relevant.

    • Implementing continuous integration to automate the...

  • Answered by AI
  • Q5. What are triggers in SQL?
  • Ans. 

    Triggers in SQL are special stored procedures that are automatically executed or fired when certain events occur in a database.

    • Triggers can be used to enforce business rules, maintain referential integrity, audit changes, and automate tasks.

    • There are two main types of triggers: BEFORE triggers and AFTER triggers.

    • Example: A trigger can be set to automatically update a timestamp column whenever a row is inserted or updat

  • Answered by AI
  • Q6. Can you explain the working of SQL privileges?
  • Ans. 

    SQL privileges control access to database objects such as tables, views, and procedures.

    • SQL privileges are permissions granted to users to perform specific actions on database objects.

    • Privileges include SELECT, INSERT, UPDATE, DELETE, and EXECUTE.

    • Users can be granted privileges at the database, table, or column level.

    • Examples: GRANT SELECT ON table_name TO user_name, REVOKE INSERT ON table_name FROM user_name.

  • Answered by AI
  • Q7. How many aggregate functions are available in SQL?
  • Ans. 

    There are five aggregate functions available in SQL: COUNT, SUM, AVG, MIN, and MAX.

    • COUNT: Returns the number of rows that match a specified condition.

    • SUM: Calculates the sum of a set of values.

    • AVG: Calculates the average of a set of values.

    • MIN: Returns the minimum value in a set of values.

    • MAX: Returns the maximum value in a set of values.

  • Answered by AI
Round 2 - Video Call 

(8 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round, the interviewer asked me questions around BDD Frameworks, Cucumber and Selenium. At the end, I was also
asked some basic questions revolving around SQL.

  • Q1. Why should Selenium be selected as a testing tool for web applications or systems?
  • Ans. 

    Selenium is a popular testing tool for web applications due to its flexibility, compatibility with multiple browsers, and robust features.

    • Selenium supports multiple programming languages such as Java, Python, and C#, making it versatile for different teams and projects.

    • It is compatible with various browsers like Chrome, Firefox, and Safari, ensuring comprehensive test coverage.

    • Selenium offers a wide range of features f...

  • Answered by AI
  • Q2. Can you explain the JUnit annotations that are linked with Selenium?
  • Ans. 

    JUnit annotations like @Before, @Test, @After are commonly used with Selenium for test automation.

    • Annotations like @Before are used to set up preconditions before each test method

    • Annotations like @Test are used to mark a method as a test method

    • Annotations like @After are used to clean up after each test method

  • Answered by AI
  • Q3. What are the different components of Selenium?
  • Ans. 

    Selenium has different components like Selenium IDE, Selenium WebDriver, Selenium Grid, and Selenium RC.

    • Selenium IDE is a record and playback tool for creating test scripts without coding.

    • Selenium WebDriver is a powerful tool for automating web applications across different browsers.

    • Selenium Grid is used for parallel testing across multiple machines and browsers.

    • Selenium RC (Remote Control) is a deprecated tool that al...

  • Answered by AI
  • Q4. What are annotations in Cucumber?
  • Ans. 

    Annotations in Cucumber are tags used to define the behavior of the test methods.

    • Annotations in Cucumber are used to mark a method as a step definition or a hook.

    • Annotations help Cucumber to understand the relationship between the code and the feature file.

    • Examples of annotations in Cucumber include @Given, @When, @Then for step definitions, and @Before, @After for hooks.

  • Answered by AI
  • Q5. What is the difference between Selenium and Cucumber?
  • Ans. 

    Selenium is a tool used for automating web browsers, while Cucumber is a tool used for behavior-driven development.

    • Selenium is a testing framework used for automating web browsers to perform testing on web applications.

    • Cucumber is a tool that supports behavior-driven development (BDD) by allowing tests to be written in plain language.

    • Selenium can be used with programming languages like Java, Python, etc., while Cucumbe...

  • Answered by AI
  • Q6. How can you run a selected test from a group of tests in Cucumber?
  • Ans. 

    You can run a selected test from a group of tests in Cucumber by using tags and the cucumber command line interface.

    • Add tags to the scenarios you want to run, for example @smokeTest or @regressionTest

    • Use the cucumber command line interface to specify the tags you want to run, for example cucumber --tags @smokeTest

    • You can also use regular expressions to run multiple tests based on specific criteria

  • Answered by AI
  • Q7. How do you find the second highest salary from a table in SQL?
  • Ans. 

    Use a subquery to find the second highest salary in SQL.

    • Use a subquery to select the maximum salary from the table.

    • Then use another subquery to select the maximum salary that is less than the maximum salary found in the first step.

    • This second maximum salary will be the second highest salary in the table.

  • Answered by AI
  • Q8. What is the ALIAS command in SQL?
  • Ans. 

    ALIAS command in SQL is used to give a table or column a temporary name.

    • ALIAS is used to make SQL queries more readable and concise.

    • It is commonly used when joining tables to avoid ambiguity in column names.

    • Example: SELECT e.employee_id, e.employee_name FROM employees AS e;

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic Java related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

Interview Preparation Tips

Eligibility criteriaAbove 1 years of experienceRobert Bosch Engineering and Business Solutions Vietnam interview preparation:Topics to prepare for the interview - Software Testing , Selenium , Cucumber , API Testing , Automation TestingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Senior Test Engineer Interview Questions Asked at Other Companies

asked in Sapiens
Q1. From Selenium -> Which Automation framework I have implemented ... read more
asked in LTIMindtree
Q2. What should be done when a defect is found in production?
asked in LTIMindtree
Q3. How do you performed incrimental load in your project?
asked in LTIMindtree
Q4. What is meant by regression and retesting?
asked in CGI Group
Q5. What is the difference between CHAR and VARCHAR2 data types in SQ ... read more

I applied via LinkedIn and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Sample program in Capl to send a message cyclically.
  • Ans. 

    A sample Capl program to send a message cyclically.

    • Use the 'on timer' event to send the message at a fixed interval

    • Create a message object and set its data and length

    • Use the 'output' function to send the message

    • Use the 'setTimer' function to set the timer for the next cycle

  • Answered by AI
  • Q2. CAN questions : related to error frame overload frame
  • Q3. CAN : some real time issues and how did you identify them on bench setup.
  • Q4. What does you Hil environment consists of ?
  • Ans. 

    My Hil environment consists of various tools and technologies for testing and automation.

    • We use tools like Selenium, Appium, JMeter, and SoapUI for testing.

    • We also use Jenkins for continuous integration and deployment.

    • Our environment includes both physical and virtual machines for testing.

    • We have a variety of operating systems and browsers for testing compatibility.

    • We use various scripting languages like Java, Python, ...

  • Answered by AI
  • Q5. Debugging skillset and protocol knowledge.
  • Q6. UDS some services : 27/19/34/31 mainly.
  • Q7. DTC status byte info
  • Q8. Automation skillset: tools and programming lang.
  • Q9. Python some basic questions related to OOPS and data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Please concentrate on what you are aware and what you have mentioned in CV. Don't mention anything extra that you haven't worked on. Bosch expects atleast 1 thing you are an expert in it.

What people are saying about Bosch Global Software Technologies

View All
a senior engineer
2w
Expected CTC in current market
Hello all, I joined Automotive industry as a fresher in 2021. Currently I am a Senior Engineer in the same company with 3.5 Yoe( 8.9 LPA). I am experienced in C++ linux developme... read more
Got a question about Bosch Global Software Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions based on the CV we kept
  • Q2. Questions related to powershell, storages, networking in azure IaaS, NSG

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare whatever u kept in CV and the basics

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Routing and switching related

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best. Study well.
Its all about God's grace.
Contribute & help others!
anonymous
You can choose to be anonymous

Bosch Global Software Technologies Interview FAQs

How many rounds are there in Bosch Global Software Technologies Senior Test Engineer interview?
Bosch Global Software Technologies interview process usually has 1 rounds. The most common rounds in the Bosch Global Software Technologies interview process are Technical.
How to prepare for Bosch Global Software Technologies Senior Test Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Bosch Global Software Technologies. The most common topics and skills that interviewers at Bosch Global Software Technologies expect are LIN, Ethernet, Security and Testing.
What are the top questions asked in Bosch Global Software Technologies Senior Test Engineer interview?

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

  1. which tool you have used to perform unit testing please elabor...read more
  2. What does you Hil environment consists o...read more
  3. Sample program in Capl to send a message cyclicall...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

SALARIES

EbixCash Limited

SALARIES

EbixCash Limited

INTERVIEWS

Bosch Global Software Technologies

200 top interview questions

SALARIES

EbixCash Limited

INTERVIEWS

EbixCash Limited

No Interviews

SALARIES

EbixCash Limited

LIST OF COMPANIES

Discover companies

Find best workplace

CAMPUS PLACEMENT

Jiwaji University

Tell us how to improve this page.

Bosch Global Software Technologies Senior Test Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Bosch Global Software Technologies Senior Test Engineer Salary
based on 153 salaries
₹5.5 L/yr - ₹22 L/yr
20% more than the average Senior Test Engineer Salary in India
View more details

Bosch Global Software Technologies Senior Test Engineer Reviews and Ratings

based on 15 reviews

4.2/5

Rating in categories

4.6

Skill development

4.3

Work-life balance

3.8

Salary

4.2

Job security

4.3

Company culture

2.6

Promotions

4.0

Work satisfaction

Explore 15 Reviews and Ratings
Senior Software Engineer
6.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
2.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
2.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
1.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Specialist
1.5k salaries
unlock blur

₹0 L/yr - ₹0 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

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent