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 (203)
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 (42)
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 (3)

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

Interview Questionnaire 

2 Questions

  • Q1. What is precompilaion unit?
  • Ans. 

    Precompilation unit is a compiled code that can be reused by multiple source files.

    • Precompilation unit is created by the compiler from the source code.

    • It contains the compiled code of header files and other dependencies.

    • It can be reused by multiple source files, reducing compilation time.

    • It is also known as precompiled header or PCH.

    • Example: stdafx.h in Visual Studio is a precompiled header file.

  • Answered by AI
  • Q2. About ur future,ur short term goal,why this company

Interview Preparation Tips

Skills: Resume, CGPA
College Name: IIT Kharagpur

Interview Questionnaire 

3 Questions

  • Q1. First 50 Prime Number
  • Ans. 

    The first 50 prime numbers are...

    • Start with 2, the first prime number

    • Check each odd number greater than 2

    • Use trial division to check if a number is prime

    • Stop when you have found 50 prime numbers

  • Answered by AI
  • Q2. How to sort the file in the range (hint provided)
  • Ans. 

    Sorting a file within a range

    • Use a sorting algorithm like quicksort or mergesort

    • Read the file and store the data in an array or list

    • Sort the array or list within the given range

    • Write the sorted data back to the file

  • Answered by AI
  • Q3. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js, Express, and MongoDB

    • Familiar with version control systems like Git and project management tools like Jira

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlist cut was 0.0 cgpa
Tips: Need to mention Programming skill in any one of three language C , C++ ,Java

Round: Test
Experience: Test was Average, Many question were from INDIABIX.COM , computer network, operating system ,data structure, c , c++ language
Tips: Understand Data Structure and Algorithm deeply, At least read about computer networks, operating system , DBMS 3-4 times for basic good understand, refer various site
Duration: 180 minutes

Round: Test
Experience: Two question were given , we have to write the code on A4 size sheet
Tips: Deep understanding of STACK AND QUEUE
Duration: 60 minutes

Round: Technical Interview
Experience: Previous Test (2 Questions on A4 size sheet) were discussed and is there any improvement that can be done, discussed each and every step.
Tips: Comments is important using programming
present with demo example (various cases)

Round: HR Interview
Experience: Be calm and show your interest in the company,
ask question about company, what are activity other than techincal technical stuff
Tips: Smile , if possible talk in Hindi - English,Try to Make the interview in discussion

General Tips: Practice Daily , Understand Each and Every Step in Detail , Try to code in A4 size paper then computer
Skill Tips: Read Good Books , Practice Daily

Skills: Algorithms And Data Structures
College Name: IIT Kharagpur

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

INTERVIEWS

DELLA LEADERS CLUB

No Interviews

SALARIES

Othain Group

No Salaries

COMPANY BENEFITS

Othain Group

No Benefits

INTERVIEWS

Admiral Solutions

No Interviews

INTERVIEWS

Codleo Consulting

No Interviews

REVIEWS

Othain Group

No Reviews

INTERVIEWS

W3Softech India

No Interviews

JOBS

Othain Group

No Jobs

PHOTOS

Othain Group

No Photos

COMPANY BENEFITS

Proziod Analytics

No Benefits

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

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
View all

Extended Web AppTech Reviews and Ratings

based on 48 reviews

4.2/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

3.9

Salary

3.6

Job security

4.0

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 48 Reviews and Ratings
Android Developer

Hyderabad / Secunderabad

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Software Engineer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

React Native Developer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Reactjs Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Extended Web AppTech with

Tech Mahindra

3.5
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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