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 Engineer Trainee Interview Questions and Answers

Updated 14 Feb 2024

Extended Web AppTech Engineer Trainee Interview Experiences

1 interview found

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 questions from similar companies

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Easy apti questions, verbal, simple maths , technical questions

Round 2 - Technical 

(3 Questions)

  • Q1. Oops concept in java in detail with examples
  • Ans. 

    Oops concepts in Java are fundamental concepts of object-oriented programming like inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Allows objects to be treated as instances of their parent class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the implementati...

  • Answered by AI
  • Q2. Fibonnacci code
  • Q3. What is springboot ?
  • Ans. 

    Spring Boot is a framework for building Java-based enterprise applications quickly and with minimal configuration.

    • Spring Boot simplifies the process of creating stand-alone, production-grade Spring-based applications.

    • It provides a range of features including embedded servers, auto-configuration, and production-ready metrics.

    • Spring Boot allows developers to focus on writing business logic rather than configuring the app...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Abstraction in java
  • Ans. 

    Abstraction in Java is a concept where we hide the implementation details and only show the necessary features of an object.

    • Abstraction allows us to focus on what an object does rather than how it does it.

    • In Java, abstraction is achieved through abstract classes and interfaces.

    • Abstract classes cannot be instantiated and can have abstract methods that must be implemented by subclasses.

    • Interfaces in Java are like abstrac...

  • Answered by AI
  • Q2. Interface in java
  • Ans. 

    Interface in Java is a reference type in Java, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.

    • Interfaces are used to achieve abstraction and multiple inheritance in Java.

    • All methods in an interface are public and abstract by default.

    • A class can implement multiple interfaces but can only extend one class.

    • Example: interface MyInterface { void myMe...

  • Answered by AI
  • Q3. Some logical questions
Round 4 - One-on-one 

(3 Questions)

  • Q1. DSA basic question
  • Q2. Basic HR questions
  • Q3. Questions based on situation
Round 5 - One-on-one 

(2 Questions)

  • Q1. With ceo intro, project explanation
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Have basic knowledge of JAVA, OOPS, DSA(not compulsory)

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is bioinformatics
  • Ans. 

    Bioinformatics is the field of science that combines biology, computer science, and statistics to analyze and interpret biological data.

    • Bioinformatics involves the development and application of computational tools and techniques to study biological information.

    • It includes the analysis of DNA, RNA, and protein sequences, as well as the prediction of protein structures and functions.

    • Bioinformatics plays a crucial role i...

  • Answered by AI
  • Q2. It is a computational tool
Round 2 - HR 

(1 Question)

  • Q1. Tell about your experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Self introduction
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Apptitude was completely based on reasoning and critical thinking

Round 2 - Technical 

(1 Question)

  • Q1. All Apptitude questions related to critical thinking
Round 3 - One-on-one 

(1 Question)

  • Q1. HR was asked for self introduction and reasoning question
Round 1 - Aptitude Test 

Good. Try to solve many puzzles.

Round 2 - Technical 

(1 Question)

  • Q1. Good. Try to solve many puzzles.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to solve many puzzles and practice well to improve speed.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Difference Between Lists and Tuple
  • Ans. 

    Lists are mutable and can be changed, while tuples are immutable and cannot be changed.

    • Lists are defined using square brackets [], while tuples are defined using parentheses ().

    • Elements in a list can be modified, added, or removed, while elements in a tuple cannot be changed once defined.

    • Lists are typically used for collections of similar items that may need to be modified, while tuples are used for fixed collections o...

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Sep 2024.

Round 1 - Assignment 

Aptitude+english+essay+coding

Round 2 - Technical 

(5 Questions)

  • Q1. Can you provide a self-introduction?
  • Ans. 

    I am a recent graduate with a degree in Business Administration and a passion for marketing and project management.

    • Recent graduate with a degree in Business Administration

    • Passionate about marketing and project management

    • Strong communication and organizational skills

    • Experience in internships and extracurricular activities

  • Answered by AI
  • Q2. What is your preferred coding language?
  • Ans. 

    My preferred coding language is Python.

    • Easy to read and write

    • Versatile for various applications

    • Strong community support and resources

  • Answered by AI
  • Q3. Why did you choose the Python programming language?
  • Ans. 

    I chose Python for its simplicity, readability, and versatility in various applications.

    • Python is known for its clean and readable syntax, making it easier to learn and understand.

    • Python has a large standard library and many third-party libraries, making it versatile for different tasks.

    • Python is widely used in data science, machine learning, web development, and automation, providing a wide range of career opportuniti

  • Answered by AI
  • Q4. Asked some Basic Questions like Type Casting,Keywords........?
  • Q5. What are the steps to execute the Insertion Sort algorithm on an online compiler?
  • Ans. 

    Insertion Sort is a simple sorting algorithm that builds the final sorted array one item at a time.

    • Initialize a pointer to the second element in the array.

    • Compare the current element with the elements before it and swap if necessary to place it in the correct position.

    • Repeat this process for all elements in the array.

    • Example: Given array [5, 2, 4, 6, 1, 3], after sorting using Insertion Sort: [1, 2, 3, 4, 5, 6]

  • Answered by AI
Round 3 - HR 

(4 Questions)

  • Q1. Can you provide a self-introduction?
  • Ans. 

    I am a recent graduate with a degree in Business Administration and a passion for marketing.

    • Recent graduate with a degree in Business Administration

    • Passionate about marketing

    • Strong communication and analytical skills

    • Experience in social media marketing and market research

  • Answered by AI
  • Q2. What are your strengths and weaknesses?
  • Ans. 

    My strengths include strong communication skills and attention to detail. My weaknesses include a tendency to be overly critical of myself.

    • Strengths: strong communication skills

    • Strengths: attention to detail

    • Weaknesses: tendency to be overly critical of myself

  • Answered by AI
  • Q3. What are the hobbies?
  • Ans. 

    My hobbies include reading, hiking, and playing the guitar.

    • Reading: I enjoy reading fiction and non-fiction books in my free time.

    • Hiking: I love exploring nature trails and challenging myself with new hikes.

    • Playing the guitar: I have been playing the guitar for several years and enjoy learning new songs.

  • Answered by AI
  • Q4. Are you ready to relocate?
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am willing to relocate for career growth and new experiences.

    • I have relocated in the past for job opportunities and have found it to be a positive experience.

    • I understand the importance of being flexible and adaptable in today's job market.

  • Answered by AI

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

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Interview Preparation Tips

Round: Test
Experience: It was nice set of mixed bag questions each challenging your brain to scratch more and find the trick.
Tips: Be calm in solving the questions, Practice few tricks to solve

work,time,distance,number series problem etc. quickly to help save the

time.
Duration: 20 minuntes minutes
Total Questions: 25

Round: Resume Shortlist
Experience: I think resume played a important role in selection processes.
Tips: Make it simple and HIGHLIGHT your good work and experiences.Interviewer don't have time to go through whole crap what we write so basically focus on highlighting your achievements and internships.

Round: Group Discussion
Experience: People are dying to take the opportunity and speak.You will be facing a fish market in few cases, rest it is calm and everyone is given a chance to put forward there point.
Tips: Generally u have to decide which side of the boat u want to be on.

Either go against the topic or in favor whichever you are more

comfortable with.

College Name: IIT ROORKEE

Extended Web AppTech Interview FAQs

How many rounds are there in Extended Web AppTech Engineer Trainee interview?
Extended Web AppTech interview process usually has 3 rounds. The most common rounds in the Extended Web AppTech interview process are Assignment, Coding Test and HR.

Tell us how to improve this page.

Extended Web AppTech Engineer Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
Cyfuture Interview Questions
3.0
 • 45 Interviews
Imark InfoTech Interview Questions
4.1
 • 41 Interviews
View all
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