Upload Button Icon Add office photos

Filter interviews by

Edgytal Fintech Investment Services Senior Front end Developer Interview Questions and Answers

Updated 19 Aug 2023

Edgytal Fintech Investment Services Senior Front end Developer Interview Experiences

1 interview found

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 

(5 Questions)

  • Q1. Taking is strong in any language.
  • Q2. Any update or query asked to Hr
  • Q3. Show strong or basic knowledge to hr.
  • Q4. All terms and policy asked.
  • Q5. All query take to hr.
Round 3 - Coding Test 

Wordpress bootstrap

Interview Preparation Tips

Interview preparation tips for other job seekers - Full Confidence. Speak good language.

Interview questions from similar companies

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

(7 Questions)

  • Q1. Css flexbox and grid
  • Q2. Pagination on scroll
  • Ans. 

    Implementing pagination on scroll allows for loading more content as the user reaches the bottom of the page.

    • Use a scroll event listener to detect when the user has reached the bottom of the page

    • Make an API call to fetch more data when the bottom is reached

    • Append the new data to the existing content on the page

  • Answered by AI
  • Q3. Immediately invoked fn and anonymous fn
  • Ans. 

    Immediately invoked function expressions (IIFE) are functions that are executed immediately after they are created.

    • IIFE is defined and invoked at the same time using parentheses at the end of the function declaration.

    • Anonymous functions do not have a name and can be used as IIFE by wrapping them in parentheses.

    • IIFE is commonly used to create a private scope for variables and functions.

  • Answered by AI
  • Q4. What are closures
  • Ans. 

    Closures are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow functions to access variables from their parent function even after the parent function has returned

    • They help in creating private variables and functions in JavaScript

    • Closures are commonly used in event handlers and callbacks

  • Answered by AI
  • Q5. What is promise? explain
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() method to handle success and failure callbacks.

    • Example: Fetch API returns a promise when making an HTTP request.

  • Answered by AI
  • Q6. What is lazy loading -explain
  • Ans. 

    Lazy loading is a technique used in web development to defer loading non-essential resources until they are needed.

    • Lazy loading helps improve page load times by only loading resources when they are required.

    • It is commonly used for images, videos, and other media files on a webpage.

    • Lazy loading can be implemented using JavaScript libraries like Intersection Observer or by using native browser features like loading='lazy

  • Answered by AI
  • Q7. Media query and css selectors

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Assignment 

They asked JS basics and Promises, hoisting

Round 2 - Coding Test 

Just asked about my work culture, as I worked in startup and product based company, they except me work in Agile and how u will adopt to MNC / service based company culture

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

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

Round 1 - Coding Test 

It was a hacker coding test mostly javascript questions

Round 2 - Technical 

(3 Questions)

  • Q1. React advance concept
  • Q2. Context api how to use that
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props manually.

    • Create a context using createContext() method

    • Use the Provider component to wrap the components that need access to the context

    • Access the context data using the useContext() hook within the consuming components

  • Answered by AI
  • Q3. Higher order component
Round 3 - Behavioral 

(3 Questions)

  • Q1. Mainly introduction, how do you manage a project
  • Q2. How to debug a code
  • Ans. 

    Debugging a code involves identifying and fixing errors in the code to ensure it runs correctly.

    • Use console.log() statements to print out values and check for errors

    • Utilize browser developer tools to inspect elements and debug JavaScript

    • Step through the code using breakpoints to identify the source of the issue

    • Review error messages and stack traces to pinpoint the problem

    • Consider using tools like linters and debuggers

  • Answered by AI
  • Q3. How to get employee details using group by
  • Ans. 

    Employee details can be retrieved using group by clause in SQL.

    • Use GROUP BY clause in SQL to group employee details based on a specific column

    • Aggregate functions like COUNT, SUM, AVG can be used with GROUP BY to get summarized employee details

    • Example: SELECT department, COUNT(*) as total_employees FROM employees GROUP BY department

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. General intro to the hr person
Round 2 - Technical 

(1 Question)

  • Q1. JS related questions
Round 3 - Technical 

(1 Question)

  • Q1. JS related questions
Round 4 - HR 

(1 Question)

  • Q1. JS related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are states and props in React?
  • Ans. 

    States and props are important concepts in React for managing and passing data between components.

    • States are mutable data that can be changed within a component

    • Props are read-only data passed from parent to child components

    • States are managed within a component using setState() method

    • Props are accessed using this.props in a component

  • Answered by AI
  • Q2. What is Virtual DOM
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM that allows for efficient updates and rendering in web applications.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing direct manipulation of the actual DOM.

    • When changes are made to the virtual DOM, a comparison is done with the actual DOM to determine the minimal updates needed for rendering.

    • This process helps reduce the numbe...

  • Answered by AI
  • Q3. Build a fetch and filter component
  • Ans. 

    A fetch and filter component for data retrieval and manipulation

    • Use fetch API to retrieve data from an API endpoint

    • Implement a filter function to manipulate the retrieved data based on user input

    • Display the filtered data in the UI

  • Answered by AI
Round 2 - Coding Test 

Javascript and React snippets

Interview Preparation Tips

Topics to prepare for LTIMindtree Senior Front end Developer interview:
  • Async
  • Javascript
  • React.Js

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Output questions on JavaScript.(Array, hoisting, event)
  • Q2. Questions on React and Redux
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. React JS and Java script
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Jul 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about yourself in terms of journey with your technical skills
  • Q2. What do you know about Angular and what features have you used in your project?
  • Q3. What features of HTML have you used?
  • Ans. 

    I have used features like semantic tags, forms, tables, and multimedia elements in HTML.

    • Semantic tags like

      ,
      ,
    • Forms for user input with

      , ,
    • Tables for organizing data with

      , ,

    • Multimedia elements like ,

  • Answered by AI
  • Q4. What is flex in CSS?
  • Ans. 

    Flex in CSS is a layout module that allows elements to align and distribute space within a container.

    • Flexbox is used for creating flexible and responsive layouts.

    • It allows for easy alignment and distribution of elements within a container.

    • Flex properties include flex-direction, justify-content, align-items, and flex-grow.

  • Answered by AI
  • Q5. What are various things available in flex? What is hoisting? What are function expressions?
  • Ans. 

    Flex is a CSS layout model that allows responsive and flexible design. Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their scope. Function expressions are anonymous functions assigned to variables.

    • Flex is used for creating responsive and flexible layouts in CSS.

    • Hoisting in JavaScript moves variable and function declarations to the top of their scope.

    • Function expressi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Deloitte Senior Front end Developer interview:
  • HTML
  • CSS
  • Javascript
  • Angular

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is Hositing
  • Ans. 

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

    • Variable declarations are hoisted but not their initializations

    • Function declarations are fully hoisted

    • Hoisting can lead to unexpected behavior if not understood properly

  • Answered by AI
  • Q2. What is closure
  • Ans. 

    Closure is the combination of a function bundled together with references to its surrounding state.

    • Closure allows a function to access variables from its outer scope even after the outer function has finished executing.

    • It is created whenever a function is defined within another function.

    • Closure helps in maintaining the state of a function and allows for data encapsulation.

  • Answered by AI

Edgytal Fintech Investment Services Interview FAQs

How many rounds are there in Edgytal Fintech Investment Services Senior Front end Developer interview?
Edgytal Fintech Investment Services interview process usually has 3 rounds. The most common rounds in the Edgytal Fintech Investment Services interview process are Resume Shortlist, HR and Coding Test.
What are the top questions asked in Edgytal Fintech Investment Services Senior Front end Developer interview?

Some of the top questions asked at the Edgytal Fintech Investment Services Senior Front end Developer interview -

  1. Taking is strong in any langua...read more
  2. All terms and policy ask...read more
  3. All query take to ...read more

Tell us how to improve this page.

Mobile Application Developer
4 salaries
unlock blur

₹5 L/yr - ₹5.2 L/yr

Senior Quality Analyst
3 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Explore more salaries
Compare Edgytal Fintech Investment Services with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview