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

Compare button icon Compare button icon Compare

Filter interviews by

Impetus Technologies Interview Questions, Process, and Tips for Experienced

Updated 26 Mar 2025

Top Impetus Technologies Interview Questions and Answers for Experienced

View all 44 questions

Impetus Technologies Interview Experiences for Experienced

Popular Designations

39 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
  • 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

Top Impetus Technologies Lead Software Engineer Interview Questions and Answers

Q1. Overloading with different return type allowed or not
View answer (1)

Lead Software Engineer Interview Questions asked at other Companies

Q1. Square Root with Decimal Precision Problem Statement You are provided with two integers, 'N' and 'D'. Your objective is to determine the square root of the number 'N' with a precision up to 'D' decimal places. This implies that the discrepa... read more
View answer (1)
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

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 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

Top Impetus Technologies Devops Engineer Interview Questions and Answers

Q1. 1. SSL implementation for different hadoop services. 2. Kerberos implementation for different hadoop components. 3. Performance benchmarking of hadoop cluster. 4. Automated deployment of hadoop services through ansible.
View answer (1)

Devops Engineer Interview Questions asked at other Companies

Q1. How to run a docker command remotely. i.e. Docker is installed on both your laptop and a remote linux server. You need to run docker command on the linux server but without taking a separate ssh session to the linux machine
View answer (2)

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

Top Impetus Technologies Data Engineer Interview Questions and Answers

Q1. How do you handle out of memory issue in spark?
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Next Greater Element Problem Statement You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater element, return -1. Input: T N arr[0]... read more
View answer (3)

Impetus Technologies interview questions for popular designations

 Data Engineer

 (11)

 Software Engineer

 (10)

 Senior Software Engineer

 (6)

 Devops Engineer

 (5)

 Java Developer

 (4)

 Big Data Engineer

 (4)

 Associate Software Engineer

 (4)

 Lead Software Engineer

 (3)

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

Top Impetus Technologies Devops Engineer Interview Questions and Answers

Q1. 1. SSL implementation for different hadoop services. 2. Kerberos implementation for different hadoop components. 3. Performance benchmarking of hadoop cluster. 4. Automated deployment of hadoop services through ansible.
View answer (1)

Devops Engineer Interview Questions asked at other Companies

Q1. How to run a docker command remotely. i.e. Docker is installed on both your laptop and a remote linux server. You need to run docker command on the linux server but without taking a separate ssh session to the linux machine
View answer (2)

Get interview-ready with Top Impetus Technologies Interview Questions

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

Angular Developer Interview Questions asked at other Companies

Q1. How can you pass data between parent and child components?, what is component interaction
View answer (5)

Jobs at Impetus Technologies

View all
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

Performance Engineer Interview Questions asked at other Companies

Q1. Loadrunner Throughput v/s hits/sec? How do you design spike testing in loadrunner & jmeter?
View answer (1)
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

Top Impetus Technologies Lead Software Engineer Interview Questions and Answers

Q1. Overloading with different return type allowed or not
View answer (1)

Lead Software Engineer Interview Questions asked at other Companies

Q1. Square Root with Decimal Precision Problem Statement You are provided with two integers, 'N' and 'D'. Your objective is to determine the square root of the number 'N' with a precision up to 'D' decimal places. This implies that the discrepa... read more
View answer (1)
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

Top Impetus Technologies Software Engineer Interview Questions and Answers

Q1. How to get values present in tables A but not in B without using joining conditions, minus, intersect, union...?
View answer (2)

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 (225)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

React application to fetch data and add search functionality.

Round 2 - HR 

(2 Questions)

  • Q1. What is my notice period?
  • Q2. What is my current salary?
  • Ans. 

    It is not appropriate to ask about current salary during an interview.

    • It is considered unprofessional and inappropriate to ask about current salary during an interview.

    • Focus should be on the candidate's skills, experience, and fit for the role.

    • Employers should instead discuss salary expectations or ranges for the position.

  • Answered by AI

Top Impetus Technologies Software Engineer Interview Questions and Answers

Q1. How to get values present in tables A but not in B without using joining conditions, minus, intersect, union...?
View answer (2)

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

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.

Impetus Technologies Interview Process for Experienced

based on 21 interviews

Interview experience

4.1
  
Good
View more
Join Impetus Technologies The Intelligent Enterprise Delivered

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 339 Interviews
CitiusTech Interview Questions
3.3
 • 276 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Altimetrik Interview Questions
3.8
 • 221 Interviews
Xoriant Interview Questions
4.1
 • 183 Interviews
CMS IT Services Interview Questions
3.1
 • 135 Interviews
Sify Technologies Interview Questions
3.8
 • 123 Interviews
Evalueserve Interview Questions
3.2
 • 115 Interviews
View all

Impetus Technologies Reviews and Ratings

based on 505 reviews

3.6/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.7

Salary

3.8

Job security

3.5

Company culture

3.4

Promotions

3.2

Work satisfaction

Explore 505 Reviews and Ratings
Devops Engineer

Noida,

Indore

+1

7-9 Yrs

Not Disclosed

ETL Support Engineer

Noida,

Indore

+1

4-8 Yrs

Not Disclosed

Network Tester

Noida,

Indore

+1

6-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
751 salaries
unlock blur

₹8.5 L/yr - ₹30 L/yr

Software Engineer
561 salaries
unlock blur

₹5.1 L/yr - ₹17.6 L/yr

Module Lead Software Engineer
272 salaries
unlock blur

₹12.2 L/yr - ₹37.5 L/yr

Module Lead
258 salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Lead Software Engineer
204 salaries
unlock blur

₹15.2 L/yr - ₹44 L/yr

Explore more salaries
Compare Impetus Technologies with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

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