Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by HashedIn by Deloitte Team. If you also belong to the team, you can get access from here

HashedIn by Deloitte Verified Tick

Compare button icon Compare button icon Compare
4.2

based on 387 Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

HashedIn by Deloitte Front end Developer Interview Questions and Answers for Experienced

Updated 16 Apr 2024

HashedIn by Deloitte Front end Developer Interview Experiences for Experienced

1 interview found

Front end Developer Interview Questions & Answers

user image Shital Karhale

posted on 16 Apr 2024

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

(1 Question)

  • Q1. Explain closure
  • Ans. 

    Closure is a function that retains access to variables from its parent scope even after the parent function has finished executing.

    • Closure allows a function to access and manipulate variables from its outer function's scope.

    • It occurs when a function is defined within another function and the inner function uses variables from the outer function.

    • Closure helps in creating private variables and functions in JavaScript.

    • Exa...

  • Answered by AI

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is bridge? What is the new architecture?
  • Ans. 

    Bridge is a structural design pattern that decouples an abstraction from its implementation. The new architecture refers to modern design patterns and technologies used in software development.

    • Bridge pattern allows the client code to work with different implementations of an interface independently.

    • The new architecture in front end development may include concepts like component-based architecture, state management lib...

  • Answered by AI
  • Q2. How will you optimize a react native app
  • Ans. 

    Optimizing a React Native app involves reducing bundle size, improving performance, and enhancing user experience.

    • Use code splitting to reduce initial load time

    • Optimize images and assets for smaller file sizes

    • Implement lazy loading for components that are not immediately visible

    • Minimize the use of third-party libraries and only include necessary dependencies

    • Utilize performance monitoring tools like React Native Perform

  • Answered by AI
  • Q3. What is context API
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is useful for sharing global data such as themes, user authentication, or language preferences.

    • Context API consists of three main parts: Provider...

  • Answered by AI
  • Q4. What is hoisting
  • Ans. 

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

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Sep 2024.

Round 1 - Coding Test 

Promise , and event loop questions and one hackerrank DSA problem

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

I applied via Naukri.com and was interviewed in Oct 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 - Technical 

(3 Questions)

  • Q1. Basic questions related to html5,css3,javascript,react js and DSA question to execute also
  • Q2. 1.dsa for repeated array
  • Ans. 

    Implement a data structure and algorithm for finding repeated elements in an array.

    • Use a hash map to store the frequency of each element in the array.

    • Iterate through the array and update the frequency in the hash map.

    • Return the elements with frequency greater than 1 as the repeated elements.

  • Answered by AI
  • Q3. 2.dsa for sorting array
  • Ans. 

    Implementing DSA for sorting array of strings

    • Use a sorting algorithm like bubble sort, selection sort, or merge sort

    • Compare strings using built-in comparison functions or custom comparison functions

    • Ensure the sorting algorithm is efficient and handles edge cases

  • Answered by AI
Round 3 - Coding Test 

Css3 questions JavaScript also. Login page and positions and dsa for flattened the nested array

Interview Preparation Tips

Interview preparation tips for other job seekers - give more time to DSA questions.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Angular basics and JavaScript
Round 3 - Technical 

(1 Question)

  • Q1. Event loop and angular
Round 4 - HR 

(1 Question)

  • Q1. Career details and package discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed before Jun 2023.

Round 1 - Assignment 

Create 1 webpage using html, css, js, scss - xd provided

Round 2 - Technical 

(7 Questions)

  • Q1. Doctype in html
  • Ans. 

    Doctype in HTML specifies the version of HTML being used in the document.

    • Doctype declaration is placed at the very beginning of an HTML document before the tag.

    • It helps the browser to render the web page correctly by specifying the version of HTML being used.

    • Common doctype declaration for HTML5 is .

Answered by AI
  • Q2. What is Flexbox in css
  • Ans. 

    Flexbox is a layout model in CSS that allows you to design complex layouts with a more efficient and predictable way.

    • Flexbox is used for creating flexible and responsive layouts.

    • It allows you to align and distribute space among items in a container.

    • Flexbox properties include display: flex, flex-direction, justify-content, align-items, and more.

    • Example: display: flex; justify-content: center; align-items: center;

  • Answered by AI
  • Q3. Document.ready and window.onload difference
  • Ans. 

    Document.ready is a jQuery function that fires when the DOM is ready, while window.onload is a vanilla JavaScript event that fires when all resources have loaded.

    • Document.ready is specific to jQuery, while window.onload is a standard JavaScript event.

    • Document.ready fires when the DOM is ready, even if images are still loading, while window.onload waits for all resources to finish loading.

    • Document.ready is faster than w...

  • Answered by AI
  • Q4. Position properties in css
  • Ans. 

    Position properties in CSS control the positioning of elements on a webpage.

    • The 'position' property specifies the type of positioning method used for an element (static, relative, absolute, fixed, or sticky).

    • The 'top', 'right', 'bottom', and 'left' properties can be used to adjust the position of an element relative to its containing element.

    • Examples: position: relative; top: 10px; left: 20px;

  • Answered by AI
  • Q5. Box model in css
  • Ans. 

    Box model in CSS refers to the way elements are rendered on a webpage, including content, padding, border, and margin.

    • The box model consists of content, padding, border, and margin.

    • Content is the actual content of the element.

    • Padding is the space between the content and the border.

    • Border is the line that surrounds the padding.

    • Margin is the space outside the border.

    • You can adjust the size of each part of the box model u...

  • Answered by AI
  • Q6. Semantic tags in html
  • Ans. 

    Semantic tags in HTML are used to give meaning to the content of a webpage for better accessibility and SEO.

    • Semantic tags help search engines understand the structure of a webpage.

    • Examples of semantic tags include

      ,
      ,
    • Using semantic tags improves accessibility for screen readers and other assistive technologies.

  • Answered by AI
  • Q7. Display properties
  • Ans. 

    Display properties are used in CSS to control the layout and appearance of elements on a webpage.

    • Display property determines how an element is displayed on the page

    • Common values include 'block', 'inline', 'inline-block', 'flex', 'grid', 'none'

    • Example: display: block; will make the element a block-level element

  • Answered by AI
    Round 3 - One-on-one 

    (3 Questions)

    • Q1. What is Flexbox in css
    • Ans. 

      Flexbox is a layout model in CSS that allows for the design of complex responsive layouts with a more efficient and predictable way.

      • Flexbox is used to create flexible and responsive layouts.

      • It allows for easy alignment and distribution of space among items in a container.

      • Flexbox properties include display: flex, flex-direction, justify-content, align-items, and more.

      • Example: display: flex; justify-content: center; alig...

    • Answered by AI
    • Q2. Box sizing difference and scenario
    • Ans. 

      Box sizing property in CSS determines how the total width and height of an element is calculated.

      • Content-box: width and height only include the content, padding and border are added on top.

      • Border-box: width and height include content, padding, and border.

      • Use content-box when you want to specify the width and height of the content area only.

      • Use border-box when you want to specify the width and height of the entire box i

    • Answered by AI
    • Q3. Bootstrap grid and flex

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be prepared well, all the best👍

    Skills evaluated in this interview

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

    He had given JavaScript questions first & he asked about the output of that questions topics related is like - function, async & await, setTimeout.

    Q1. const transaction = [
    {id: 1, amount: 100, type: "credit"},
    {id: 2, amount: -50, type: "debit" },
    {id: 3, amount: 200, type: "credit"},
    {id: 4, amount: -150, type: "debit"},
    {id: 5, amount: 50, type: "credit"}
    ];

    const threshold = 100;

    O/P - {
    balance: 150,
    exceededTransactions: [1, 3, 4, 5]
    }

    Q2. Anagrams
    I/P: ["abc", "bca", "cat", "act"]
    O/p - [["abc", "bca"],["cat","act"]]

    I was interviewed in May 2021.

    Interview Questionnaire 

    3 Questions

    • Q1. Class vs functional components?
    • Ans. 

      Functional components are simpler and easier to test, while class components have more features and better performance.

      • Functional components are stateless and use hooks for state management.

      • Class components have lifecycle methods and can hold state.

      • Functional components are easier to read and write.

      • Class components have better performance in certain scenarios.

      • Functional components are recommended for simple UI componen...

    • Answered by AI
    • Q2. Types of props and their how do they work?
    • Ans. 

      Props are inputs passed to React components. There are two types: ownProps and childrenProps.

      • ownProps are passed directly to the component from its parent

      • childrenProps are passed to the component through its children

      • ownProps can be accessed using this.props in the component

      • childrenProps can be accessed using this.props.children in the component

    • Answered by AI
    • Q3. What is redux and how it works?
    • Ans. 

      Redux is a predictable state container for JavaScript apps.

      • Redux is a state management library for JavaScript applications.

      • It provides a centralized store to manage the state of an application.

      • Redux follows a unidirectional data flow pattern.

      • Actions are dispatched to update the state in the store.

      • Reducers are pure functions that update the state based on the dispatched actions.

      • Selectors are used to retrieve data from t...

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Only react based questions were asked, so should have deep knowledge on important components of react.

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    -
    Result
    -

    I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

    Round 1 - Technical 

    (4 Questions)

    • Q1. What is bridge? What is the new architecture?
    • Ans. 

      Bridge is a structural design pattern that decouples an abstraction from its implementation. The new architecture refers to modern design patterns and technologies used in software development.

      • Bridge pattern allows the client code to work with different implementations of an interface independently.

      • The new architecture in front end development may include concepts like component-based architecture, state management lib...

    • Answered by AI
    • Q2. How will you optimize a react native app
    • Ans. 

      Optimizing a React Native app involves reducing bundle size, improving performance, and enhancing user experience.

      • Use code splitting to reduce initial load time

      • Optimize images and assets for smaller file sizes

      • Implement lazy loading for components that are not immediately visible

      • Minimize the use of third-party libraries and only include necessary dependencies

      • Utilize performance monitoring tools like React Native Perform

    • Answered by AI
    • Q3. What is context API
    • Ans. 

      Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

      • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

      • It is useful for sharing global data such as themes, user authentication, or language preferences.

      • Context API consists of three main parts: Provider...

    • Answered by AI
    • Q4. What is hoisting
    • Ans. 

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

      • Variable declarations are hoisted to the top of their scope, but not their initializations.

      • Function declarations are fully hoisted, including their definitions.

      • Hoisting can lead to unexpected behavior if not understood properly.

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    Not Selected
    Round 1 - Resume Shortlist 
    Pro Tip by AmbitionBox:
    Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
    View all tips
    Round 2 - Technical 

    (1 Question)

    • Q1. Basic of react, html, css
    Round 3 - Coding Test 

    Write code to check palindrome no. Sime basic react js task

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Please dont waste u r time h
    By giving interview here. After giving two rounds of interview very well hr will ghost you. They will even bother to tell the status. They will just simply block u r number.my hr name us vidhi shaha. She just blocked my no. Not answering to my calls even not replying to mails. Atleast have courtesy to reply Back. Very unprofessional behaviour.There is no reason to reject me even in interview interviewer was saying good on every ans i gave. And the actual scam is now .u will get call from xyz agency saying that we are hiring for postion u will have to pay u r one month salary. Boom .they were talking about neo soft. Shame on this company. They will not hire real talent.they will hire people through agency.

    HashedIn by Deloitte Interview FAQs

    How many rounds are there in HashedIn by Deloitte Front end Developer interview for experienced candidates?
    HashedIn by Deloitte interview process for experienced candidates usually has 1 rounds. The most common rounds in the HashedIn by Deloitte interview process for experienced candidates are Technical.
    How to prepare for HashedIn by 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 HashedIn by Deloitte. The most common topics and skills that interviewers at HashedIn by Deloitte expect are Angularjs, Frontend Development, HTML, TypeScript and UI Development.
    What are the top questions asked in HashedIn by Deloitte Front end Developer interview for experienced candidates?

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

    1. Explain clos...read more
    2. variable declaration in...read more
    3. css flexbox & g...read more

    Tell us how to improve this page.

    HashedIn by Deloitte Front end Developer Salary
    based on 5 salaries
    ₹3.5 L/yr - ₹15.2 L/yr
    47% more than the average Front end Developer Salary in India
    View more details

    HashedIn by Deloitte Front end Developer Reviews and Ratings

    based on 1 review

    5.0/5

    Rating in categories

    5.0

    Skill development

    5.0

    Work-life balance

    5.0

    Salary

    5.0

    Job security

    5.0

    Company culture

    5.0

    Promotions

    5.0

    Work satisfaction

    Explore 1 Review and Rating
    Software Engineer
    402 salaries
    unlock blur

    ₹5 L/yr - ₹16 L/yr

    Software Engineer2
    357 salaries
    unlock blur

    ₹9.5 L/yr - ₹22 L/yr

    Senior Software Engineer
    211 salaries
    unlock blur

    ₹8.1 L/yr - ₹26 L/yr

    Software Developer
    162 salaries
    unlock blur

    ₹7 L/yr - ₹15.5 L/yr

    Senior Product Specialist
    162 salaries
    unlock blur

    ₹12.4 L/yr - ₹25 L/yr

    Explore more salaries
    Compare HashedIn by Deloitte with

    TCS

    3.7
    Compare

    Infosys

    3.7
    Compare

    Wipro

    3.7
    Compare

    HCLTech

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