Premium Employer

i

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

Impetus Technologies Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Impetus Technologies Interview Questions and Answers for Experienced

Updated 24 Jun 2025
Popular Designations

48 Interview questions

A QA Engineer was asked 2mo ago
Q. What is the process for writing an XPath for a web element?
Ans. 

XPath is a query language used to select nodes from an XML document, essential for locating web elements in automation testing.

  • Understanding the DOM: Familiarize yourself with the Document Object Model (DOM) structure of the web page to identify the hierarchy of elements.

  • Using Absolute XPath: Start with a full path from the root to the target element, e.g., '/html/body/div[1]/h1'.

  • Using Relative XPath: Create a pat...

View all QA Engineer interview questions
A QA Engineer was asked 2mo ago
Q. How do you manage conflict?
Ans. 

Managing conflict involves effective communication, understanding perspectives, and finding common ground to resolve issues amicably.

  • Active Listening: I ensure that all parties feel heard by summarizing their points and asking clarifying questions. For example, during a team disagreement, I listened to both sides before suggesting a compromise.

  • Empathy: I try to understand the emotions and motivations behind the co...

View all QA Engineer interview questions
A Java Developer was asked 3mo ago
Q. What is a Singleton class in Java?
Ans. 

A Singleton class ensures a class has only one instance and provides a global point of access to it.

  • Singleton pattern restricts instantiation of a class to one object.

  • It is commonly used for logging, driver objects, caching, and thread pools.

  • Example: Using a private constructor and a static method to get the instance.

  • Thread-safe Singleton can be implemented using synchronized methods or double-checked locking.

View all Java Developer interview questions
A Java Developer was asked 3mo ago
Q. Implement a stack using one or more queues.
Ans. 

Implementing a stack using two queues to achieve LIFO behavior.

  • Use two queues: queue1 and queue2.

  • For push operation, enqueue the element to queue1.

  • For pop operation, dequeue all elements from queue1 to queue2 except the last one, then dequeue the last element from queue1.

  • Swap the names of queue1 and queue2 after the pop operation.

  • Example: Push(1), Push(2), Pop() returns 2.

View all Java Developer interview questions
A System Engineer was asked 4mo ago
Q. What is TPM in Intune?
Ans. 

TPM (Trusted Platform Module) in Intune is a security feature that helps protect data by encrypting information stored on a device.

  • TPM in Intune is a hardware-based security feature that stores encryption keys and other sensitive data.

  • It helps ensure that only authorized users can access the data on a device.

  • TPM in Intune can be used to enforce BitLocker encryption on Windows devices.

  • It provides an additional laye...

View all System Engineer interview questions
A Lead Software Engineer was asked 6mo ago
Q. What are the differences between String and StringBuilder?
Ans. 

Diff string string builder compares two strings and returns the differences.

  • Use a loop to iterate through each character of the strings

  • Compare characters at the same index in both strings

  • Build a new string with the differing characters

View all Lead Software Engineer interview questions
A Lead Software Engineer was asked 6mo ago
Q. What are the differences between an interface and an abstract class?
Ans. 

Interface defines a contract for classes to implement, while abstract class can have both abstract and concrete methods.

  • Interfaces can only have abstract methods and constants, while abstract classes can have both abstract and concrete methods.

  • A class can implement multiple interfaces but can only inherit from one abstract class.

  • Interfaces are used to achieve multiple inheritance in Java, while abstract classes ar...

View all Lead Software Engineer interview questions
Are these interview questions helpful?
A Lead Software Engineer was asked 6mo ago
Q. What are the differences between an array and an ArrayList?
Ans. 

Arrays are fixed in size, while ArrayLists can dynamically resize.

  • Arrays have a fixed size determined at initialization, while ArrayLists can dynamically resize.

  • Arrays are faster for accessing elements, while ArrayLists are better for adding or removing elements.

  • Arrays use [] syntax for accessing elements, while ArrayLists use get() and set() methods.

  • Arrays can only store primitive types, while ArrayLists can stor...

View all Lead Software Engineer interview questions
A Lead Software Engineer was asked 6mo ago
Q. How do you remove duplicates from a string?
Ans. 

Use a set to remove duplicates from a string array.

  • Create a set to store unique strings.

  • Iterate through the array and add each string to the set.

  • Convert the set back to an array to get the unique strings.

View all Lead Software Engineer interview questions
A Lead Software Engineer was asked 6mo ago
Q. What is the difference between == and .equals?
Ans. 

Diff method compares values of two objects while equal method compares references of two objects.

  • Diff method compares values of two objects, while equal method compares references.

  • Diff method is used to check if two objects are different, while equal method is used to check if two objects are the same.

  • Example: obj1.diff(obj2) vs obj1.equal(obj2)

View all Lead Software Engineer interview questions

Impetus Technologies Interview Experiences for Experienced

43 interviews found

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

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(10 Questions)

  • Q1. Diff string string builder
  • Ans. 

    Diff string string builder compares two strings and returns the differences.

    • Use a loop to iterate through each character of the strings

    • Compare characters at the same index in both strings

    • Build a new string with the differing characters

  • Answered by AI
  • Q2. Four pillars of OOPS
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

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

    • Inheritance: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q3. Delegate real life scenario
  • Ans. 

    Delegating tasks effectively enhances team productivity and fosters growth in a software engineering environment.

    • Identify team strengths: Assign tasks based on individual skills, e.g., a developer with strong front-end skills handles UI design.

    • Set clear expectations: Provide detailed requirements and deadlines to avoid confusion, e.g., using project management tools.

    • Encourage autonomy: Allow team members to make decisi...

  • Answered by AI
  • Q4. Diff interface vs abstract class
  • Ans. 

    Interface defines a contract for classes to implement, while abstract class can have both abstract and concrete methods.

    • Interfaces can only have abstract methods and constants, while abstract classes can have both abstract and concrete methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java, while abstract classes are use...

  • Answered by AI
  • Q5. Diff array vs array list
  • Ans. 

    Arrays are fixed in size, while ArrayLists can dynamically resize.

    • Arrays have a fixed size determined at initialization, while ArrayLists can dynamically resize.

    • Arrays are faster for accessing elements, while ArrayLists are better for adding or removing elements.

    • Arrays use [] syntax for accessing elements, while ArrayLists use get() and set() methods.

    • Arrays can only store primitive types, while ArrayLists can store obj...

  • Answered by AI
  • Q6. How to remove duplicates from string
  • Ans. 

    Use a set to remove duplicates from a string array.

    • Create a set to store unique strings.

    • Iterate through the array and add each string to the set.

    • Convert the set back to an array to get the unique strings.

  • Answered by AI
  • Q7. Diff = vs .equal
  • Ans. 

    Diff method compares values of two objects while equal method compares references of two objects.

    • Diff method compares values of two objects, while equal method compares references.

    • Diff method is used to check if two objects are different, while equal method is used to check if two objects are the same.

    • Example: obj1.diff(obj2) vs obj1.equal(obj2)

  • Answered by AI
  • Q8. Sealed virtual static new keyword use
  • Ans. 

    Sealed virtual static new keywords are used in C# to control inheritance and method hiding.

    • Sealed keyword prevents a class from being inherited.

    • Virtual keyword allows a method to be overridden in derived classes.

    • Static keyword makes a member of a class accessible without creating an instance of the class.

    • New keyword hides a method from the base class in the derived class.

  • Answered by AI
  • Q9. Overloading with different return type allowed or not
  • Ans. 

    Overloading with different return type is not allowed in Java.

    • Overloading is based on method signature, not return type

    • Methods with same name and different return type will result in compile-time error

    • Example: int add(int a, int b) and double add(int a, int b) is not allowed

  • Answered by AI
  • Q10. How to achieve authentication in web API
  • Ans. 

    Authentication in web API is achieved by using tokens or API keys to verify the identity of users.

    • Use tokens (such as JWT) to authenticate users

    • Implement OAuth for secure authentication

    • Utilize API keys for authentication purposes

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Print all the permutations of a parenthesis for a given value of n. Eg. If n=3 , '((()))','()()()'..so on
  • Ans. 

    Generate all valid permutations of parentheses for a given number n using recursion.

    • Use backtracking to explore all combinations of '(' and ')'.

    • Maintain a count of open and close parentheses used.

    • Only add ')' if it doesn't exceed the number of '(' used.

    • Example for n=3: valid combinations are '((()))', '(()())', '(())()', '()(())', '()()()'.

  • Answered by AI
  • Q2. Given a string str find and print the occurence of each repeated character in sequence.
  • Ans. 

    Find and print the occurrence of each repeated character in sequence in a given string.

    • Iterate through the string and keep track of the count of each character.

    • Print the character and its count whenever a character is repeated in sequence.

  • Answered by AI
  • Q3. Questions related to projecrs

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is keyvault
  • Ans. 

    Keyvault is a secure storage service provided by cloud providers to manage and safeguard cryptographic keys, secrets, and certificates.

    • Keyvault helps in securely storing and managing sensitive information such as passwords, API keys, and encryption keys.

    • It provides centralized management of keys, secrets, and certificates, allowing for easier access control and auditing.

    • Keyvault integrates with other services and appli...

  • Answered by AI
  • Q2. What is aks and deployment strategy
  • Ans. 

    AKS stands for Azure Kubernetes Service, a managed Kubernetes service provided by Microsoft Azure. Deployment strategy refers to the approach used to deploy applications or updates.

    • AKS is a managed Kubernetes service offered by Microsoft Azure

    • It simplifies the process of deploying, managing, and scaling containerized applications using Kubernetes

    • Deployment strategy refers to the method used to deploy applications or up...

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Apr 2025

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

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

  • Q1. What is the process for writing an XPath for a web element?
  • Ans. 

    XPath is a query language used to select nodes from an XML document, essential for locating web elements in automation testing.

    • Understanding the DOM: Familiarize yourself with the Document Object Model (DOM) structure of the web page to identify the hierarchy of elements.

    • Using Absolute XPath: Start with a full path from the root to the target element, e.g., '/html/body/div[1]/h1'.

    • Using Relative XPath: Create a path tha...

  • Answered by AI
  • Q2. How do you manage conflict?
  • Ans. 

    Managing conflict involves effective communication, understanding perspectives, and finding common ground to resolve issues amicably.

    • Active Listening: I ensure that all parties feel heard by summarizing their points and asking clarifying questions. For example, during a team disagreement, I listened to both sides before suggesting a compromise.

    • Empathy: I try to understand the emotions and motivations behind the conflic...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and study the job description because most questions will come from the JD.

Data Engineer Interview Questions & Answers

user image Gargi Bharati

posted on 24 Oct 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic python Question
  • Q2. Explain project
  • Ans. 

    Developed a data pipeline to ingest, process, and analyze customer feedback data

    • Designed and implemented ETL processes to extract data from various sources

    • Used tools like Apache Spark and Kafka for real-time data processing

    • Built data models and visualizations to identify trends and insights

    • Collaborated with cross-functional teams to improve data quality and accuracy

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Mainly on kubernetes
  • Q2. Aks upgrade process explanation
  • Ans. 

    Aks upgrade process involves upgrading the Kubernetes version of Azure Kubernetes Service clusters.

    • AKS upgrade can be performed using Azure Portal, Azure CLI, or Azure PowerShell.

    • Before upgrading, it is recommended to check for any compatibility issues with the new Kubernetes version.

    • During the upgrade process, AKS nodes are drained and replaced with nodes running the new Kubernetes version.

    • AKS supports both minor and ...

  • Answered by AI
  • Q3. Network plugin in aks
  • Ans. 

    Network plugin in AKS is used to enable communication between pods in a Kubernetes cluster.

    • Network plugin in AKS is responsible for setting up networking rules and policies within the cluster.

    • Popular network plugins for AKS include Azure CNI, Kubenet, and Calico.

    • Azure CNI is recommended for production workloads as it provides better performance and scalability.

    • Network plugins help in enabling communication between pods...

  • Answered by AI
  • Q4. Ingress controller
  • Q5. Experince on Azure services
  • Ans. 

    I have extensive experience working with various Azure services such as Azure DevOps, Azure Functions, Azure SQL Database, and Azure Virtual Machines.

    • Experience with Azure DevOps for CI/CD pipelines

    • Knowledge of Azure Functions for serverless computing

    • Hands-on experience with Azure SQL Database for data storage

    • Proficiency in managing Azure Virtual Machines for hosting applications

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is coupling ?
  • Ans. 

    Coupling refers to the degree of interdependence between software modules or components.

    • Coupling measures how closely connected two modules are in a system.

    • There are different types of coupling such as tight coupling and loose coupling.

    • Tight coupling means high interdependence between modules, while loose coupling means low interdependence.

    • Reducing coupling in a system can improve maintainability and flexibility.

    • Exampl...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Different types of performance testing
  • Ans. 

    Different types of performance testing include load testing, stress testing, and scalability testing.

    • Load testing: Evaluates system performance under normal and peak load conditions.

    • Stress testing: Tests system performance beyond its normal capacity to identify breaking points.

    • Scalability testing: Measures system's ability to handle increased workload by adding resources.

    • Endurance testing: Checks system performance ove...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Python programming string operations
Round 2 - Technical 

(1 Question)

  • Q1. Spark file processing
Round 3 - HR 

(1 Question)

  • Q1. Formal HR questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Write a program in python demonstrating use of wrapper class Write a code to demonstrate use of generator Optimised prime number solution 2 Code in pyspark where basically i was ask to use explode function...
  • Ans. 

    Demonstrates Python wrapper class, generator for primes, PySpark explode, window functions, and cache vs persist.

    • Wrapper Class: A class that encapsulates a primitive data type to provide additional functionality. Example: int, float wrappers.

    • Generator: A function that yields values one at a time, allowing iteration without storing all values in memory. Example: def prime_gen():

    • Optimized Prime Number Solution: Use Sieve...

  • Answered by AI
  • Q2. More of current project

What people are saying about Impetus Technologies

View All
letsgro
Verified Icon
2w
works at
Wipro
I'm actually confused now
I have 3 yoe in Data engineering , I have an offer letter from Infosys with 8.5lpa And another company called ikrux with 12.5 lpa 11.5 lpa fixed and 1 lakh variable pay But I reviewed this ikrux company they are third party or consulting company Their client called impetus I recently connected in linkedin one guy he told me it's too much work pressure and he was told to work on weekends also . I tried a counter offer to infosys and they said they won't increase any compensation. What do you think i should do ? Should I have to choose money or work life balance and join infosys ?? Can some suggest me please
Got a question about Impetus Technologies?
Ask anonymously on communities.

Impetus Technologies Interview FAQs

How many rounds are there in Impetus Technologies interview for experienced candidates?
Impetus Technologies interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Impetus Technologies interview process for experienced candidates are Technical, HR and One-on-one Round.
How to prepare for Impetus Technologies interview for experienced candidates?
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 Impetus Technologies. The most common topics and skills that interviewers at Impetus Technologies expect are Big Data, Python, SQL, Java and Spark.
What are the top questions asked in Impetus Technologies interview for experienced candidates?

Some of the top questions asked at the Impetus Technologies interview for experienced candidates -

  1. How to get values present in tables A but not in B without using joining condit...read more
  2. How to take one string and do Permutations and Combinations without using store...read more
  3. How to check and get 3 highest used words in a column from a tab...read more
How long is the Impetus Technologies interview process?

The duration of Impetus Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 25 interview experiences

Difficulty level

Easy 11%
Moderate 89%

Duration

Less than 2 weeks 87%
2-4 weeks 13%
View more
Join Impetus Technologies The Intelligent Enterprise Delivered

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 370 Interviews
CitiusTech Interview Questions
3.3
 • 286 Interviews
NeoSOFT Interview Questions
3.6
 • 279 Interviews
Altimetrik Interview Questions
3.7
 • 239 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 210 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
View all

Impetus Technologies Reviews and Ratings

based on 533 reviews

3.5/5

Rating in categories

3.5

Skill development

3.4

Work-life balance

3.7

Salary

3.8

Job security

3.4

Company culture

3.3

Promotions

3.2

Work satisfaction

Explore 533 Reviews and Ratings
DevOps Engineer- Azure Databricks

Pune,

Bangalore / Bengaluru

+1

5-10 Yrs

Not Disclosed

Databricks Administrator

Pune,

Bangalore / Bengaluru

+1

5-10 Yrs

Not Disclosed

Business Intelligence Architect

New Delhi,

Pune

+1

12-16 Yrs

₹ 40-45 LPA

Explore more jobs
Senior Software Engineer
829 salaries
unlock blur

₹7.5 L/yr - ₹25.7 L/yr

Software Engineer
589 salaries
unlock blur

₹5 L/yr - ₹18 L/yr

Module Lead Software Engineer
257 salaries
unlock blur

₹10.3 L/yr - ₹35.7 L/yr

Module Lead
252 salaries
unlock blur

₹11 L/yr - ₹35 L/yr

Lead Software Engineer
211 salaries
unlock blur

₹15.2 L/yr - ₹44 L/yr

Explore more salaries
Compare Impetus Technologies with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

4.1
Compare
write
Share an Interview