Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Gedu Services Private Limited Team. If you also belong to the team, you can get access from here

Gedu Services Private Limited Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 45 Reviews

Filter interviews by

Gedu Services Private Limited React Js Frontend Developer Interview Questions and Answers

Updated 26 Nov 2024

Gedu Services Private Limited React Js Frontend Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. [1,2,5,1,3,2,4,5.1] Write a code in Javascript to remove all duplicates from this code.
  • Q2. 1>0>1 What is the output of this code in Javascript?
  • Ans. 

    The output of the code is 1.

    • The expression 1>0 evaluates to true, which is then compared to 1 resulting in true.

    • In JavaScript, true is equivalent to 1 when used in numerical operations.

  • Answered by AI
  • Q3. +"10"+20+30 What is the output of this code?
  • Ans. 

    The output of the code is '102030'.

    • The code is concatenating the strings '10', '20', and '30'.

    • In JavaScript, when a string is concatenated with a number, the number is converted to a string before concatenation.

  • Answered by AI
  • Q4. What is redux and how to use redux in react.js?
  • Ans. 

    Redux is a state management library for JavaScript applications, commonly used with React.js.

    • Redux helps manage the state of an application in a predictable way.

    • It stores the entire state of the application in a single immutable object.

    • Actions are dispatched to update the state, and reducers specify how the state changes in response to actions.

    • Redux can be used in React.js applications by connecting components to the R...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Javascript concepts.

Skills evaluated in this interview

Interview questions from similar companies

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. What is enums in typescript, difference between shallow and deep copy, what is virtual dom, what are closures, some psuedo codes, react machine coding. and other basic javascript questions.
  • Ans. 

    Enums in TypeScript are a way to define a set of named constants. Shallow copy only copies the reference, while deep copy creates a new object. Virtual DOM is a lightweight copy of the actual DOM. Closures are functions that have access to their own scope and the scope of their containing function.

    • Enums in TypeScript are used to define a set of named constants. For example, enum Color { Red, Green, Blue }

    • Shallow copy c...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Testing related questions, and other javascript and react questions.
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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2023. There were 2 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. Asked json web tokean authentication, authorisation. architecture of your project.
  • Q2. Coding question- create crud app. Given array of objects. Render list in table. Do edit, delete, sort list on object property.
  • Ans. 

    Create a CRUD app to render, edit, delete, and sort a list of objects in a table.

    • Create a React component to render a table with data from the array of objects.

    • Implement functions for editing and deleting objects from the list.

    • Add functionality to sort the list based on object properties.

    • Use state and props to manage data and re-render the table when changes occur.

  • Answered by AI
  • Q3. Difference bw rem, em, px. React hooks- useEffect, life cycle methods. use cases of hooks.
  • Ans. 

    rem, em, px are units of measurement in CSS. useEffect is a React hook for side effects. Hooks are used for stateful logic in functional components.

    • rem: relative to the font-size of the root element (html). Example: 1rem = 16px

    • em: relative to the font-size of the element. Example: 2em = 32px if the font-size of the element is 16px

    • px: fixed-size units. Example: font-size: 14px

    • useEffect: React hook used for side effects ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do hands on coding round good.

Skills evaluated in this interview

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

Given the task to complete page design.

Gedu Services Private Limited Interview FAQs

How many rounds are there in Gedu Services Private Limited React Js Frontend Developer interview?
Gedu Services Private Limited interview process usually has 1 rounds. The most common rounds in the Gedu Services Private Limited interview process are Technical.
What are the top questions asked in Gedu Services Private Limited React Js Frontend Developer interview?

Some of the top questions asked at the Gedu Services Private Limited React Js Frontend Developer interview -

  1. What is redux and how to use redux in react....read more
  2. 1>0>1 What is the output of this code in Javascri...read more
  3. +"10"+20+30 What is the output of this co...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Gedu Services Private Limited interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

upGrad Interview Questions
3.8
 • 201 Interviews
Unacademy Interview Questions
3.0
 • 200 Interviews
Simplilearn Interview Questions
3.2
 • 99 Interviews
TransUnion Interview Questions
4.0
 • 87 Interviews
NIIT Interview Questions
3.6
 • 81 Interviews
Toppr Interview Questions
3.4
 • 74 Interviews
DISH TV Interview Questions
3.5
 • 56 Interviews
View all

Fast track your campus placements

View all
Customer Relationship Officer
16 salaries
unlock blur

₹4.2 L/yr - ₹10 L/yr

Talent Acquisition Specialist
7 salaries
unlock blur

₹10 L/yr - ₹13 L/yr

Customer Relation Officer
6 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Graphic Designer
5 salaries
unlock blur

₹5.2 L/yr - ₹8 L/yr

Business Development Manager
5 salaries
unlock blur

₹6 L/yr - ₹13 L/yr

Explore more salaries
Compare Gedu Services Private Limited with

Unacademy

3.0
Compare

upGrad

3.8
Compare

Educomp Solutions

3.6
Compare

MeritNation

3.6
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