Upload Button Icon Add office photos

Filter interviews by

Genpact UI Developer Interview Questions and Answers

Updated 12 Jun 2021

Genpact UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 12 Jun 2021

Interview Questionnaire 

4 Questions

  • Q1. How to handle performance issues in angular
  • Ans. 

    Performance issues in Angular can be handled by optimizing code, reducing HTTP requests, and using lazy loading.

    • Optimize code by using trackBy in ngFor loops

    • Reduce HTTP requests by using caching and pagination

    • Use lazy loading to load only necessary components

    • Use AOT compilation to reduce load time

    • Avoid using ngIf with heavy computations

    • Use ChangeDetectionStrategy.OnPush to reduce change detection cycles

  • Answered by AI
  • Q2. How to create and use custom directive
  • Ans. 

    Custom directives in AngularJS allow you to create reusable components.

    • Create a new directive using the directive() method

    • Specify the directive's behavior using the link() method

    • Use the directive in HTML using its name as an attribute

    • Pass data to the directive using attributes

    • Example:

  • Answered by AI
  • Q3. How angular works , architecture
  • Ans. 

    Angular is a JavaScript framework for building web applications with a modular architecture.

    • Angular uses a component-based architecture to build reusable UI components

    • It uses a declarative approach to define UI elements and their behavior

    • Angular provides a powerful set of tools for data binding, dependency injection, and routing

    • It follows the MVC (Model-View-Controller) pattern to separate concerns and improve maintain...

  • Answered by AI
  • Q4. ES6 features

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Ui development and component related
  • Q2. Performance of technology and challenges
Round 2 - HR 

(2 Questions)

  • Q1. Personal introduction and location details
  • Q2. Negatition of salries excepectations

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very good organization. Freindly nature in team operation is good from leads hikes also ok
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Given UI task display like display boxes side by side in desktop screen and one after the other in mobile screen using media queries?
  • Q2. Explain difference between authorization vs authentication?
  • Ans. 

    Authentication verifies a user's identity, while authorization determines what a user can access.

    • Authentication confirms a user's identity through credentials like username and password.

    • Authorization controls access to resources based on the authenticated user's permissions.

    • Example: Logging into a website (authentication) and then being able to view/edit specific pages based on your role (authorization).

  • Answered by AI
  • Q3. How to render list in react? Also explain difference between state vs prop in react?
  • Ans. 

    To render a list in React, use map() function to iterate over an array of data and return a list of components. State is mutable data managed within a component, while props are immutable data passed from parent to child components.

    • To render a list in React, use map() function to iterate over an array of data and return a list of components.

    • Example: const items = ['item1', 'item2', 'item3']; items.map(item =>

    • read more

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What are the webpage optimization techniques? How to check webpage optimization? In lighthouse optimization reports , how to fix issue related render blocking scripts?
  • Ans. 

    Webpage optimization techniques include minifying CSS and JS files, optimizing images, using asynchronous loading for scripts, and reducing render-blocking scripts.

    • Minify CSS and JS files to reduce file sizes and improve loading times.

    • Optimize images by compressing them and using the correct file format (e.g. JPEG for photographs, PNG for graphics).

    • Use asynchronous loading for scripts to prevent them from blocking the ...

  • Answered by AI
  • Q2. Write scss code nested li element by applying background color 2 element and also use mixins?
  • Ans. 

    Use SCSS to apply background color to nested li elements and utilize mixins.

    • Use nesting to target the li elements within a parent element

    • Apply background color to the 2nd li element using the :nth-child() selector

    • Define and use mixins to reuse styles across the codebase

  • Answered by AI
  • Q3. How to fix cumulative layout shift issues?
  • Ans. 

    To fix cumulative layout shift issues, ensure all images and media have dimensions specified in HTML, use CSS aspect ratio boxes, and prioritize loading critical resources.

    • Specify dimensions for all images and media in HTML to prevent layout shifts.

    • Use CSS aspect ratio boxes to reserve space for images before they load.

    • Prioritize loading critical resources to avoid sudden layout changes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The Interview process is not good? First said technical round, then asked to share all details by filling in the portal and upload all documents. For documents and background verification uploaded all docs and UAN details. Again suddenly in the morning hr message in LinkedIn , says that there will client discussion round. When i asked them what is about the interview. They didn't event replied . Actually it was another technical round, where he interview question like all
hypothetically and behavioral questions. After all , simple says rejected?

Skills evaluated in this interview

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

(2 Questions)

  • Q1. JAVAscript related,es6 api calls
  • Q2. UI related css html questitions
Round 2 - Coding Test 

Javscript oop related coding

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

I applied via Naukri.com

Round 1 - HR 

(2 Questions)

  • Q1. What's your father do..
  • Ans. 

    My father is a software engineer who works for a tech company.

    • Father is a software engineer

    • Works for a tech company

  • Answered by AI
  • Q2. Tell me family details
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jun 2024.

Round 1 - Aptitude Test 

This is coding + mcq question

Round 2 - Technical 

(3 Questions)

  • Q1. What is react class based conponent?
  • Q2. What is mixins?
  • Q3. What are react lifecycles?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Excellent and test related which we worked technology only

Round 2 - Technical 

(2 Questions)

  • Q1. What is different between react and angular?
  • Ans. 

    React is a JavaScript library for building user interfaces, while Angular is a full-fledged framework for web development.

    • React is a library, while Angular is a framework.

    • React uses a virtual DOM for better performance, while Angular uses a regular DOM.

    • React is more flexible and allows developers to choose their own tools and libraries, while Angular has a more opinionated structure.

    • React is mainly focused on the view ...

  • Answered by AI
  • Q2. What is props drilling and higher order component in react. ?
  • Ans. 

    Props drilling is passing props through multiple levels of components. Higher order component is a function that takes a component and returns a new component.

    • Props drilling involves passing props from a parent component to a deeply nested child component, which can lead to prop pollution and make the code harder to maintain.

    • Higher order component is a pattern where a function takes a component and returns a new compon...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Previous projects domain
  • Q2. What is role of previous company and some questions related to previous projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Before going interview make sure know the previous work project’s business logic and technical knowledge

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 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 non-blocking execution of code by continuously checking the call stack and the task queue.

    • When the call stack is empty, the event loop moves tasks from the task queue to the call stack for execution.

    • Example: setTim...

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

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

    • DOM is a tree-like structure that represents the elements of a web page.

    • It allows developers to manipulate the content, structure, and style of a web page using scripting languages like JavaScript.

    • DOM provides methods and properties to interact with HTML elements, such as selecting, adding, removing, or modifying them.

    • Example: document.getE...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. React virtual dom, how it works
  • Ans. 

    React virtual DOM is a lightweight copy of the actual DOM, which allows React to efficiently update and render components.

    • React creates a virtual DOM tree that mirrors the actual DOM.

    • When changes occur, React compares the virtual DOM with the previous version to identify the minimal updates needed.

    • React then updates the virtual DOM and efficiently applies the changes to the actual DOM.

    • This process helps in optimizing p...

  • Answered by AI
  • Q2. Explain redux, and flow
  • Ans. 

    Redux is a predictable state container for JavaScript apps. Flow is a static type checker for JavaScript.

    • Redux is a state management library for JavaScript applications.

    • It helps in managing the state of an application in a predictable way.

    • It follows a unidirectional data flow pattern.

    • Flow is a static type checker for JavaScript that helps in catching errors before runtime.

    • It helps in improving the quality of code and r

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain unit testing
  • Ans. 

    Unit testing is a software testing technique where individual units or components of a software application are tested in isolation from the rest of the application.

    • Unit testing is done to ensure that each unit of the software application is working as expected.

    • It helps in identifying and fixing bugs early in the development cycle.

    • Unit tests are automated and can be run frequently to ensure that changes made to the cod...

  • Answered by AI
  • Q2. Explain routing in react
  • Ans. 

    Routing in React is the process of navigating between different components or pages based on the URL.

    • React Router is a popular library for handling routing in React

    • It allows for declarative routing with components and URLs

    • Routes can be defined with parameters and nested routes

    • Navigation can be done with Link and NavLink components

    • Programmatic navigation can be done with the useHistory hook

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with basic javascript and react concepts

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. About all lifecycle,hooks, virtual Dom questions on react js
  • Q2. Explain about Jwt and related token based questions.
  • Q3. Redux work flow kind of questions.
  • Q4. Java class , interface, abstraction kind of questions.
Round 2 - Coding Test 

JavaScript coding questions using map, filter, reduce.

React hooks coding example s.

Round 3 - One-on-one 

(3 Questions)

  • Q1. What were ur leaning in ur last project?
  • Q2. How was ur role and responsibilities. Questions about development process and testing methods.
  • Q3. Are u willing to learn new skills?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Tell answers honestly. Prepare well.

Genpact Interview FAQs

How to prepare for Genpact UI Developer interview?
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 Genpact. The most common topics and skills that interviewers at Genpact expect are Javascript, Angular, HTML, UI Development and CSS.
What are the top questions asked in Genpact UI Developer interview?

Some of the top questions asked at the Genpact UI Developer interview -

  1. How to handle performance issues in angu...read more
  2. How to create and use custom direct...read more
  3. How angular works , architect...read more

Tell us how to improve this page.

Genpact UI Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

UI Developer Interview Questions from Similar Companies

View all
Genpact UI Developer Salary
based on 47 salaries
₹2.9 L/yr - ₹13.8 L/yr
21% more than the average UI Developer Salary in India
View more details

Genpact UI Developer Reviews and Ratings

based on 4 reviews

4.0/5

Rating in categories

4.4

Skill development

3.5

Work-life balance

2.7

Salary

4.5

Job security

4.3

Company culture

2.7

Promotions

4.0

Work satisfaction

Explore 4 Reviews and Ratings
Process Developer
36.2k salaries
unlock blur

₹1 L/yr - ₹6.8 L/yr

Process Associate
28.1k salaries
unlock blur

₹0.9 L/yr - ₹6.5 L/yr

Assistant Manager
19.8k salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Management Trainee
19.2k salaries
unlock blur

₹1.6 L/yr - ₹8.5 L/yr

Manager
7.4k salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Explore more salaries
Compare Genpact with

Accenture

3.9
Compare

Capgemini

3.7
Compare

TCS

3.7
Compare

Cognizant

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