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

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deloitte Software Developer fresher Interview Questions and Answers

Updated 17 Apr 2023

Deloitte Software Developer fresher Interview Experiences

2 interviews found

I applied via Company Website and was interviewed in Oct 2022. 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 - Aptitude Test 

What is the value of c, if 8 is 4% of a, and 4 is 8% of b,c equals b/a

Round 3 - Coding Test 

Write a program to reverse on integer in python

Interview Preparation Tips

Topics to prepare for Deloitte Software Developer fresher interview:
  • Python
Interview preparation tips for other job seekers - Use informational interview to network
Job search like
Round 1 - HR 

(11 Questions)

  • Q1. Why are you looking for a change?
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Share details of your previous job.
  • Q5. Why should we hire you?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.
  • Q9. You're wish any questions
  • Q10. Nothing questions to ask
  • Q11. Why should you be hired? ... How will you manage work pressure? ... Why do you want to join us? ...
Round 2 - Aptitude Test 

Nothing

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your career goals. First, identify what type of career you want. ...

Software Developer fresher Interview Questions Asked at Other Companies

asked in Accenture
Q1. Can we implement multiple interfaces in a single Java class?
asked in Infosys
Q2. What is dynamic language? What is difference between statically t ... read more
asked in Accenture
Q3. What is normalization in the database?
asked in PCS-Global
Q4. 2.what is the difference between constructor and method.
Q5. How can culture add interview questions help you attract the best ... read more

Interview questions from similar companies

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

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in Dec 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

It was a MCQ type round with 3 coding questions. This round consisted of questions from aptitude, SQL knowledge and a sql command writing question, Programming basics, Web Technology, 2 coding questions. CS Subjects and some Situational based questions.

Round 2 - Group Discussion 

It was a Just a minute round in which a topic was given by the interviewer to speak upon.

Round 3 - Technical 

(1 Question)

  • Q1. What all technologies you feel will be fruitful in learning with regards to your future growth?
Round 4 - Technical 

(1 Question)

  • Q1. Explain NOSQL databases and their working?
  • Ans. 

    NOSQL databases are non-relational databases that provide flexible schema design and horizontal scalability.

    • NOSQL databases store data in key-value pairs, wide-column stores, document databases, or graph databases.

    • They are designed for handling large volumes of data and are highly scalable.

    • Examples include MongoDB, Cassandra, Redis, and Neo4j.

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Describe the working of your projects and how did you manage with hectic load of your curriculum being a part of your project building which is from some other domain?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be thorough with whatever is mentioned in your resume and be confident in answering the question. If you are not sure about the answer don’t give it a try it may have a negative impact. Also you should have an in-depth knowledge of your projects.

Skills evaluated in this interview

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

(1 Question)

  • Q1. .net questions, web api
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

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

Round 1 - Coding Test 

Find the greatest element in the moving array

Round 2 - Technical 

(1 Question)

  • Q1. Interviewer Asked me to build Airline Management System
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

Deloitte Interview FAQs

How many rounds are there in Deloitte Software Developer fresher interview?
Deloitte interview process usually has 2-3 rounds. The most common rounds in the Deloitte interview process are Aptitude Test, HR and Resume Shortlist.
What are the top questions asked in Deloitte Software Developer fresher interview?

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

  1. You're wish any questi...read more
  2. Nothing questions to ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
IBM Interview Questions
4.0
 • 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
 • 790 Interviews
ZS Interview Questions
3.4
 • 478 Interviews
BCG Interview Questions
3.8
 • 195 Interviews
View all
Deloitte Software Developer fresher Salary
based on 5 salaries
₹3.6 L/yr - ₹10 L/yr
28% more than the average Software Developer fresher Salary in India
View more details

Deloitte Software Developer fresher Reviews and Ratings

based on 3 reviews

3.9/5

Rating in categories

4.2

Skill development

3.9

Work-life balance

3.9

Salary

3.9

Job security

4.2

Company culture

3.9

Promotions

4.2

Work satisfaction

Explore 3 Reviews and Ratings
Consultant
32.9k salaries
unlock blur

₹6.2 L/yr - ₹23 L/yr

Senior Consultant
20.6k 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 - ₹53 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
Did you find this page helpful?
Yes No
write
Share an Interview