Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Deloitte Team. If you also belong to the team, you can get access from here

Deloitte Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 17.2k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deloitte Software QA Engineer Interview Questions, Process, and Tips

Updated 23 Dec 2021

Top Deloitte Software QA Engineer Interview Questions and Answers

Deloitte Software QA Engineer Interview Experiences

2 interviews found

I applied via Company Website and was interviewed before Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is data provider
  • Ans. 

    A data provider is a software component that supplies data to an application or system.

    • Data provider is used to retrieve data from various sources like databases, files, web services, etc.

    • It helps in separating the data access logic from the application logic.

    • Data provider can be used in testing to supply test data to the application.

    • Examples of data providers are JDBC, ADO.NET, Entity Framework, etc.

  • Answered by AI
  • Q2. How many locators types are there
  • Ans. 

    There are multiple locator types used in software testing.

    • There are 8 types of locators: ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, and XPath.

    • Locators are used to identify web elements on a page.

    • The choice of locator type depends on the specific element being located and the structure of the HTML code.

    • Using unique locators can improve the stability and maintainability of automated tests

  • Answered by AI
  • Q3. Explain the framework you used
  • Ans. 

    I used the Selenium framework for automated testing.

    • Selenium is an open-source framework for web application testing

    • It supports multiple programming languages such as Java, Python, and C#

    • It provides a range of tools for testing, including Selenium WebDriver and Selenium IDE

    • It allows for automated testing of web applications across multiple browsers and platforms

    • Example: Used Selenium WebDriver with Java to test a web a

  • Answered by AI
  • Q4. What is interface in java
  • Ans. 

    An interface in Java is a collection of abstract methods and constants that can be implemented by a class.

    • Interfaces define a contract that a class must follow if it implements the interface.

    • Interfaces can be used to achieve abstraction and polymorphism in Java.

    • A class can implement multiple interfaces but can only extend one class.

    • Interfaces can have default methods and static methods since Java 8.

    • Examples of interfac...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with what you have written in resume. Questions will come based on your resume only.

Skills evaluated in this interview

Software QA Engineer interview

user image Mohanty Academy

posted on 4 Dec 2021

Software QA Engineer Interview Questions Asked at Other Companies

asked in Encora
Q1. What exceptions have u faced while creating framework?
Q2. What is Bug tracking and explain their bug life cycle?
asked in Nvidia
Q3. Design Test cases for A Deseal Car Engine. Cover all test cases
Q4. Questions related to QA< basic , scenario based questions
Q5. What are the advantages of wire EDM processes in comparison with ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Salary expectations.
Round 2 - Technical 

(2 Questions)

  • Q1. Basics of Python, Selenium, HTML/CSS, Locators, Testing Concepts
  • Q2. Solve a case study, based on a real-world problem
Round 3 - Technical 

(2 Questions)

  • Q1. Same as previous.
  • Q2. More difficult case study, managerial questions.
Round 4 - Behavioral 

(2 Questions)

  • Q1. Previous experience, explain the current working method, and how you can improve.
  • Q2. My expectations from the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with the programming basics like file handling, oops, functions, overloading, overriding, testing methodologies, HTML, CSS, APIs, Postman, etc.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a java program to sort an array
  • Ans. 

    Java program to sort an array of strings

    • Use Arrays.sort() method to sort the array of strings

    • Import java.util.Arrays package

    • Example: String[] arr = {"apple", "banana", "orange"}; Arrays.sort(arr);

  • Answered by AI
  • Q2. Collections in java and springboot
  • Ans. 

    Collections in Java and Spring Boot are used to store and manipulate groups of objects.

    • Collections in Java are used to store multiple objects in a single unit.

    • Spring Boot provides support for managing collections through various data structures like List, Set, Map, etc.

    • Collections in Java and Spring Boot help in organizing and manipulating data efficiently.

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

Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Java questions
  • Q2. Spring, Spring boot basics
Round 2 - Technical 

(2 Questions)

  • Q1. Microservices Communications
  • Q2. Project level experiences
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Asked everything that was present in my resume
  • Q2. DBMS, OOps were asked a lot and react as well
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions. Could be done easily if practiced enough

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Array searching
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. When have you had a conflict with someone.
  • Ans. 

    I had a conflict with a team member over project priorities.

    • Miscommunication led to conflicting priorities

    • Discussed the issue openly and found a compromise

    • Learned the importance of clear communication in team projects

  • Answered by AI
  • Q2. Tell me you greatest project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines

    • Used React for front-end development

    • Implemented user authentication and authorization using JWT tokens

    • Utilized Node.js and Express for back-end development

    • Integrated MongoDB for database storage

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

I was interviewed in Dec 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Lifecycle hooks of Angular
  • Ans. 

    Angular lifecycle hooks are methods that allow you to tap into specific points in a component's lifecycle.

    • ngOnChanges: called when an input property changes

    • ngOnInit: called once the component is initialized

    • ngDoCheck: called during every change detection run

    • ngAfterContentInit: called after content (ng-content) has been projected into the component

    • ngAfterContentChecked: called after every check of the projected content

    • ng...

  • Answered by AI
  • Q2. SOLID principles
Round 2 - Technical 

(1 Question)

  • Q1. Questions on SQL
Round 3 - HR 

(1 Question)

  • Q1. Introduction and basic questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2023. There were 3 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 - HR 

(2 Questions)

  • Q1. Why are you looking to leave
  • Q2. What salary are you looking for
Round 3 - Technical 

(2 Questions)

  • Q1. Var vs let difference
  • Ans. 

    Var is function scoped, let is block scoped in JavaScript.

    • Var is function scoped, let is block scoped

    • Var can be redeclared, let cannot

    • Var is hoisted to the top of the function, let is not

    • Use let for block-level variables, var for function-level variables

  • Answered by AI
  • Q2. What are different react hooks
  • Ans. 

    React hooks are functions that let you use state and other React features in functional components.

    • useState: allows functional components to have local state

    • useEffect: allows side effects in functional components

    • useContext: allows functional components to access context

    • useReducer: alternative to useState for more complex state logic

    • useMemo: memoizes the result of a function

    • useCallback: memoizes a callback function

    • useRe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Several stages. Including basic questions, front end questions, algorithms dtc

Skills evaluated in this interview

Deloitte Interview FAQs

What are the top questions asked in Deloitte Software QA Engineer interview?

Some of the top questions asked at the Deloitte Software QA Engineer interview -

  1. How many locators types are th...read more
  2. What is data provi...read more
  3. What is interface in j...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 798 Interviews
ZS Interview Questions
3.4
 • 482 Interviews
BCG Interview Questions
3.8
 • 196 Interviews
View all
Deloitte Software QA Engineer Salary
based on 16 salaries
₹3.6 L/yr - ₹10 L/yr
23% less than the average Software QA Engineer Salary in India
View more details

Deloitte Software QA Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

5.0

Skill development

2.0

Work-life balance

4.0

Salary

4.0

Job security

3.0

Company culture

5.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Consultant
33k salaries
unlock blur

₹6.2 L/yr - ₹23 L/yr

Senior Consultant
20.7k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
14k salaries
unlock blur

₹3.6 L/yr - ₹12.3 L/yr

Assistant Manager
10k salaries
unlock blur

₹7.8 L/yr - ₹24 L/yr

Manager
7k salaries
unlock blur

₹15.8 L/yr - ₹51 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.9
Compare

PwC

3.4
Compare

Ernst & Young

3.4
Compare

Cognizant

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