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 (1)
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 (170)
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

 Engineer Trainee

 (1)

 Front end Developer

 (1)

 Java Developer

 (1)

 React Native Developer

 (1)

 Reactjs Developer

 (1)

 Senior Quality Engineer

 (1)

 Software Developer

 (1)

 Software Engineer

 (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 SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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 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 4 interview rounds.

Round 1 - Coding Test 

Basic JavaScript output-based questions were presented in the form of multiple-choice questions (MCQs).

Round 2 - Technical 

(3 Questions)

  • Q1. What is custom diractives in Angular
  • Ans. 

    Custom directives in Angular allow you to create reusable components with custom behavior.

    • Custom directives are used to extend the functionality of HTML elements in Angular.

    • They can be used to create reusable components with custom behavior.

    • Directives are markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or even transform the DOM element and its children.

    • Examples include crea...

  • Answered by AI
  • Q2. What is pipes in Angular
  • Ans. 

    Pipes in Angular are used for transforming data in templates.

    • Pipes are used to format data before displaying it in the view.

    • They can be used to filter, sort, or transform data in various ways.

    • Examples include currency, date, uppercase, and lowercase pipes.

  • Answered by AI
  • Q3. What is interceptor in Angular
  • Ans. 

    An interceptor in Angular is a service that can be used to intercept and modify HTTP requests and responses.

    • Interceptors can be used to add headers, modify requests, handle errors, etc.

    • They are implemented as classes that implement the HttpInterceptor interface.

    • Interceptors are added to the HttpClientModule providers array in the app module.

    • Example: LoggingInterceptor implements HttpInterceptor to log all HTTP requests

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Do you know writing Unit test case?
  • Ans. 

    Yes, I am familiar with writing unit test cases to ensure code quality and functionality.

    • I have experience writing unit test cases using testing frameworks like JUnit, NUnit, or pytest.

    • I understand the importance of writing testable code and creating comprehensive test suites.

    • I can write test cases to cover different scenarios, including edge cases and boundary conditions.

    • I know how to use mocking frameworks like Mocki...

  • Answered by AI
  • Q2. What state management library do you have used?
  • Ans. 

    I have used Redux for state management in my previous projects.

    • Redux is a predictable state container for JavaScript apps.

    • It helps in managing the state of the application in a single immutable state tree.

    • Actions are dispatched to update the state and components can subscribe to changes.

    • Selectors can be used to efficiently extract data from the state tree.

    • Middleware can be added to handle asynchronous actions.

    • Example:

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What is your expected Salary?
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Software Development Engineers.

    • Research the average salary for Software Development Engineers in the specific location and industry

    • Consider your years of experience and level of expertise

    • Factor in any additional benefits or perks offered by the company

    • Be prepared to negotiate based on the job responsibilities and requirements

  • Answered by AI
  • Q2. How soon would you be able to join if you receive the offer letter today?
  • Ans. 

    I can join within 2 weeks of receiving the offer letter.

    • I can start within 2 weeks of receiving the offer letter.

    • I need to give notice at my current job before starting.

    • I may need to relocate, which could affect my start date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No work from home opportunity. No AI access due to security reasons. Appraisal is very less
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

A question that is both tricky and simple.

Round 2 - Technical 

(1 Question)

  • Q1. Questions about biochemistry
Round 3 - Aptitude Test 

Questions based on both numerical data and case studies.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What interests you in working for this company?
  • Ans. 

    I am interested in working for this company because of its innovative projects and strong reputation in the industry.

    • Innovative projects that challenge me to grow as a programmer

    • Strong reputation in the industry for quality work

    • Opportunities for career advancement and professional development

  • Answered by AI

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

TCS Interview Questions
3.7
 • 10.4k 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
View all

Extended Web AppTech Reviews and Ratings

based on 73 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.3

Salary

4.0

Job security

4.4

Company culture

4.2

Promotions

4.4

Work satisfaction

Explore 73 Reviews and Ratings
Android Developer

Hyderabad / Secunderabad

2-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
37 salaries
unlock blur

₹0.6 L/yr - ₹9.2 L/yr

Junior Software Engineer
17 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

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