Upload Button Icon Add office photos

Filter interviews by

Extrieve Technologies Interview Questions and Answers

Updated 2 Oct 2024

Extrieve Technologies Interview Experiences

Popular Designations

5 interviews found

I applied via Referral and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Object Oriented Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be well versed with OOPs

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 (223)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. SDLC , STLC , TMI , SMOKE , sanity , performance
  • Q2. Restarting , manual QA

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic networking related questions Task scheduler, task manager, control panel etc Question will ask From your resume
Round 2 - Technical 

(1 Question)

  • Q1. Same as round 1

Application Support Engineer Interview Questions asked at other Companies

Q1. what do you know about SQL , Unix , explain in brief
View answer (2)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

There was an aptitude test with basic questions on programming, English and maths

Round 2 - Coding Test 

They asked questions related to web development like OOPS concepts, and javascript pattern questions, and discussed previous experience

Round 3 - HR 

(1 Question)

  • Q1. In this round HR discuss about salaries and do not negotiate

Interview Preparation Tips

Topics to prepare for Extrieve Technologies Software Developer Trainee interview:
  • javascript
  • html
  • css
  • c
  • C++
  • OOPS
Interview preparation tips for other job seekers - The interview will be easy but need to learn topics very fast and must be ready for the workload

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

Extrieve Technologies interview questions for popular designations

 Software Engineer

 (2)

 Senior Software Engineer

 (1)

 Software Developer Trainee

 (1)

 Application Support Engineer

 (1)

I applied via Referral and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical Round with the manager
Round 2 - HR 

(1 Question)

  • Q1. Salary Discussion with the HR

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't get nervous while interviewing. Just know that what you've learnt isn't wrong and you should be able to phrase it in your own words

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 (223)

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Questions on IOT and related
Round 3 - Coding Test 

Questions mainly from Linked list.

Round 4 - Technical 

(1 Question)

  • Q1. Basically coding round, with basic questions from arrays. One needs to have good communication skills to explain to interviewers.

Interview Preparation Tips

Topics to prepare for VassarLabs Software Engineer interview:
  • DSA
  • IOT
Interview preparation tips for other job seekers - It is an startup, you need to ready for any questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Basic java questions

Round 3 - Technical 

(2 Questions)

  • Q1. Explain Linked list implementation and stack
  • Ans. 

    Linked list is a data structure where each element points to the next element. Stack is a data structure that follows Last In First Out (LIFO) principle.

    • Linked list implementation involves creating nodes with data and a pointer to the next node.

    • Stack implementation involves pushing elements onto the stack and popping them off in reverse order.

    • Example: Linked list - 1 -> 2 -> 3 -> NULL, Stack - push(1), push(2), push(3)

  • Answered by AI
  • Q2. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

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

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn java and dsa

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What is JPA
  • Ans. 

    JPA (Java Persistence API) is a specification for managing relational data in Java applications using object-relational mapping.

    • JPA provides a way to map Java objects to database tables.

    • It simplifies database interactions through an object-oriented approach.

    • Common implementations include Hibernate, EclipseLink, and OpenJPA.

    • Example: Using JPA annotations like @Entity to define a persistent class.

    • JPA supports querying wi...

  • Answered by AI
  • Q2. Write a program to find duplicate elements in the list
  • Ans. 

    This program identifies and returns duplicate elements from a given list.

    • Use a set to track seen elements and a list for duplicates.

    • Iterate through the list and check if an element is in the set.

    • If it is, add it to the duplicates list; otherwise, add it to the set.

    • Example: For the list [1, 2, 3, 2, 4, 3], the output should be [2, 3].

  • Answered by AI

I applied via Indeed and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic php and array functions
  • Q2. Mysql basic, views, triggers

Interview Preparation Tips

Interview preparation tips for other job seekers - Array related question and basic php mysql

I applied via Company Website and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Php basic and array functions
  • Q2. Mysql basic,views,triggers

Interview Preparation Tips

Interview preparation tips for other job seekers - Average

Extrieve Technologies Interview FAQs

How many rounds are there in Extrieve Technologies interview?
Extrieve Technologies interview process usually has 2-3 rounds. The most common rounds in the Extrieve Technologies interview process are Technical, HR and Resume Shortlist.
How to prepare for Extrieve Technologies 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 Extrieve Technologies. The most common topics and skills that interviewers at Extrieve Technologies expect are Communication Skills, Technical Support, PDF, SQL and Application Support.
What are the top questions asked in Extrieve Technologies interview?

Some of the top questions asked at the Extrieve Technologies interview -

  1. Basic networking related questions Task scheduler, task manager, control panel ...read more
  2. SDLC , STLC , TMI , SMOKE , sanity , performa...read more
  3. Technical Round with the mana...read more

Tell us how to improve this page.

Extrieve Technologies Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Icl Fincorp Interview Questions
3.2
 • 18 Interviews
Neural IT Interview Questions
2.8
 • 14 Interviews
VassarLabs Interview Questions
3.0
 • 13 Interviews
Sonata Finance Interview Questions
3.9
 • 13 Interviews
View all

Extrieve Technologies Reviews and Ratings

based on 31 reviews

3.7/5

Rating in categories

3.9

Skill development

3.5

Work-life balance

3.4

Salary

3.6

Job security

3.9

Company culture

3.0

Promotions

3.6

Work satisfaction

Explore 31 Reviews and Ratings
Trainee Application Support Executive

Mumbai,

All maharashtra

+1

0-2 Yrs

₹ 2.5-3 LPA

Explore more jobs
Software Developer
32 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Software QA Engineer
18 salaries
unlock blur

₹2.2 L/yr - ₹5.2 L/yr

Application Support Executive
12 salaries
unlock blur

₹1.5 L/yr - ₹4.8 L/yr

Application Support Engineer
9 salaries
unlock blur

₹2.8 L/yr - ₹4.2 L/yr

Senior Software Developer
8 salaries
unlock blur

₹3 L/yr - ₹10.1 L/yr

Explore more salaries
Compare Extrieve Technologies with

Karvy Financial Services

3.8
Compare

Reliance Money

3.6
Compare

Sonata Finance

3.9
Compare

Incrementors Web Solutions

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