Upload Button Icon Add office photos

Filter interviews by

Eternal Infotech Front end Developer Interview Questions, Process, and Tips

Updated 23 Sep 2024

Eternal Infotech Front end Developer Interview Experiences

1 interview found

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

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

Round 1 - Assignment 

To showcase a project to demostrate context api

Round 2 - One-on-one 

(4 Questions)

  • Q1. What is event loop
  • Ans. 

    Event loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It allows for tasks to be queued and executed in a non-blocking manner.

    • Event loop continuously checks the call stack and the task queue, moving tasks from the queue to the call stack when the stack is empty.

    • Example: setTimeout()...

  • Answered by AI
  • Q2. 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
  • Q3. What is prop drilling
  • Ans. 

    Prop drilling is the process of passing down props from a parent component to multiple levels of nested child components.

    • Prop drilling can lead to a lot of unnecessary passing of props through intermediate components.

    • It can make the code harder to maintain and understand.

    • One way to avoid prop drilling is by using context API or state management libraries like Redux.

  • Answered by AI
  • Q4. What is CSR and SSR
  • Ans. 

    CSR stands for Client-Side Rendering and SSR stands for Server-Side Rendering.

    • CSR involves rendering web pages on the client side using JavaScript.

    • SSR involves rendering web pages on the server side and sending the fully rendered page to the client.

    • CSR is faster for subsequent page loads as it only fetches data, while SSR is slower but better for SEO.

    • Examples: React uses CSR by default, while Next.js allows for SSR.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn React fundatmentals and web vitals

Skills evaluated in this interview

Interview questions from similar companies

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

Coding a frontend UI from provided image. And creating a fucntional star rating system

Round 2 - Technical 

(2 Questions)

  • Q1. Designing a Component API in React using Typescript.
  • Ans. 

    Designing a Component API in React using Typescript involves defining props, state, and methods for the component.

    • Define the props interface to specify the expected input data for the component

    • Use typescript types to ensure type safety and prevent runtime errors

    • Define the state interface to manage the internal state of the component

    • Implement methods to handle user interactions and component logic

    • Document the component

  • Answered by AI
  • Q2. Create a function that can clear all the timer ids at once.
  • Ans. 

    Function to clear all timer ids at once

    • Create an array to store all timer ids

    • Iterate through the array and clear each timer id using clearTimeout() function

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is event bubbling
  • Q2. What is TDD and why TDD

Interview Preparation Tips

Interview preparation tips for other job seekers - Do well
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Reactive form and crud operations pipes crud operations

Round 2 - Technical 

(1 Question)

  • Q1. Basic understanding of js and angular is must expeciallly how js works questions on arrays objects shallow deep copy
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Caching Strategy
  • Q2. What is micro Frontend architecture
  • Ans. 

    Micro Frontend architecture is an approach to building front-end applications by breaking them down into smaller, independently deployable units.

    • Allows different teams to work on separate parts of the application

    • Each micro frontend can be developed using different technologies

    • Enables incremental upgrades and updates without affecting the entire application

    • Can improve performance by loading only the necessary components

    • ...

  • Answered by AI
  • Q3. Pure and impure pipes in angular
  • Ans. 

    Pure pipes in Angular are stateless and do not change the input data, while impure pipes can have side effects and change the input data.

    • Pure pipes are used for simple transformations like formatting dates or numbers.

    • Impure pipes are used for more complex transformations that require state or side effects.

    • Pure pipes are faster and more efficient as they only run when a pure change to the input data is detected.

    • Impure p...

  • Answered by AI
  • Q4. How to make singleton services multiton
  • Ans. 

    Singleton services can be made multiton by maintaining a map of instances with unique keys.

    • Create a map to store instances with unique keys

    • Use a factory method to retrieve instances based on keys

    • Ensure that only one instance is created per key

  • Answered by AI
  • Q5. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by injecting mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: AngularJS, Spring Framework

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read Frontend system design also

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. CSS Box-model definition
  • Ans. 

    CSS Box-model defines how elements are rendered in a webpage, including padding, border, and margin.

    • Box-model consists of content, padding, border, and margin

    • Content area is where text or images are displayed

    • Padding is the space between content and border

    • Border is the line around the content and padding

    • Margin is the space outside the border

  • Answered by AI
  • Q2. Difference b/n flexbox and grid
  • Ans. 

    Flexbox is for one-dimensional layouts, grid is for two-dimensional layouts.

    • Flexbox is best for arranging items in a single row or column.

    • Grid is best for creating complex layouts with rows and columns.

    • Flexbox is more suitable for smaller scale layouts, while grid is better for larger scale layouts.

    • Flexbox is more flexible in terms of item order and sizing, while grid provides more control over the overall layout.

    • Both

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Change Detection
  • Q2. Subjects & types
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is mean by dom
  • Ans. 

    DOM stands for Document Object Model, which is a programming interface for web documents.

    • DOM is a representation of the structure of a web page, allowing scripts to dynamically access and update the content, structure, and style of the page.

    • It provides a way for scripts to interact with the elements on a web page, such as changing text, styles, and attributes.

    • DOM is hierarchical, with elements nested inside other eleme...

  • Answered by AI
  • Q2. Explain promise in typescript
  • Ans. 

    Promises in TypeScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in a more readable and manageable way.

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

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: const myPromise = new Promise((resolve, reject) => { ...

  • Answered by AI
  • Q3. Explain hooks in javascript
  • Ans. 

    Hooks in JavaScript are functions that let you use state and other React features without writing a class.

    • Hooks were introduced in React 16.8 to allow functional components to have state and lifecycle methods.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are functions that allow you to reuse

  • Answered by AI
  • Q4. Write a program 1 to 100 prime numbers
  • Ans. 

    Generate an array of prime numbers from 1 to 100.

    • Iterate from 1 to 100 and check if each number is prime

    • A prime number is only divisible by 1 and itself

    • Start with a list of prime numbers and check divisibility

  • Answered by AI

Skills evaluated in this interview

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

2 DSA questions. Both medium level difficult

Interview Questionnaire 

3 Questions

  • Q1. Technical problem
  • Q2. Regarding JavaScript
  • Q3. Front End developer questions

Eternal Infotech Interview FAQs

How many rounds are there in Eternal Infotech Front end Developer interview?
Eternal Infotech interview process usually has 2 rounds. The most common rounds in the Eternal Infotech interview process are Assignment and One-on-one Round.
What are the top questions asked in Eternal Infotech Front end Developer interview?

Some of the top questions asked at the Eternal Infotech Front end Developer interview -

  1. what is prop drill...read more
  2. what is event l...read more
  3. what is context ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Eternal Infotech interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Compare Eternal Infotech with

Accenture

3.9
Compare

Capgemini

3.8
Compare

HCLTech

3.5
Compare

Teleperformance

3.9
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