Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Impiger Technologies Team. If you also belong to the team, you can get access from here

Impiger Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Impiger Technologies Interview Questions and Answers

Updated 27 Jan 2025

Impiger Technologies Interview Experiences

Popular Designations

5 interviews found

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

I appeared for an interview in Dec 2024.

Round 1 - Aptitude Test 

It was a basic written test to analyse our approach towards the problem. there were 70 qns with no time limit. aptitude, programming qns , logical qns, verbal , coding in sql nd c# and behavioral qns. it was easy

Round 2 - Technical 

(1 Question)

  • Q1. The he was so friendly and all they asked about is simple programming qns like swapping , reverse . asked qns based on our resume .
Round 3 - Technical 

(1 Question)

  • Q1. Same process on 3rd round . asked qns based on our resume
Round 4 - Technical 

(3 Questions)

  • Q1. Final round is with manager . he just asked 5 question . write class names for chess game in oops concept.
  • Q2. Write schema for many to many relationship
  • Ans. 

    Schema for many to many relationship

    • Create a junction table to connect the two entities

    • Each record in the junction table represents a relationship between the two entities

    • Both entities have a many-to-many relationship with each other

  • Answered by AI
  • Q3. Diff btw c# and java
  • Ans. 

    C# is a language developed by Microsoft for the .NET framework, while Java is a language developed by Sun Microsystems.

    • C# is primarily used for Windows development, while Java is platform-independent.

    • C# uses properties and events, while Java uses getter and setter methods.

    • C# has delegates and events for event handling, while Java uses interfaces and classes.

    • C# has LINQ for querying data, while Java has streams and lamb...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just focus on your approach towards the hr. be casual and friendly. the employees were amazingly friendly. the environment was too good

Junior .NET Developer Interview Questions asked at other Companies

Q1. what is StringBuffer and were is use
View answer (2)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Aug 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview before Aug 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Manual testing questions
Round 2 - Technical 

(2 Questions)

  • Q1. Framework used in project
  • Ans. 

    The project uses a hybrid framework combining data-driven and keyword-driven approaches.

    • Hybrid framework combines data-driven and keyword-driven testing

    • Data-driven approach uses external data sources to drive test cases

    • Keyword-driven approach uses keywords to define test steps

    • Examples: TestNG with Excel for data-driven, Selenium with keywords for keyword-driven

  • Answered by AI
  • Q2. Project related pratices

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process took
Round 1 - 1 hour- medium
Round 2- 50 mins- hard

Skills evaluated in this interview

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

QA Lead Interview Questions & Answers

user image Anonymous

posted on 10 Mar 2024

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

I applied via Company Website and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Functional Testing Concepts and Automation Concepts.mation Concepts
Round 2 - Technical 

(1 Question)

  • Q1. More on coding language
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiation

QA Lead Interview Questions asked at other Companies

Q1. 1. Explain Bid bond guarantee, Advance payment guarantee, Performance guarantee. 2. What are different SWIFT messages generated as part of Letter of Credit? 3. Difference between LC and Guarantee. 4. Difference between Import LC and Export ... read more
View answer (1)
Round 1 - Technical 

(1 Question)

  • Q1. Basic concepts in .net
Round 2 - Technical 

(1 Question)

  • Q1. Basic concepts in .net framework

Interview Preparation Tips

Interview preparation tips for other job seekers - Please get confirmations regards your queries and packages related items from HR before attending the interview.

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)

Impiger Technologies interview questions for popular designations

 Technical Lead

 (1)

 QA Lead

 (1)

 Senior Software Engineer

 (1)

 QA Engineer

 (1)

 Junior .NET Developer

 (1)

I applied via Walk-in and was interviewed before Dec 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic of Html, css, javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on your foundation from the core they will ask questions and deeper also.

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

Interview questions from similar companies

Intern Interview Questions & Answers

Jumio user image Anonymous

posted on 22 Nov 2022

I applied via Referral and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

General Questions related to your major

Round 3 - Technical 

(2 Questions)

  • Q1. Why this company ? And this role.
  • Q2. How do you see yourself after 2 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont get tensed during interview, be smart and act like u are ready to learn anything.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test on java collections

Round 2 - Technical 

(2 Questions)

  • Q1. Sorting a given array
  • Ans. 

    Sorting a given array of strings

    • Use a sorting algorithm like quicksort or mergesort

    • Consider the length of the strings for comparison

    • Use a comparator function to define the sorting order

  • Answered by AI
  • Q2. Database queries. Finding second, thrid highest salary
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find second, third highest salary

    • Use ORDER BY salary DESC to sort salaries in descending order

    • Use LIMIT 1,1 to get the second highest salary

    • Use LIMIT 2,1 to get the third highest salary

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 2,1

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to change jobs
  • Q2. Salary negotiations

Skills evaluated in this interview

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

25 questions asked need to take 50 percent for passing

Round 2 - Group Discussion 

Given topic about culture in mnc

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared and strong mindset will help to clear the round

Intern Interview Questions & Answers

DISYS user image Anonymous

posted on 12 Oct 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 6 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 

General aptitude questions

Round 3 - Coding Test 

Specific coding test based on your domain

Round 4 - Technical 

(1 Question)

  • Q1. Explain about the programming language you know
  • Ans. 

    I am proficient in programming languages such as Java, Python, and C++.

    • Experienced in Java for backend development

    • Skilled in Python for data analysis and machine learning

    • Knowledgeable in C++ for system programming

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

(1 Question)

  • Q1. Explain about the final year project that you have done
Round 6 - HR 

(1 Question)

  • Q1. What is your expected salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself to the best of your ability
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Case Study 

There were 3 rounds for data science consultant position at Equifax. 1st round consists of Python and SQL questions and also in this round they have tested analytical thinking as well.

Round 2 - Coding Test 

In 2nd round they have asked me questions from my resume and asked me to explain the projects which I have worked on in previous company. In this round they have asked me pandas related questions and asked me write code.

Round 3 - Behavioral 

(1 Question)

  • Q1. In Managerial round again here I have been asked questions related my projects. and no coding round in this stage.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Python, SQL, Analytical thinking, Statistics and pandas.

Impiger Technologies Interview FAQs

How many rounds are there in Impiger Technologies interview?
Impiger Technologies interview process usually has 2-3 rounds. The most common rounds in the Impiger Technologies interview process are Technical, One-on-one Round and HR.
How to prepare for Impiger 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 Impiger Technologies. The most common topics and skills that interviewers at Impiger Technologies expect are Javascript, CSS, HTML, JQuery and Angular.
What are the top questions asked in Impiger Technologies interview?

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

  1. write schema for many to many relations...read more
  2. diff btw c# and j...read more
  3. Framework used in proj...read more

Tell us how to improve this page.

Impiger Technologies Interview Process

based on 3 interviews

Interview experience

4.3
  
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

Impiger Technologies Reviews and Ratings

based on 65 reviews

3.6/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.4

Salary

3.5

Job security

3.8

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 65 Reviews and Ratings
Hr Operations Assistant

Ooty,

Chennai

+1

0-2 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
89 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Senior Software Engineer
81 salaries
unlock blur

₹5.4 L/yr - ₹17 L/yr

Software Engineer
55 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Engineer
41 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Lead
25 salaries
unlock blur

₹6.3 L/yr - ₹15.1 L/yr

Explore more salaries
Compare Impiger Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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