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, Process, and Tips

Updated 8 Jan 2025

Top Extended Web AppTech Interview Questions and Answers

View all 6 questions

Extended Web AppTech Interview Experiences

Popular Designations

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

React Native Developer Interview Questions asked at other Companies

Q1. 3. What is the use useEffect Hook in react native? and how you relate it with lifecycle method which is class components?
View answer (3)
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

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement counter such that it has 2 buttons to increment and decrement the values and also add a input field such that, whatever input is given, the value should be to that and value should should be decreased and increased from the input ... read more
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Related to Java

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)
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

Senior Quality Engineer Interview Questions asked at other Companies

Q1. what is least count of vernier caliper ,micrometer, height gauge?
View answer (13)

Extended Web AppTech interview questions for popular designations

 Software Engineer

 (1)

 Software Developer

 (1)

 Senior Quality Engineer

 (1)

 Front end Developer

 (1)

 Java Developer

 (1)

 Reactjs Developer

 (1)

 React Native Developer

 (1)

 Engineer Trainee

 (1)

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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
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

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)

Jobs at Extended Web AppTech

View all
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

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)
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

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked a question on counting continuous max occurences of 1 in a string

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep knowledge of programming is a must

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Ans. 

    Check if binary tree is balanced or not.

    • A balanced binary tree has the height of left and right subtrees differ by at most 1.

    • Recursively check the height of left and right subtrees and compare.

    • Use a helper function to calculate the height of a subtree.

    • Time complexity: O(nlogn) for a balanced tree, O(n^2) for a skewed tree.

  • Answered by AI
  • Q2. Detect loops in linked list.
  • Ans. 

    Detect loops in a linked list.

    • Use two pointers, one moving at a faster pace than the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • To detect the start of the loop, reset one pointer to the head and move both pointers at the same pace.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

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.

Extended Web AppTech Interview Process

based on 12 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
Cyfuture Interview Questions
3.0
 • 45 Interviews
Revature Interview Questions
3.5
 • 40 Interviews
View all

Extended Web AppTech Reviews and Ratings

based on 49 reviews

4.2/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

3.9

Salary

3.5

Job security

4.1

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 49 Reviews and Ratings
Android Developer

Hyderabad / Secunderabad

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
42 salaries
unlock blur

₹2.4 L/yr - ₹8.4 L/yr

Junior Software Engineer
20 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 L/yr - ₹8.2 L/yr

Reactjs Developer
10 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Extended Web AppTech with

Maxgen Technologies

4.6
Compare

Cyfuture

3.0
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

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