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 Senior Software Net Engineer Interview Questions, Process, and Tips

Updated 4 Oct 2024

Deloitte Senior Software Net Engineer Interview Experiences

1 interview found

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

(6 Questions)

  • Q1. Diffrnce bw abstraction and interfaces
  • Ans. 

    Abstraction is hiding implementation details, while interfaces define a contract for classes to implement.

    • Abstraction focuses on hiding the internal implementation details of a class, allowing the user to only interact with the public methods and properties.

    • Interfaces define a contract that specifies a set of methods that a class must implement, without specifying how those methods are implemented.

    • Abstraction can be ac...

  • Answered by AI
  • Q2. Kafka related questions as i worked on it
  • Q3. Application lifecycle
  • Q4. Worked on web services? explain
  • Ans. 

    Yes, I have worked on web services. I have experience in designing, developing, and maintaining RESTful APIs.

    • Designed RESTful APIs for communication between different systems

    • Developed web services using technologies like Node.js, Express, and Spring Boot

    • Maintained and optimized existing web services for better performance

    • Integrated third-party APIs into existing systems for added functionality

  • Answered by AI
  • Q5. Difference between globalzn and localzn
  • Ans. 

    globalzn refers to variables or functions that can be accessed from anywhere in the program, while localzn refers to variables or functions that are only accessible within a specific scope.

    • Globalzn variables/functions can be accessed from anywhere in the program

    • Localzn variables/functions are only accessible within a specific scope

    • Globalzn variables/functions have a wider scope than localzn variables/functions

  • Answered by AI
  • Q6. Design patterns - which one worked on
  • Ans. 

    I have worked on various design patterns including Singleton, Factory, Observer, and Strategy.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are no...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Contained only mcq questions related to maths and reasoning

Round 2 - Technical 

(2 Questions)

  • Q1. How to detect two loops in a linkedlist
  • Ans. 

    Use Floyd's Cycle Detection Algorithm to detect two loops in a linked list.

    • Initialize two pointers, slow and fast, both starting at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps in each iteration.

    • If they meet at some point, there is a loop. Reset one pointer to head and move both by one step until they meet again to find the start of the loop.

  • Answered by AI
  • Q2. Mainly all the basics questions on DSA and C++ Language and all the ds like stacks, linkedlist, tree, array, queue,map difference between queue and stack
Round 3 - Technical 

(3 Questions)

  • Q1. Questions on project
  • Q2. Code simple que like reverse the string in every possible language that is mentioned on yor resume ,like node js react or python and even c language
  • Q3. Basics questions of os like deadlocks
Round 4 - HR 

(1 Question)

  • Q1. I was note selected for this round

Interview Preparation Tips

Topics to prepare for BCG Junior Software Engineer interview:
  • DSA
  • React
  • SQL
  • Linkedlist
  • array

Skills evaluated in this interview

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

Deloitte Interview FAQs

How many rounds are there in Deloitte Senior Software Net Engineer interview?
Deloitte interview process usually has 1 rounds. The most common rounds in the Deloitte interview process are Technical.
What are the top questions asked in Deloitte Senior Software Net Engineer interview?

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

  1. design patterns - which one worked...read more
  2. worked on web services? expl...read more
  3. diffrnce bw abstraction and interfa...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.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
 • 473 Interviews
BCG Interview Questions
3.8
 • 193 Interviews
View all
Consultant
33k salaries
unlock blur

₹6.3 L/yr - ₹23 L/yr

Senior Consultant
20.7k salaries
unlock blur

₹11 L/yr - ₹35 L/yr

Analyst
14k salaries
unlock blur

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