Upload Button Icon Add office photos
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
3.5

based on 457 Reviews

Filter interviews by

Impetus Technologies Interview Questions, Process, and Tips

Updated 1 Jan 2025

Top Impetus Technologies Interview Questions and Answers

View all 77 questions

Impetus Technologies Interview Experiences

Popular Designations

90 interviews found

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 Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Project Experience end to end flow (Questions on AWS stack glue,s3,lambda,redshift) and data modelling used star/snowflake schema
  • Q2. Question on spark job optimizations(coalesce , AQE , skewed joins) & debugging
  • Q3. Python coding question(Valid Parenthesis)
  • Q4. PySpark Coding question(group by & aggregations)
Round 2 - Technical 

(5 Questions)

  • Q1. Project Experience and data migration end to end
  • Ans. 

    I have extensive experience in leading data migration projects from start to finish, ensuring seamless transition and minimal disruption.

    • Led a team in migrating legacy data from on-premise servers to cloud storage

    • Developed data mapping strategies to ensure accurate transfer of information

    • Implemented data validation processes to identify and rectify any discrepancies

    • Collaborated with stakeholders to define project scope...

  • Answered by AI
  • Q2. Spark Architecture, Executor memory management questions, internal working of coalesce vs repartition
  • Q3. Python theoretical questions on decorators, iterators, generators, Multi Threading
  • Q4. PySpark coding question on aggregation
  • Q5. Python Coding question : without python methods 1. to check if a list is sorted 2. sort the list , optimize the solution
  • Ans. 

    Check if a list is sorted and sort the list without using Python methods.

    • To check if a list is sorted, iterate through the list and compare each element with the next one. If any element is greater than the next one, the list is not sorted.

    • To sort the list without using Python methods, implement a sorting algorithm like bubble sort, selection sort, or insertion sort.

    • Example for checking if a list is sorted: ['a', 'b', ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Impetus Technologies Senior Data Engineer interview:
  • Pyspark
  • Python
  • Spark
Interview preparation tips for other job seekers - The interview where Python & PySpark heavy without any SQL question.

Skills evaluated in this interview

Senior Data Engineer Interview Questions asked at other Companies

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)
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 (decimal)You have been given two integers 'N' and 'D', Your task is to find the square root of the number 'N' with precision up to 'D' decimal places i.e. the difference between your answer and the correct answer should be less ... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Core Java questions related to stream API , functional interface, optional interface, runtime polymorphism, internal working of hashmap and time complexity, two snippet code based questions on recursive fu...
  • Q2. Coding question Two sum problem available on leetcode first brute force approach and the optimize using hashmap
  • Q3. SQL query based questions

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Serious questions on Spark theory and it's architecture
  • Q2. Frequency of a number in a list
  • Ans. 

    Calculate the frequency of a number in a list

    • Iterate through the list and count occurrences of the number

    • Use a dictionary to store the count of each number

    • Return the count of the specified number

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

(2 Questions)

  • Q1. Similar type of questions were asked
  • Q2. Questions regarding lead and lag functions in pyspark and sql

Skills evaluated in this interview

Associate Data Engineer Interview Questions asked at other Companies

Q1. Datastge - How will you remove Header and trailer from Sequential data file
View answer (2)

Impetus Technologies interview questions for popular designations

 Data Engineer

 (11)

 Software Engineer

 (9)

 Senior Software Engineer

 (6)

 Devops Engineer

 (5)

 Associate Software Engineer

 (4)

 Big Data Engineer

 (4)

 Lead Software Engineer

 (3)

 Module Lead Software Engineer

 (3)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Oct 2024

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

(4 Questions)

  • Q1. Tell me about your current project.
  • Ans. 

    I am currently working on developing a data pipeline for analyzing customer behavior in an e-commerce platform.

    • Designing and implementing ETL processes to extract, transform, and load data from various sources

    • Building data models to analyze customer interactions and purchasing patterns

    • Creating visualizations and dashboards to present insights to stakeholders

  • Answered by AI
  • Q2. 2 coding questions from pyspark.
  • Q3. What is Broadcast Join?
  • Ans. 

    Broadcast Join is a type of join operation in distributed computing where one smaller dataset is broadcasted to all nodes for joining with a larger dataset.

    • In Broadcast Join, one smaller dataset is broadcasted to all nodes in a distributed system.

    • This smaller dataset is then joined with a larger dataset that is partitioned across the nodes.

    • Broadcast Join is efficient when the smaller dataset can fit in memory across al...

  • Answered by AI
  • Q4. How do you handle out of memory issue in spark?
  • Ans. 

    Handling out of memory issue in Spark involves optimizing memory usage, partitioning data, and increasing resources.

    • Optimize memory usage by tuning Spark configurations like executor memory, driver memory, and shuffle partitions.

    • Partition data to distribute workload evenly across nodes and avoid data skew.

    • Increase resources by adding more nodes, increasing memory allocation, or using a larger cluster.

    • Use persistence me...

  • Answered by AI

Skills evaluated in this interview

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. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Get interview-ready with Top Impetus Technologies Interview Questions

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Basics of DE and project
Round 2 - One-on-one 

(1 Question)

  • Q1. Indepth Pyspark.

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. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Jobs at Impetus Technologies

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

A dataset from "Bank" was provided, requiring preprocessing, exploratory data analysis (EDA), and modeling using a predetermined model.

Interview Preparation Tips

Topics to prepare for Impetus Technologies Data Scientist interview:
  • Pandas
Interview preparation tips for other job seekers - Well prepared for Python coding.

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I was interviewed 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
  • 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)

Devops Engineer Interview Questions & Answers

user image charu talreja

posted on 8 Jul 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. They asked me about 3-tier aws architecture
  • Q2. Basic questions on ansible and terraform
Round 2 - Technical 

(1 Question)

  • Q1. Asked about boto3 and lambda code
Round 3 - Technical 

(1 Question)

  • Q1. Asked to write docker and ansible scripts

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. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)
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. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

Impetus Technologies Interview FAQs

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

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

  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. rule of overriding how JVM stores class and objects in memory, the internal wor...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

based on 47 interviews in last 1 year

Interview experience

4.1
  
Good
View more

People are getting interviews through

based on 52 Impetus Technologies interviews
Job Portal
Referral
Company Website
Campus Placement
60%
10%
8%
6%
16% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 785 Interviews
CitiusTech Interview Questions
3.4
 • 262 Interviews
View all

Impetus Technologies Reviews and Ratings

based on 457 reviews

3.5/5

Rating in categories

3.5

Skill development

3.3

Work-Life balance

3.5

Salary & Benefits

3.7

Job Security

3.4

Company culture

3.3

Promotions/Appraisal

3.1

Work Satisfaction

Explore 457 Reviews and Ratings
Project Manager

Noida,

Indore

12-18 Yrs

Not Disclosed

Sr. Technical Support Engineer

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Technical Support Engineer

Indore

1-3 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
684 salaries
unlock blur

₹8.3 L/yr - ₹30 L/yr

Software Engineer
522 salaries
unlock blur

₹5 L/yr - ₹20.5 L/yr

Module Lead Software Engineer
268 salaries
unlock blur

₹11.4 L/yr - ₹39.1 L/yr

Module Lead
240 salaries
unlock blur

₹11 L/yr - ₹35 L/yr

Lead Software Engineer
187 salaries
unlock blur

₹14.7 L/yr - ₹40 L/yr

Explore more salaries
Compare Impetus Technologies with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview