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

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Deloitte Front end Developer Interview Questions, Process, and Tips for Experienced

Updated 27 Feb 2025

Top Deloitte Front end Developer Interview Questions and Answers for Experienced

View all 8 questions

Deloitte Front end Developer Interview Experiences for Experienced

4 interviews found

Front end Developer Interview Questions & Answers

user image Biswojit Nayak

posted on 8 Feb 2025

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. Hoisting concept with examples and guess the output
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted.

    • Example: console.log(myVar); var myVar = 10; // Output: undefined

    • Example: console.log(myFunc()); function myFunc() { return 'Hello!'; } // Output: Hello!

  • Answered by AI
  • Q2. Map functionality with a call back function
  • Ans. 

    Using map function to apply a callback function to each element in an array

    • Map function is used to iterate over an array and apply a callback function to each element

    • The callback function can perform operations on each element and return a new value

    • Example: arr.map(item => item * 2) will double each element in the array

  • Answered by AI
  • Q3. Copy object, spread operator usage . Deep copy, sallow copy
  • Q4. Flexbox vs grid, dom, box model,
  • Ans. 

    Flexbox is best for one-dimensional layouts, Grid is best for two-dimensional layouts, DOM is the structure of a webpage, Box model is the layout of elements.

    • Flexbox is best for creating one-dimensional layouts like navigation bars or sidebars.

    • Grid is best for creating two-dimensional layouts like grids of images or cards.

    • DOM (Document Object Model) is the structure of a webpage, representing the elements as objects.

    • Bo...

  • Answered by AI
  • Q5. React optimization, why React,
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. What are semantic elements in HTML?
  • Ans. 

    Semantic elements in HTML provide meaning to the content, making it easier for search engines and screen readers to interpret.

    • Semantic elements are HTML tags that clearly define the content they wrap.

    • They provide structure and meaning to the content, making it more accessible and SEO-friendly.

    • Examples include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <

  • Answered by AI
  • Q2. Difference between html5 and html?
  • Ans. 

    HTML5 is the latest version of HTML with new features and improvements.

    • HTML5 supports new elements like <header>, <footer>, <nav>, <article>, <section> etc.

    • HTML5 supports new input types like email, url, date, range, color etc.

    • HTML5 supports new APIs like Geolocation, Web Storage, Web Workers, Canvas, Audio/Video etc.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How to pass data in components using Vue js and react js?
  • Ans. 

    Data can be passed in components using props in Vue.js and React.js.

    • In Vue.js, data can be passed down to child components using props.

    • In React.js, data can be passed down to child components using props as well.

    • In Vue.js, props are defined in the parent component and passed down to the child component.

    • In React.js, props are passed down from parent to child components as attributes.

  • Answered by AI

Front end Developer Interview Questions Asked at Other Companies for Experienced

asked in JUSPAY
Q1. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q2. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
asked in JUSPAY
Q3. Path Existence in Directed Graph Given a directed and unweighted ... read more
Q4. Chocolate Distribution Problem You are given an array/list CHOCOL ... read more
asked in Nutanix
Q5. implement a calculator class which does this cal.add(2).sub(3).mu ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(4 Questions)

  • Q1. Javascipt question
  • Q2. Promises, filter, map, What is single page , mulitple page application, opened google page by search for one product in that using console filter it only for sony products only
  • Q3. What is DOM, what is the use of that
  • Ans. 

    DOM stands for Document Object Model, it is a programming interface for web documents. It represents the structure of a document as a tree of objects.

    • DOM is used to interact with HTML and XML documents in a structured way

    • It allows developers to manipulate the content, structure, and style of a website dynamically

    • DOM provides methods and properties to access and modify elements on a web page

    • Example: document.getElementB...

  • Answered by AI
  • Q4. What is the output if u type document in console
  • Ans. 

    The output will display the document object in the console.

    • Typing 'document' in the console will return the document object, which represents the current HTML document.

    • The document object provides access to the content and structure of the webpage, allowing manipulation of elements and properties.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamental knowledge on javascript is much important

Skills evaluated in this interview

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

Basic angular questions like-lazy loading, == === operator etc

Round 2 - HR 

(1 Question)

  • Q1. Map function , hashmap

Deloitte interview questions for designations

 Senior Front end Developer

 (2)

 Software Developer

 (42)

 Java Developer

 (21)

 Salesforce Developer

 (19)

 Web Developer

 (4)

 Application Developer

 (4)

 Python Developer

 (3)

 Servicenow Developer

 (3)

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Merge sort time complexity less
  • Ans. 

    Merge sort has a time complexity of O(n log n) in the worst case scenario.

    • Merge sort divides the array into two halves, sorts them recursively, and then merges them back together.

    • The time complexity of merge sort is O(n log n) in the worst case scenario.

    • For example, sorting an array of 8 elements would take 3 recursive calls to merge sort.

  • Answered by AI
  • Q2. Palindrome with react js to show on UI
  • Ans. 

    Create a palindrome checker using React JS to display on the UI

    • Create a input field for user to enter a string

    • Use state to store the input string

    • Create a function to check if the input string is a palindrome

    • Display the result on the UI

  • Answered by AI
Round 2 - Coding Test 

Javascript question on promise, callbacks, hosting

Skills evaluated in this interview

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

(1 Question)

  • Q1. Array linked list queue
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(1 Question)

  • Q1. Fir arrow function This keyword Promises Promise chain Generator function Rest operator Spread operator React hooks Higher order component Redux life cycle Palindrome string code Fibonacci code

I applied via Campus Placement and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. SQL Queries
  • Q2. OOPS Concepts
  • Q3. Program to calculate factorial
  • Ans. 

    Program to calculate factorial

    • Use a loop to multiply the numbers from 1 to n

    • Handle edge cases like 0 and negative numbers

    • Use recursion for a more elegant solution

  • Answered by AI
  • Q4. Projects- Major , Minor , Internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, should have good communication skills.

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

Deloitte Interview FAQs

How many rounds are there in Deloitte Front end Developer interview for experienced candidates?
Deloitte interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Deloitte interview process for experienced candidates are Technical, Coding Test and HR.
How to prepare for Deloitte Front end Developer interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Deloitte. The most common topics and skills that interviewers at Deloitte expect are Javascript, Front End, Typescript, AWS and Bootstrap.
What are the top questions asked in Deloitte Front end Developer interview for experienced candidates?

Some of the top questions asked at the Deloitte Front end Developer interview for experienced candidates -

  1. How to pass data in components using Vue js and react ...read more
  2. Hoisting concept with examples and guess the out...read more
  3. what is the output if u type document in cons...read more

Tell us how to improve this page.

Deloitte Front end Developer Interview Process for Experienced

based on 4 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.2k Interviews
KPMG India Interview Questions
3.5
 • 806 Interviews
ZS Interview Questions
3.3
 • 456 Interviews
BCG Interview Questions
3.7
 • 198 Interviews
Bain & Company Interview Questions
3.8
 • 107 Interviews
WSP Interview Questions
4.2
 • 97 Interviews
Gartner Interview Questions
4.1
 • 81 Interviews
Mercer Interview Questions
3.7
 • 81 Interviews
View all
Deloitte Front end Developer Salary
based on 181 salaries
₹3.8 L/yr - ₹15.4 L/yr
43% more than the average Front end Developer Salary in India
View more details

Deloitte Front end Developer Reviews and Ratings

based on 11 reviews

3.9/5

Rating in categories

4.0

Skill development

3.4

Work-life balance

4.0

Salary

4.0

Job security

4.2

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 11 Reviews and Ratings
Consultant
34.8k salaries
unlock blur

₹6.5 L/yr - ₹28.2 L/yr

Senior Consultant
22k salaries
unlock blur

₹11 L/yr - ₹42 L/yr

Analyst
14.8k salaries
unlock blur

₹3.8 L/yr - ₹12.9 L/yr

Assistant Manager
10.4k salaries
unlock blur

₹7.8 L/yr - ₹28 L/yr

Manager
7.3k salaries
unlock blur

₹16 L/yr - ₹52 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.8
Compare

PwC

3.4
Compare

Ernst & Young

3.4
Compare

Cognizant

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