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.4k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deloitte Senior Software Developer Interview Questions and Answers

Updated 14 Dec 2024

Deloitte Senior Software Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design Principles
Round 2 - Coding Test 

Frequency of all letters in a string

Senior Software Developer Interview Questions & Answers

user image Himanshu Chaudhary

posted on 14 Dec 2024

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

(1 Question)

  • Q1. Java and output related questions

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Freshworks
Q2. Middle of Linked List Problem Statement Given the head node of a ... read more
asked in Freshworks
Q3. Overlapping Intervals Problem Statement You are given the start a ... read more
asked in SAP
Q4. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Freshworks
Q5. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. You will be asked all basic to medium questions related to your Tech stack, In my case It was throughout from JavaScript Node js Angular MongoDB and mySql
Round 2 - Technical 

(1 Question)

  • Q1. Most of the time they took L1 + L2 round simultaneously.
Round 3 - Technical 

(1 Question)

  • Q1. I was the hardest technical round where they asked questions from leetcode, JavaScript code snippet output, they will ask to write queries in different db's and they also ask system design and one more thi...
Round 4 - HR 

(1 Question)

  • Q1. You will be discussing about you compensation and joining date.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself and be confident.
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
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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java questions , stream api
  • Q2. Whatever you have mention in resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics, memory management, multithreading.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Asked about SAAS, JS questions
Round 2 - Coding Test 

Given a case study need to solve in 2 days

Round 3 - One-on-one 

(1 Question)

  • Q1. Explain the case study. Palindrome function in any prog language
  • Ans. 

    A palindrome function checks if a given string reads the same forwards and backwards.

    • A palindrome function typically involves reversing the input string and comparing it to the original string.

    • Examples: 'racecar' is a palindrome, 'hello' is not a palindrome.

    • Common languages for implementing a palindrome function include Python, Java, and C++.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. General Guidelines
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
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 4 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 - Aptitude Test 

Mix of coding, aptitude, java, javascript

Round 3 - Technical 

(2 Questions)

  • Q1. Resume based questions on project
  • Q2. Basic SQL, Java streams questions
Round 4 - Technical 

(5 Questions)

  • Q1. Project related questions
  • Q2. Internal working of hashmap
  • Q3. Design patterns I've used
  • Q4. Print whole Fibonacci series using recursion.
  • Q5. Show my Github projects, and the interviewer didn't even properly looked into the code.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare:
Core java concepts,
Well written resume with proper understanding of every project.
SQL,
Basic coding questions
Design patterns, solid etc.
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

Deloitte Interview FAQs

How many rounds are there in Deloitte Senior Software Developer interview?
Deloitte interview process usually has 1-2 rounds. The most common rounds in the Deloitte interview process are Technical and Coding Test.
What are the top questions asked in Deloitte Senior Software Developer interview?

Some of the top questions asked at the Deloitte Senior Software Developer interview -

  1. Java and output related questi...read more
  2. Design Princip...read more

Tell us how to improve this page.

Deloitte Senior Software Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.2k 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
 • 799 Interviews
ZS Interview Questions
3.4
 • 482 Interviews
BCG Interview Questions
3.8
 • 196 Interviews
View all
Deloitte Senior Software Developer Salary
based on 107 salaries
₹7.2 L/yr - ₹30 L/yr
23% more than the average Senior Software Developer Salary in India
View more details

Deloitte Senior Software Developer Reviews and Ratings

based on 6 reviews

4.1/5

Rating in categories

4.1

Skill development

4.3

Work-life balance

3.9

Salary

3.9

Job security

3.9

Company culture

2.8

Promotions

3.5

Work satisfaction

Explore 6 Reviews and Ratings
Consultant
33.1k salaries
unlock blur

₹6.3 L/yr - ₹23.1 L/yr

Senior Consultant
20.8k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
14.1k salaries
unlock blur

₹3.7 L/yr - ₹12.4 L/yr

Assistant Manager
10k salaries
unlock blur

₹7.8 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.4
Compare

Cognizant

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