Upload Button Icon Add office photos
Engaged Employer

i

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

Impact Analytics Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 73 Reviews

Filter interviews by

Impact Analytics Senior Front end Developer Interview Questions and Answers

Updated 18 Jun 2024

Impact Analytics Senior Front end Developer Interview Experiences

1 interview found

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

(4 Questions)

  • Q1. Advancement in HTML5 compared to HTML3
  • Ans. 

    HTML5 introduced new features like canvas, video, audio, and improved semantics compared to HTML3.

    • HTML5 introduced new elements like ,

    • HTML5 improved semantics with new structural elements like

      ,
      ,
    • HTML5 introduced new form input types like email, url, date, range for better user experience.

    • HTML5 added support for offline web applications through the use of Application Cache.

Answered by AI
  • Q2. Output based CSS positioning questions.
  • Q3. Coding question on JavaScript related to flat array without using flat method
  • Q4. React js coding question related to forward ref and imperative handle
  • Interview Preparation Tips

    Interview preparation tips for other job seekers - be prepared with HTML5 advancement, CSS positioning, code JS concepts with or without using inbuilt functions, have a solid practical understanding of all react concepts.

    Skills evaluated in this interview

    Interview questions from similar companies

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

    I applied via campus placement at ABES Engineering College, Ghaziabad and was interviewed before May 2023. There were 2 interview rounds.

    Round 1 - Assignment 

    1.5 hours machine coding round where you have to develop a given project using html/css/js

    Round 2 - Technical 

    (1 Question)

    • Q1. 1.5 hours technical round which majorly revolves around fundamentals of HTML/CSS/JS

    Interview Preparation Tips

    Topics to prepare for Josh Technology Group Senior Front end Developer interview:
    • JavaScript
    • HTML
    • CSS
    • CSS Pre-processors
    • Basic React
    Interview preparation tips for other job seekers - Keep your JS fundamentals strong, and practive DOM manupulations using JS
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    -

    I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

    Round 1 - Technical 

    (1 Question)

    • Q1. React Hooks and Project experience
    Round 2 - Technical 

    (2 Questions)

    • Q1. Performance Optimization Techniques
    • Ans. 

      Performance optimization techniques for React JS frontend development

      • Use React.memo for optimizing functional components

      • Avoid unnecessary re-renders by using shouldComponentUpdate or PureComponent for class components

      • Implement code splitting to reduce initial load time

      • Use lazy loading for components that are not immediately needed

      • Optimize images and assets for faster loading times

      • Minimize the use of inline styles and u...

    • Answered by AI
    • Q2. Lazy Loading and other ques related to that
    Round 3 - HR 

    (1 Question)

    • Q1. General HR Interview
    Interview experience
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Aptitude Test 

    Decent questions asked in the online mcq test

    Round 2 - Technical 

    (1 Question)

    • Q1. Redux vs context API
    • Ans. 

      Redux is a predictable state container for JavaScript apps, while Context API is a feature in React for passing data through the component tree.

      • Redux is more suitable for larger applications with complex state management needs.

      • Context API is simpler to use and is built into React, reducing the need for additional libraries.

      • Redux provides a single source of truth for the application state, making it easier to debug and ...

    • Answered by AI

    Skills evaluated in this interview

    I was interviewed in May 2022.

    Round 1 - Coding Test 

    (1 Question)

    Round duration - 60 Minutes
    Round difficulty - Medium

    • Q1. 

      Last Stone Weight Problem Explanation

      Given a collection of stones, each having a positive integer weight, perform the following operation: On each turn, select the two heaviest stones and smash them toge...

    • Ans. 

      This question is about finding the weight of the last stone after repeatedly smashing the two heaviest stones together.

      • Sort the array of stone weights in descending order.

      • Repeatedly smash the two heaviest stones until there is at most 1 stone left.

      • If there is 1 stone left, return its weight. Otherwise, return 0.

    • Answered by AI
    Round 2 - Coding Test 

    (1 Question)

    Round duration - 60 minutes
    Round difficulty - Medium

    • Q1. Design a sign-in page using only HTML and CSS.
    • Ans. 

      A signin page designed using HTML and CSS only.

      • Create a form element to contain the signin inputs

      • Use appropriate input types for email and password fields

      • Apply CSS styles to align and format the signin page

      • Add a submit button to trigger the signin action

    • Answered by AI
    Round 3 - Assignment 

    (1 Question)

    Round duration - 7 days
    Round difficulty - Medium

    • Q1. How would you design and develop a to-do list application using local storage?
    • Ans. 

      A todo list application using localstorage.

      • Use HTML, CSS, and JavaScript to create the user interface.

      • Use the localstorage API to store and retrieve todo items.

      • Implement features like adding, editing, and deleting todo items.

      • Display the list of todo items and their status.

      • Allow users to mark todo items as completed or incomplete.

    • Answered by AI
    Round 4 - Video Call 

    Round duration - 120 Minutes
    Round difficulty - Easy

    Round 5 - Video Call 

    (9 Questions)

    Round duration - 60 Minutes
    Round difficulty - Easy

    Questions related to react and high level javascript?

    • Q1. What is hoisting in JavaScript?
    • Ans. 

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

      • Hoisting applies to both variable and function declarations.

      • Variable declarations are hoisted 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
    • Q2. What is memoization in JavaScript?
    • Ans. 

      Memoization is a technique in JavaScript to cache the results of expensive function calls for future use.

      • Memoization improves performance by avoiding redundant calculations

      • It is commonly used in recursive functions or functions with expensive computations

      • The cached results are stored in a data structure like an object or a map

      • Memoization can be implemented manually or using libraries like Lodash or Memoizee

    • Answered by AI
    • Q3. What is an IIFE (Immediately Invoked Function Expression) in JavaScript?
    • Ans. 

      IIFE stands for Immediately Invoked Function Expression. It is a JavaScript function that is executed as soon as it is defined.

      • IIFE is a way to create a function expression and immediately invoke it.

      • It helps in creating a private scope for variables and functions.

      • It is commonly used to avoid polluting the global namespace.

      • IIFE can be written using different syntaxes like using parentheses, function declaration, or arro

    • Answered by AI
    • Q4. What are promises in JavaScript?
    • Ans. 

      Promises in JavaScript are objects that represent the eventual completion or failure of an asynchronous operation.

      • Promises are used to handle asynchronous operations such as fetching data from a server or reading a file.

      • They simplify the process of writing asynchronous code by providing a more structured approach.

      • Promises have three states: pending, fulfilled, or rejected.

      • They can be chained together using methods like...

    • Answered by AI
    • Q5. What is the Temporal Dead Zone in JavaScript?
    • Ans. 

      Temporal Dead Zone is a behavior in JavaScript where variables are not accessible before they are declared.

      • Temporal Dead Zone occurs when accessing variables before they are declared

      • Variables in the Temporal Dead Zone cannot be accessed or assigned

      • The Temporal Dead Zone is a result of JavaScript's hoisting behavior

      • Example: accessing a variable before it is declared will throw a ReferenceError

    • Answered by AI
    • Q6. What are arrow functions in JavaScript?
    • Ans. 

      Arrow functions are a concise way to write functions in JavaScript.

      • Arrow functions have a shorter syntax compared to regular functions.

      • They do not have their own 'this' value.

      • They do not have the 'arguments' object.

      • They cannot be used as constructors with the 'new' keyword.

      • They are commonly used in functional programming and with array methods like 'map' and 'filter'.

    • Answered by AI
    • Q7. What is JSX?
    • Ans. 

      JSX is a syntax extension for JavaScript that allows you to write HTML-like code in your JavaScript files.

      • JSX stands for JavaScript XML

      • It is commonly used with React to define the structure and appearance of components

      • JSX elements are transpiled into regular JavaScript function calls

      • It allows you to write HTML-like code with JavaScript expressions embedded within curly braces

      • Example:

        Hello, {name}!

    • Answered by AI
    • Q8. What are higher-order functions in JavaScript?
    • Ans. 

      Higher order functions are functions that can take other functions as arguments or return functions as their results.

      • Higher order functions can be used to create more flexible and reusable code.

      • They enable functional programming paradigms.

      • Examples of higher order functions include map, filter, and reduce in JavaScript.

    • Answered by AI
    • Q9. What is the virtual DOM in JavaScript?
    • Ans. 

      Virtual DOM is a lightweight copy of the actual DOM that allows efficient updates and rendering in JavaScript frameworks.

      • Virtual DOM is a concept used in JavaScript frameworks like React.

      • It is a lightweight copy of the actual DOM tree.

      • Changes made to the virtual DOM are compared with the actual DOM to determine the minimal updates needed.

      • This helps in efficient rendering and improves performance.

      • Virtual DOM allows deve...

    • Answered by AI
    Round 6 - HR 

    Round duration - 35 Minutes
    Round difficulty - Easy

    Happend around 08:30 pm

    Interview Preparation Tips

    Eligibility criteriaNo criteria.Josh Technology Group interview preparation:Topics to prepare for the interview - HTML, CSS, Javascript, React, C/C++, DSATime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

    Tip 1 : Internet fundamentals - HTTP, HTTPs, CDNs, DNS etc.
    Tip 2 : Web Storage - localstorage and session storage. Know how the cookies work and what does HttpOnly, same-site, secure mean in the context of cookies.
    Tip 3 : HTML - Get yourself familiar with semantic HTML elements, different types of attribute, HTML selectors and their precedence etc.
    Tip 4 : Learn advance level Javascript.
    Tip 5 : It will be better to have experience in any frontend frameworks/libraries, for example React.js.
    Tip 6 : You should be able to solve easy level DSA(array and linked-list) and problem solving related questions.

    Application resume tips for other job seekers

    Tip 1 : Have some development projects on resume.
    Tip 2 : Highlight your frontend development skills in your resume.

    Final outcome of the interviewSelected

    Skills evaluated in this interview

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

    Given the task to complete page design.

    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Create a Todo app
    • Ans. 

      A simple Todo app to manage tasks and deadlines

      • Create a form to add new tasks

      • Display a list of tasks with checkboxes to mark as complete

      • Include options to edit or delete tasks

      • Implement functionality to mark tasks as complete or incomplete

      • Add a feature to filter tasks by status (completed/incomplete)

    • Answered by AI
    • Q2. Lifecycle methods

    Skills evaluated in this interview

    I was interviewed in May 2022.

    Round 1 - Coding Test 

    (3 Questions)

    Round duration - 90 Minutes
    Round difficulty - Easy

    You are given three ds coding questions which you have to solve within 90 mins.
    The questions are easy to medium level for this round

    • Q1. 

      Non-Decreasing Array Problem Statement

      Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element.

      An array is defined as non-de...

    • Ans. 

      The solution checks if an integer array can become non-decreasing by modifying at most one element.

      • Iterate through the array and check if there are more than one decreasing pairs of elements.

      • If there are more than one decreasing pairs, return false.

      • If there is only one decreasing pair, check if modifying one of the elements can make the array non-decreasing.

      • If modifying the element at index i-1 or i can make the array ...

    • Answered by AI
    • Q2. 

      Sort Linked List Based on Actual Values

      You are given a Singly Linked List of integers that is initially sorted according to the absolute values of its elements. Your task is to sort this Linked List base...

    • Ans. 

      The task is to sort a singly linked list based on actual values instead of absolute values.

      • Traverse the linked list and store the values in an array

      • Sort the array using any sorting algorithm

      • Create a new linked list using the sorted array

      • Return the new linked list

    • Answered by AI
    • Q3. 

      Diameter of a Binary Tree Problem Statement

      Given a binary tree, return the length of its diameter. The diameter of a binary tree is defined as the length of the longest path between any two nodes in the ...

    • Ans. 

      The diameter of a binary tree is the length of the longest path between any two end nodes in the tree.

      • The diameter of a binary tree can be calculated by finding the maximum of the following three values: 1) the diameter of the left subtree, 2) the diameter of the right subtree, and 3) the longest path that passes through the root node.

      • To find the diameter of a binary tree, we can use a recursive approach. We calculate ...

    • Answered by AI
    Round 2 - Assignment 

    Round duration - N/A
    Round difficulty - Medium

    Round 3 - Video Call 

    (1 Question)

    Round duration - 120 Minutes
    Round difficulty - Hard

    This round focus on advanced Js concepts and the tech stack I used in my projects.

    • Q1. 

      Find Unique Element in Array

      You have been provided an integer array/list ARR of size N. Here, N is equivalent to 2M + 1 where each test case has M numbers appearing twice and one number appearing exactly...

    • Ans. 

      The task is to find the unique number in an array where all other numbers occur twice.

      • The array size is given by N = 2M + 1, where M is the number of elements occurring twice.

      • Loop through the array and use a hashmap to count the occurrences of each number.

      • Return the number with a count of 1, as it is the unique number.

    • Answered by AI
    Round 4 - HR 

    Round duration - 60 Minutes
    Round difficulty - Easy

    It was a late night round as i have already had the previous 3 rounds at the same day. The HR asked about my experience regarding the previous rounds and also some situation based questions.

    Interview Preparation Tips

    Eligibility criteria7 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Semantic HTML, Core concepts of CSS, SASS, JavaScriptTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

    Tip 1 : Have your basics storing rather than focusing on react or any other similar frameworks
    Tip 2 : Practice DOM manipulation using JS as in the assignment round you'll have to code an assignment with your screen shared
    Tip 3 : Practice advance JS concepts like prototyping, promises, etc.
    Tip 4 : Study your projects thoroughly, what tech you used where and why
    Tip 5 : Don't think that if you are unable to answer some output based questions or to code some question so you will not get selected. I myself have multiple wrong answers to tricky js output based questions but then the interviewer asks you to execute the question and explain why this has happened. If you are able to explain the correct reason for the answer you are good to go.

    Application resume tips for other job seekers

    Tip 1 : Mention your best projects along with Tech stack used so the interviewer can see what all tech stack you have worked on
    Tip 2 : Do not put false things on resume, as the interviewer will definitely ask cross questions and you will get tricked.
    Tip 3 : Don't worry about the resume too much, you are the main focus of the interview and not the resume.

    Final outcome of the interviewSelected

    Skills evaluated in this interview

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

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

    Round 1 - Assignment 

    Focused on JS questions

    Round 2 - Technical 

    (1 Question)

    • Q1. React concept explain
    • Ans. 

      React is a JavaScript library for building user interfaces.

      • React is a declarative, efficient, and flexible JavaScript library for building user interfaces.

      • It allows developers to create reusable UI components.

      • React uses a virtual DOM to improve performance by only updating the necessary parts of the actual DOM.

      • React follows a unidirectional data flow, making it easier to understand how data changes over time.

      • React can ...

    • Answered by AI

    Skills evaluated in this interview

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

    I applied via Campus Placement and was interviewed before Mar 2023. There were 5 interview rounds.

    Round 1 - Coding Test 

    - They use their own platform for interviews, and assessments.
    - There were html, css, js based questions in the coding round.
    - Some questions were theoretical too.
    - They tested nearly all major parts of js including let, const, arrays, promise, async, await, events, lexical scope, etc.

    Round 2 - Technical 

    (1 Question)

    • Q1. It was an online machine coding round, where you have to build something they ask in 1hr using html, css, js (vanilla).
    Round 3 - Technical 

    (1 Question)

    • Q1. Focused on html, css, and js (basic)
    Round 4 - Technical 

    (1 Question)

    • Q1. Focus majorly on JS some quick demonstration, advanced concepts like closures, async nature of js, etc
    Round 5 - HR 

    (1 Question)

    • Q1. Behavioral round

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare JS advance concept well

    Impact Analytics Interview FAQs

    How many rounds are there in Impact Analytics Senior Front end Developer interview?
    Impact Analytics interview process usually has 1 rounds. The most common rounds in the Impact Analytics interview process are Technical.
    What are the top questions asked in Impact Analytics Senior Front end Developer interview?

    Some of the top questions asked at the Impact Analytics Senior Front end Developer interview -

    1. advancement in HTML5 compared to HT...read more
    2. Coding question on JavaScript related to flat array without using flat met...read more
    3. React js coding question related to forward ref and imperative han...read more

    Tell us how to improve this page.

    Impact Analytics Senior Front end Developer Interview Process

    based on 1 interview

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    Mu Sigma Interview Questions
    2.6
     • 228 Interviews
    Tiger Analytics Interview Questions
    3.7
     • 220 Interviews
    Fractal Analytics Interview Questions
    4.0
     • 205 Interviews
    Magic Edtech Interview Questions
    3.1
     • 49 Interviews
    Affine Interview Questions
    3.4
     • 48 Interviews
    View all
    Senior Data Scientist
    72 salaries
    unlock blur

    ₹9 L/yr - ₹26.5 L/yr

    Senior Software Engineer
    69 salaries
    unlock blur

    ₹12 L/yr - ₹38.5 L/yr

    Data Scientist
    66 salaries
    unlock blur

    ₹6 L/yr - ₹21 L/yr

    Software Engineer
    53 salaries
    unlock blur

    ₹7 L/yr - ₹24.6 L/yr

    Senior Business Analyst
    44 salaries
    unlock blur

    ₹11 L/yr - ₹27 L/yr

    Explore more salaries
    Compare Impact Analytics with

    Fractal Analytics

    4.0
    Compare

    Mu Sigma

    2.6
    Compare

    Tiger Analytics

    3.7
    Compare

    LatentView Analytics

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