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

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deloitte Softwaretest Engineer Interview Questions and Answers

Updated 5 Sep 2024

Deloitte Softwaretest Engineer Interview Experiences

5 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Dec 2023.

Round 1 - Technical 

(1 Question)

  • Q1. What is regression testing? what is retesting? Difference between the severity and priority some of the basic SQL queries
  • Ans. 

    Regression testing is the process of retesting modified software to ensure that the existing functionalities are not affected.

    • Regression testing is performed after making changes to the software to ensure that the existing functionalities still work as expected.

    • It helps in identifying any new bugs or issues introduced due to the changes made.

    • Regression testing can be done manually or using automated testing tools.

    • It is...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Angular related questions?
  • Q2. Sql related questions?

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
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Snippet code solvings
  • Q2. Error detection for the code
  • Ans. 

    Error detection for code involves identifying and fixing bugs or issues in the software.

    • Reviewing the code for syntax errors, logic errors, and runtime errors

    • Using debugging tools to step through the code and identify issues

    • Writing test cases to cover different scenarios and ensure code functionality

    • Collaborating with developers to understand the code and potential issues

    • Utilizing automated testing tools to detect erro

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Testing related questions
  • Q2. What is System Testing
  • Ans. 

    System testing is a level of software testing where a complete and integrated software system is tested.

    • System testing ensures that all components of the software work together as expected

    • It involves testing the entire system against the requirements and specifications

    • Examples include performance testing, security testing, and compatibility testing

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Testing related questions

Skills evaluated in this interview

Deloitte interview questions for designations

 Software Engineer

 (34)

 Data Engineer

 (19)

 QA Engineer

 (9)

 Devops Engineer

 (4)

 Test Engineer

 (2)

 Cloud Engineer

 (2)

 Network Engineer

 (1)

 Security Engineer

 (1)

I applied via Job Fair and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About yourself and academic details and strength and weakness and how many sebbling and as well as project title as well as procedure
  • Q2. About company and why your choosing in this company and salary package expected

Interview Preparation Tips

Topics to prepare for Deloitte Softwaretest Engineer interview:
  • Manual testing and SQL
  • Types of testing
Interview preparation tips for other job seekers - I don't have job present iam searching for job I want to job in our company

Interview questions from similar companies

Interview experience
4
Good
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 - Coding Test 

Js or c# coding will be asked

Round 3 - Technical 

(2 Questions)

  • Q1. Mention life cycle hooks of angular
  • Ans. 

    Angular lifecycle hooks are methods that allow you to tap into the lifecycle of a component or directive.

    • 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

    • ngA...

  • Answered by AI
  • Q2. Opps features and MVC filters details
Round 4 - HR 

(1 Question)

  • Q1. Details About our carrier journey and personal information

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for interview well and an interview be calm don't feel bad about failure

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. How does Django apply migrations to the database?
  • Ans. 

    Django applies migrations to the database using the 'manage.py migrate' command.

    • Django tracks changes to models and generates migration files accordingly.

    • The 'manage.py makemigrations' command creates migration files based on model changes.

    • The 'manage.py migrate' command applies the generated migration files to the database.

    • Migrations help keep the database schema in sync with the changes in Django models.

  • Answered by AI
  • Q2. What is hoisting in javascript?
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
Round 2 - Assignment 

Create a full stack application in 3 days.

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Plugin pipeline based scenario question which will trigger first?
  • Q2. Which jscript method used to prevent form save??
  • Ans. 

    The onbeforeunload method is used to prevent form save.

    • Use the onbeforeunload method to display a warning message before leaving the page without saving the form.

    • Return a custom message in the method to prompt the user to confirm if they want to leave the page.

    • Example: window.onbeforeunload = function() { return 'Are you sure you want to leave this page without saving?'; };

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Behavioral interview
  • Q2. Package negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - What limitations each implementation has. Keep that clear. That will help you to clear scenario based questions.

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology (NIT), Patna and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. MULTIPLE QUESTIONS OF OOPS
  • Q2. Program of prime number
  • Ans. 

    A program to find prime numbers within a given range

    • Iterate through numbers in the given range

    • Check if each number is divisible by any number other than 1 and itself

    • If not divisible, it is a prime number

  • Answered by AI
  • Q3. Pseudo code of finding ones in a number
  • Ans. 

    Count the number of ones in a given number using pseudo code

    • Initialize a count variable to 0

    • Iterate through each bit of the number and check if it is 1

    • Increment the count if the bit is 1

    • Return the count as the result

  • Answered by AI
  • Q4. Basic questions of sql and mongodb

Interview Preparation Tips

Interview preparation tips for other job seekers - have proper command of oops ,basic DSA and have good projects

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Difference between inheritance and polymorphism
  • Ans. 

    Inheritance is a way to create a new class using properties and methods of an existing class, while polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Inheritance promotes code reusability and reduce...

  • Answered by AI
  • Q2. Write a code to check anagram or not
  • Ans. 

    Code to check if two strings are anagrams

    • Create a function that takes in two strings as input

    • Convert both strings to lowercase and remove any spaces

    • Sort both strings and compare if they are equal to determine if they are anagrams

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They asked very basic java questions like difference between inheritance and polyformism.
Asked basic java concepts

Skills evaluated in this interview

Deloitte Interview FAQs

How many rounds are there in Deloitte Softwaretest Engineer interview?
Deloitte interview process usually has 1-2 rounds. The most common rounds in the Deloitte interview process are Technical and One-on-one Round.
What are the top questions asked in Deloitte Softwaretest Engineer interview?

Some of the top questions asked at the Deloitte Softwaretest Engineer interview -

  1. what is regression testing? what is retesting? Difference between the severity ...read more
  2. What is System Test...read more
  3. Error detection for the c...read more

Tell us how to improve this page.

Deloitte Softwaretest Engineer Interview Process

based on 4 interviews in last 1 year

1 Interview rounds

  • Technical Round
View more

People are getting interviews through

based on 3 Deloitte interviews
Job Portal
33%
67% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 787 Interviews
ZS Interview Questions
3.4
 • 472 Interviews
BCG Interview Questions
3.8
 • 193 Interviews
View all
Deloitte Softwaretest Engineer Salary
based on 399 salaries
₹3 L/yr - ₹12.5 L/yr
32% more than the average Softwaretest Engineer Salary in India
View more details

Deloitte Softwaretest Engineer Reviews and Ratings

based on 22 reviews

4.4/5

Rating in categories

4.2

Skill development

3.7

Work-Life balance

4.3

Salary & Benefits

4.3

Job Security

4.4

Company culture

4.1

Promotions/Appraisal

4.1

Work Satisfaction

Explore 22 Reviews and Ratings
Consultant
32.8k salaries
unlock blur

₹6.2 L/yr - ₹23 L/yr

Senior Consultant
20.9k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
13.9k salaries
unlock blur

₹3.8 L/yr - ₹12.6 L/yr

Assistant Manager
9.9k salaries
unlock blur

₹7.7 L/yr - ₹24 L/yr

Manager
7k salaries
unlock blur

₹15.7 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