Upload Button Icon Add office photos
Engaged Employer

i

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

Extended Web AppTech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Extended Web AppTech Interview Questions and Answers

Updated 8 Jan 2025
Popular Designations

6 Interview questions

A Reactjs Developer was asked 10mo ago
Q. Create a to-do list in ReactJS.
Ans. 

A todo list in React.js allows users to add, delete, and mark tasks as completed.

  • Use state to store the list of tasks

  • Create components for adding, deleting, and marking tasks as completed

  • Implement functionality to add, delete, and mark tasks as completed

  • Use CSS for styling the todo list

View all Reactjs Developer interview questions
A Software Developer was asked
Q. What are higher-order functions in React JS? Explain with an example.
Ans. 

High order functions in React JS are functions that take other functions as arguments or return functions as their output.

  • High order functions allow for code reusability and cleaner code structure.

  • An example of a high order function in React JS is the map function, which takes a function as an argument to transform elements in an array.

  • Another example is the filter function, which takes a function as an argument t...

View all Software Developer interview questions
A Software Developer was asked
Q. What are closures?
Ans. 

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

  • Closures allow functions to 'remember' the environment in which they were created

  • They can access variables from their outer function even after the function has returned

  • Closures are commonly used in event handlers and callbacks

View all Software Developer interview questions
A Front end Developer was asked
Q. Create a React project and fetch data from an API to display it.
Ans. 

Create a React project to fetch and display data from an API

  • Set up a new React project using create-react-app

  • Use the fetch API or axios to make a request to the desired API

  • Store the fetched data in state using useState hook

  • Render the data on the UI using JSX

View all Front end Developer interview questions
A Front end Developer was asked
Q. What are the lifecycle methods?
Ans. 

Lifecycle methods are methods that are called automatically at specific points in a component's lifecycle.

  • componentDidMount() - called after the component is rendered for the first time

  • componentDidUpdate() - called after the component's updates are applied

  • componentWillUnmount() - called before the component is removed from the DOM

View all Front end Developer interview questions
A Front end Developer was asked
Q. What are hooks how to use them list them
Ans. 

Hooks are a feature in React that allow you to use state and other React features in functional components.

  • Hooks are functions that let you use state and other React features in functional components.

  • Some commonly used hooks are useState, useEffect, useContext, and useRef.

  • useState hook is used to add state to functional components.

  • useEffect hook is used to perform side effects in functional components.

  • useContext h...

View all Front end Developer interview questions

Extended Web AppTech Interview Experiences

8 interviews found

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

(2 Questions)

  • Q1. React basic questions
  • Q2. Javascript and api
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Todo list in the react js
  • Ans. 

    A todo list in React.js allows users to add, delete, and mark tasks as completed.

    • Use state to store the list of tasks

    • Create components for adding, deleting, and marking tasks as completed

    • Implement functionality to add, delete, and mark tasks as completed

    • Use CSS for styling the todo list

  • Answered by AI
  • Q2. Java script basic questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Related to Java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How do handle the pressure and work when project is the deadline
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are closures
  • Ans. 

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

    • Closures allow functions to 'remember' the environment in which they were created

    • They can access variables from their outer function even after the function has returned

    • Closures are commonly used in event handlers and callbacks

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What are high order functions in react js explain with an example
  • Ans. 

    High order functions in React JS are functions that take other functions as arguments or return functions as their output.

    • High order functions allow for code reusability and cleaner code structure.

    • An example of a high order function in React JS is the map function, which takes a function as an argument to transform elements in an array.

    • Another example is the filter function, which takes a function as an argument to fil...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on method overloading and overriding topics also some annotations on spring and sprungboot
Round 2 - Coding Test 

Print the even count digits of number in to two parts

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions from basic to API in springboot
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

MCQ test based on HTML, CSS JAVASCRIPT and NodeJs

Round 2 - Coding Test 

System test based on NodeJs
Question write crud operations

Round 3 - HR 

(1 Question)

  • Q1. Questions based on Resume
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are hooks how to use them list them
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components.

    • Hooks are functions that let you use state and other React features in functional components.

    • Some commonly used hooks are useState, useEffect, useContext, and useRef.

    • useState hook is used to add state to functional components.

    • useEffect hook is used to perform side effects in functional components.

    • useContext hook i...

  • Answered by AI
  • Q2. What are the lifecycle methods
  • Ans. 

    Lifecycle methods are methods that are called automatically at specific points in a component's lifecycle.

    • componentDidMount() - called after the component is rendered for the first time

    • componentDidUpdate() - called after the component's updates are applied

    • componentWillUnmount() - called before the component is removed from the DOM

  • Answered by AI
  • Q3. Create a react project and fetch data from api and display it
  • Ans. 

    Create a React project to fetch and display data from an API

    • Set up a new React project using create-react-app

    • Use the fetch API or axios to make a request to the desired API

    • Store the fetched data in state using useState hook

    • Render the data on the UI using JSX

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Extended Web AppTech?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic programming concepts, OOPs & logical questions
  • Q2. Particular technology related and basic array programming

Interview Preparation Tips

Interview preparation tips for other job seekers - interview process was very smooth

I applied via Job Portal and was interviewed in May 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How would you rate yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - be truefull

Extended Web AppTech Interview FAQs

How many rounds are there in Extended Web AppTech interview?
Extended Web AppTech interview process usually has 1-2 rounds. The most common rounds in the Extended Web AppTech interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Extended Web AppTech 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 Extended Web AppTech. The most common topics and skills that interviewers at Extended Web AppTech expect are Javascript, CSS, HTML, IOS and React Native.
What are the top questions asked in Extended Web AppTech interview?

Some of the top questions asked at the Extended Web AppTech interview -

  1. What are high order functions in react js explain with an exam...read more
  2. Create a react project and fetch data from api and display...read more
  3. What are hooks how to use them list t...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 12 interview experiences

Difficulty level

Easy 67%
Moderate 33%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

QualiZeal Interview Questions
4.3
 • 59 Interviews
Affine Interview Questions
3.3
 • 51 Interviews
Cyfuture Interview Questions
3.0
 • 46 Interviews
View all

Extended Web AppTech Reviews and Ratings

based on 49 reviews

4.2/5

Rating in categories

4.2

Skill development

4.2

Work-life balance

3.9

Salary

3.5

Job security

4.1

Company culture

3.7

Promotions

4.0

Work satisfaction

Explore 49 Reviews and Ratings
Android Developer

Hyderabad / Secunderabad

2-5 Yrs

Not Disclosed

React Native

Hyderabad / Secunderabad

1-3 Yrs

₹ 3-6 LPA

Ruby on Rails Dev (ROR)

Hyderabad / Secunderabad

1-3 Yrs

₹ 3-7.8 LPA

Explore more jobs
Software Engineer
46 salaries
unlock blur

₹2.4 L/yr - ₹9.6 L/yr

Junior Software Engineer
25 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

React Native Developer
16 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Software Developer
14 salaries
unlock blur

₹2.2 L/yr - ₹7.1 L/yr

Reactjs Developer
10 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Extended Web AppTech with

Cyfuture

3.0
Compare

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.6
Compare
write
Share an Interview