Upload Button Icon Add office photos

Filter interviews by

Deloitte Digital Fullstack Java Developer Interview Questions and Answers

Updated 14 Aug 2024

Deloitte Digital Fullstack Java Developer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Will ask more about oops concepts, less about basic spring
  • Q2. Angular basiscs

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core concepts of java/angular,
Will some coding questions like what will be the output of this code like that, and same for database will ask to write SQL query based on the requirement

Interview questions from similar companies

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

(3 Questions)

  • Q1. JVM related Questions
  • Q2. Angular features
  • Q3. React Features and how to deploy
  • Ans. 

    React is a JavaScript library for building user interfaces. Deployment can be done using various methods.

    • React features include virtual DOM, component-based architecture, JSX syntax, and state management.

    • Deployment can be done using tools like Heroku, Netlify, AWS, or manually by building and serving static files.

    • Continuous integration and deployment (CI/CD) pipelines can be set up to automate the deployment process.

    • Se...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Wasted my time interviewers are not good in this company mostly they wont select you since your are not from south India. They will ask some question even if you ask all correct they will not select you bcos they already have selected other person and just finishes interview in 15min and so. Advice: Don't waste time.

Skills evaluated in this interview

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

Just some basic questions.

Round 2 - Coding Test 

Total 6 questions. 4 basic and 2 advanced.

Round 3 - Technical 

(2 Questions)

  • Q1. Write a program for Fibonacci?
  • Ans. 

    Program to generate Fibonacci series using Java

    • Use a loop to generate Fibonacci series

    • Start with 0 and 1 as the first two numbers

    • Add the previous two numbers to get the next number

    • Repeat the process until the desired number of terms

  • Answered by AI
  • Q2. Write a code for inheritance ?
  • Ans. 

    Inheritance in Java allows a class to inherit properties and behaviors from another class.

    • Create a parent class with common properties and methods

    • Create a child class that extends the parent class

    • Child class can access parent class properties and methods

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I was interviewed in Feb 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. As its for experienced , most of the questions are scenario based like how will you handle if one microservice goes down ?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

Ask 2 sorting techniques

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 Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency injection
  • Q2. What is middleware
Round 2 - techno mangerial 

(1 Question)

  • Q1. Project based questions
Round 3 - HR 

(1 Question)

  • Q1. Salaru neogiation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Basic Dot net questions like ref and out keywords, var and dynamic keywords, SOLID principles, MVC framework related questions.
  • Q2. SQL related queries, CTE, Temp table

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your basics and whatever projects u have done have knowledge about that..
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. JVM related Questions
  • Q2. Angular features
  • Q3. React Features and how to deploy
  • Ans. 

    React is a JavaScript library for building user interfaces. Deployment can be done using various methods.

    • React features include virtual DOM, component-based architecture, JSX syntax, and state management.

    • Deployment can be done using tools like Heroku, Netlify, AWS, or manually by building and serving static files.

    • Continuous integration and deployment (CI/CD) pipelines can be set up to automate the deployment process.

    • Se...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Wasted my time interviewers are not good in this company mostly they wont select you since your are not from south India. They will ask some question even if you ask all correct they will not select you bcos they already have selected other person and just finishes interview in 15min and so. Advice: Don't waste time.

Skills evaluated in this interview

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

I applied via campus placement at Bannari Amman Institute of Technology, Sathyamangalam and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Probability, Logical Reasoning, etc.

Round 2 - Coding Test 

4 Basic coding questions
You can choose any language you want to code from.
Questions like palindrome and string reverse were asked.

Round 3 - HR 

(2 Questions)

  • Q1. Asked about the project I had done.
  • Q2. Comfortable with relocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while answering and need to know Java.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is Dependency Injection
  • Ans. 

    Dependency Injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • In Dependency Injection, the dependencies of a class are injected from the outside, typically through constructor injection or setter injection.

    • This helps in achieving loose coupling between classes, making the code more modular and easier to test.

    • Example: Spring Framework uses Dependency Injec...

  • Answered by AI
  • Q2. How is exception handled in Inheritance
  • Ans. 

    Exceptions in inheritance are handled using try-catch blocks in the subclass.

    • Inherited methods can throw exceptions that need to be caught in the subclass.

    • Subclass can override superclass methods and handle exceptions differently.

    • Superclass methods can declare checked exceptions that subclasses must handle.

    • Exceptions can be rethrown or wrapped in a new exception in the subclass.

  • Answered by AI
  • Q3. Define a immutable class
  • Ans. 

    Immutable class is a class whose instances cannot be modified after creation.

    • Immutable classes have all fields as final and private.

    • Immutable classes do not have any setter methods.

    • Examples of immutable classes in Java are String, Integer, and LocalDate.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Different design pattern and how you have implement in projects
  • Ans. 

    I have implemented design patterns like Singleton, Factory, and Observer in various projects.

    • Implemented Singleton pattern to ensure only one instance of a class exists.

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

    • Used Observer pattern to establish a one-to-many dependency between objects, so that when one object changes state, all its dependents are notif

  • Answered by AI
  • Q2. How to improve the performance of a running application.
  • Ans. 

    To improve the performance of a running application, consider optimizing code, database queries, caching, and server resources.

    • Optimize code by identifying and fixing bottlenecks, reducing unnecessary loops, and improving algorithms.

    • Optimize database queries by using indexes, avoiding unnecessary joins, and limiting the amount of data retrieved.

    • Implement caching mechanisms to store frequently accessed data in memory, r...

  • Answered by AI

Skills evaluated in this interview

Deloitte Digital Interview FAQs

How many rounds are there in Deloitte Digital Fullstack Java Developer interview?
Deloitte Digital interview process usually has 1 rounds. The most common rounds in the Deloitte Digital interview process are Technical.
What are the top questions asked in Deloitte Digital Fullstack Java Developer interview?

Some of the top questions asked at the Deloitte Digital Fullstack Java Developer interview -

  1. Will ask more about oops concepts, less about basic spr...read more
  2. angular basi...read more

Tell us how to improve this page.

Deloitte Digital Fullstack Java Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Senior Consultant
238 salaries
unlock blur

₹12 L/yr - ₹39 L/yr

Consultant
211 salaries
unlock blur

₹7.5 L/yr - ₹24 L/yr

Graphic Designer
157 salaries
unlock blur

₹1.5 L/yr - ₹6 L/yr

Analyst
97 salaries
unlock blur

₹3.5 L/yr - ₹10.5 L/yr

Senior Graphic Designer
70 salaries
unlock blur

₹3.2 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Deloitte Digital with

Accenture

3.9
Compare

IBM iX

4.4
Compare

Parsh Digital Services

4.0
Compare

Wipro Digital

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