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 16.8k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deloitte Software Quality Analyst Interview Questions and Answers

Updated 27 Apr 2024

Deloitte Software Quality Analyst Interview Experiences

1 interview found

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

I was interviewed before Apr 2023.

Round 1 - Aptitude Test 

The aptitude test had medium difficulty questions.

Round 2 - Case Study 

A case study was provided to us and based on that a few questions were asked followed by a few other technical questions.

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Few basics of java
Dsa question

Round 2 - Technical 

(2 Questions)

  • Q1. Java multithreading questions
  • Q2. Spring boot questions.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Code test on Codility

Round 2 - Technical 

(2 Questions)

  • Q1. How NodeJs handles concurrency
  • Ans. 

    NodeJs handles concurrency using event-driven, non-blocking I/O model.

    • NodeJs uses event loop to handle multiple requests concurrently.

    • It utilizes asynchronous functions to avoid blocking the main thread.

    • NodeJs supports callbacks, promises, and async/await for managing asynchronous operations.

  • Answered by AI
  • Q2. Event Loop, Single Threaded
Round 3 - Behavioral 

(1 Question)

  • Q1. Your day to day activities, Roles and Responsibilities
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are services in Drupal?
  • Ans. 

    Services in Drupal are reusable objects that perform specific functions, such as database queries or sending emails.

    • Services are defined in YAML files and can be accessed throughout a Drupal site.

    • They are used to encapsulate reusable functionality and promote code reusability.

    • Examples of services in Drupal include the database service for interacting with the database, the mail service for sending emails, and the logge

  • Answered by AI
  • Q2. How to debug in Drupal?
  • Ans. 

    Debugging in Drupal involves using tools like Devel module, watchdog(), and error logs.

    • Enable Devel module for debugging information

    • Use watchdog() function to log messages to Drupal's watchdog log

    • Check error logs for PHP errors and warnings

    • Use dpm() function to print variables for debugging purposes

  • Answered by AI

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

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Questions based on Java , C++ , OOPs, cloud computing, one coding question, regarding previous projects, some behavioural questions.

Deloitte Interview FAQs

How many rounds are there in Deloitte Software Quality Analyst interview?
Deloitte interview process usually has 2 rounds. The most common rounds in the Deloitte interview process are Aptitude Test and Case Study.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.8k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
PwC Interview Questions
3.4
 • 1.3k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 767 Interviews
ZS Interview Questions
3.4
 • 458 Interviews
BCG Interview Questions
3.8
 • 190 Interviews
View all
Deloitte Software Quality Analyst Salary
based on 14 salaries
₹3.6 L/yr - ₹9 L/yr
36% more than the average Software Quality Analyst Salary in India
View more details
Consultant
32.7k salaries
unlock blur

₹6.2 L/yr - ₹23 L/yr

Senior Consultant
20.8k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
13.8k salaries
unlock blur

₹3.8 L/yr - ₹12.6 L/yr

Assistant Manager
9.9k salaries
unlock blur

₹7.5 L/yr - ₹24 L/yr

Manager
6.9k salaries
unlock blur

₹15.5 L/yr - ₹52 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.9
Compare

PwC

3.4
Compare

Ernst & Young

3.5
Compare

Cognizant

3.8
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