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 Module Lead Software Engineer Interview Questions, Process, and Tips

Updated 29 Jun 2022

Top Impetus Technologies Module Lead Software Engineer Interview Questions and Answers

Impetus Technologies Module Lead Software Engineer Interview Experiences

3 interviews found

Round 1 - Technical 

(1 Question)

  • Q1. SQL & Spark based questions
Round 2 - Technical 

(1 Question)

  • Q1. AWS Services based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared & brush up your skills on Spark, SQL & AWS.

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. 1create stack from two queue
  • Ans. 

    To create a stack from two queues, we need to use one queue for storing elements and the other for temporary storage.

    • Push elements into the first queue

    • When popping, move all elements except the last one to the second queue

    • Pop the last element from the first queue and return it

    • Swap the names of the two queues to make the second queue the first one

  • Answered by AI
  • Q2. Find the intersection point of an 2array
  • Ans. 

    Find the intersection point of two arrays of strings.

    • Convert arrays to sets to find common elements

    • Iterate through one array and check if element exists in the other array

    • Use built-in intersection method in Python

    • Sort arrays and use two pointers to find common elements

  • Answered by AI
  • Q3. Performance optimization of spark
  • Ans. 

    Performance optimization of Spark involves tuning various parameters and optimizing code.

    • Tune memory allocation and garbage collection settings

    • Optimize data serialization and compression

    • Use efficient data structures and algorithms

    • Partition data appropriately

    • Use caching and persistence wisely

    • Avoid shuffling data unnecessarily

    • Monitor and analyze performance using Spark UI and other tools

  • Answered by AI
  • Q4. Spark wordcount and sort the word in descending order with their number occurrence in dataframe
  • Ans. 

    Spark wordcount and sort in descending order with their number occurrence in dataframe

    • Read text file into dataframe using spark.read.text()

    • Split each line into words using split() function

    • Use groupBy() and count() functions to count the occurrence of each word

    • Sort the resulting dataframe in descending order using orderBy() function

    • Show the resulting dataframe using show() function

  • Answered by AI
  • Q5. Mutithreading nd hhow to use future completable future
  • Ans. 

    Multithreading allows concurrent execution of multiple threads. Future and CompletableFuture are used for asynchronous programming.

    • Multithreading enables parallel processing of tasks

    • Future is used to represent a result that may not be available yet

    • CompletableFuture is a subclass of Future that provides more flexibility and functionality

    • CompletableFuture can be used to chain multiple asynchronous tasks

    • CompletableFuture ...

  • Answered by AI
  • Q6. Question on elastic search

Interview Preparation Tips

Interview preparation tips for other job seekers - Just good in your java concept and spark

Skills evaluated in this interview

Module Lead Software Engineer Interview Questions Asked at Other Companies

Q1. Mutithreading nd hhow to use future completable future
Q2. Spark wordcount and sort the word in descending order with their ... read more
Q3. Find the intersection point of an 2array
Q4. 1create stack from two queue
Q5. Performance optimization of spark

I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Prepare on basic data structures Technology you are being hired for Business cases
Round 2 - One-on-one 

(1 Question)

  • Q1. They ask more about domain and application your are being part of. A few tech questions on SQL and data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basics
Prepare on data structures for ex: if python prepare for list/ tuple /dictionary/decorators etc

Module Lead Software Engineer Jobs at Impetus Technologies

View all

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. Implement a custom stack that allows fetching the minimum element in constant time, O(1).
  • Ans. 

    Custom stack with constant time access to minimum element

    • Use two stacks - one to store elements and another to store minimum values

    • When pushing an element, compare with top of min stack and push the smaller value

    • When popping an element, pop from both stacks

    • Access minimum element in O(1) time by peeking at top of min stack

  • Answered by AI
  • Q2. How can one create an immutable class named Employee with fields for name and hobbies defined as List?
  • Ans. 

    To create an immutable class named Employee with fields for name and hobbies defined as List<String>, use private final fields and return new instances in getters.

    • Use private final fields for name and hobbies in the Employee class

    • Provide a constructor to initialize the fields

    • Return new instances or unmodifiable lists in the getters to ensure immutability

  • Answered by AI
  • Q3. What changes are required in the Employee class to use it as a key for a HashMap?
  • Ans. 

    Add hashCode() and equals() methods to Employee class.

    • Override hashCode() method to generate a unique hash code for each Employee object.

    • Override equals() method to compare Employee objects based on their attributes.

    • Ensure that the attributes used in hashCode() and equals() methods are immutable.

    • Example: Add id, name, and department attributes to Employee class and override hashCode() and equals() methods based on thes

  • Answered by AI
  • Q4. What is the implementation of the singleton design pattern?
  • Ans. 

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

    • Create a private static instance of the class within the class itself.

    • Provide a public static method to access the instance, creating it if necessary.

    • Ensure the constructor of the class is private to prevent instantiation from outside the class.

    • Use lazy initialization to create the instance only when needed.

    • Thread...

  • Answered by AI
  • Q5. Different ways to create a thread
  • Ans. 

    Ways to create a thread in Java include extending the Thread class, implementing the Runnable interface, and using Java 8's lambda expressions.

    • Extend the Thread class and override the run() method

    • Implement the Runnable interface and pass it to a Thread object

    • Use Java 8's lambda expressions with the Executor framework

  • Answered by AI
  • Q6. What are the SOLID principles in software design, and can you provide examples for each?
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software more maintainable, flexible, and scalable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change. Example: A class that handles user authentication should not also handle database operations.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modific...

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. What is the concept of Object-Oriented Programming (OOP) and can you provide an example?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve a problem.

    • Encapsulation is a key concept in OOP, where data is kept within an object and only accessible through its methods.

    • Inheritance allows objects to inherit attributes and methods from parent classes.

    • Po...

  • Answered by AI
  • Q2. How do threads communicate with each other in Java?
  • Ans. 

    Threads communicate in Java through shared memory or message passing.

    • Threads can communicate through shared variables in memory.

    • Threads can communicate through synchronized methods or blocks.

    • Threads can communicate through wait(), notify(), and notifyAll() methods.

    • Threads can communicate through message passing using classes like BlockingQueue or ExecutorService.

  • Answered by AI
  • Q3. Write a program to reverse a linked list.
  • Ans. 

    Program to reverse a linked list

    • Create a new linked list to store the reversed elements

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Update the head of the new list as the last node of the original list

  • Answered by AI
  • Q4. What is the difference between string literals and the string pool?
  • Ans. 

    String literals are constant strings defined in code, while the string pool is a memory area where unique string objects are stored.

    • String literals are created using double quotes, while string pool objects are created using the 'new' keyword.

    • String literals are stored in the string pool to conserve memory and improve performance.

    • String literals are automatically interned by the JVM, while string pool objects need to b

  • Answered by AI
  • Q5. What is the program to print the 90-degree rotated view of a 2D array?
  • Ans. 

    Program to print the 90-degree rotated view of a 2D array.

    • Iterate through each column in reverse order and print the corresponding row elements.

    • Repeat this process for all columns to get the rotated view of the 2D array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on the fundamental aspects of Java and Spring Boot.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Given an array of non-negative integers.Find the length of the longest subsequence such that elements in the subsequence are contiguous integers. The consecutive numbers can be in any order. Example n=7 nu...
  • Ans. 

    Find the length of the longest subsequence of contiguous integers in an array.

    • Sort the array

    • Iterate through the array and check for consecutive integers

    • Keep track of the longest subsequence found

  • Answered by AI
  • Q2. Get list of pincodes from these objects Employee{ id Long, name String, Addresses : List
    } Addresses{ houseNo long, pindcode long, state String, country String, } Ans. Use flatMap to flatten and then use m...
  • Ans. 

    Use flatMap and map to extract list of pincodes from Employee objects

    • Use flatMap to flatten the list of Addresses in each Employee object

    • Use map to iterate over the flattened list and extract the pincodes

    • Example: employeeList.stream().flatMap(emp -> emp.getAddresses().stream()).map(address -> address.getPincode()).collect(Collectors.toList())

  • Answered by AI
  • Q3. What is Database Pooling, Hikari and its configurations. Java 8 to current enchancements and current java version Factory and Builder design patterns to explain and code Project expalantion and details, Cr...
  • Ans. 

    Database pooling is a technique used to manage a pool of database connections for efficient resource utilization. HikariCP is a popular database connection pooling library in Java.

    • HikariCP is a high-performance database connection pooling library for Java applications.

    • It is known for its low latency and high throughput.

    • Configurations for HikariCP include settings such as maximum pool size, connection timeout, and idle ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and design patterns and knowledge of springboot,java & streams API advance methods etc.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is LMS ?
  • Ans. 

    LMS stands for Learning Management System, a software application for the administration, documentation, tracking, reporting, and delivery of educational courses or training programs.

    • LMS helps organizations deliver online courses and training programs to employees or students.

    • It allows for the creation and management of courses, assessments, and learning materials.

    • LMS can track learner progress, generate reports, and p...

  • Answered by AI
  • Q2. What is shadow DOM
  • Ans. 

    Shadow DOM is a way to encapsulate the styling and structure of a web component, preventing styles from leaking out or clashing with the rest of the page.

    • Shadow DOM allows for creating self-contained components with their own styles and markup

    • It helps in preventing styles from the main document affecting the component and vice versa

    • Shadow DOM can be created using the 'shadowRoot' property of an element

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What all exceptions you know ?
  • Ans. 

    Some common exceptions in Salesforce development include DMLException, QueryException, and LimitException.

    • DMLException: Thrown when an error occurs while performing DML operations like insert, update, delete.

    • QueryException: Thrown when an error occurs while querying data from the database.

    • LimitException: Thrown when governor limits are exceeded, such as SOQL query limit or CPU time limit.

  • Answered by AI
  • Q2. Have you worked on integration ?
  • Ans. 

    Yes, I have worked on integration in Salesforce development.

    • I have experience integrating Salesforce with external systems using REST and SOAP APIs.

    • I have worked on integrating Salesforce with third-party applications like MailChimp and DocuSign.

    • I have implemented custom integrations using tools like Salesforce Connect and MuleSoft.

    • I have experience with data mapping, transformation, and synchronization during integrat

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Why governor limits ?
  • Ans. 

    Governor limits are in place to ensure efficient use of resources and prevent abuse in Salesforce platform.

    • Governor limits help in maintaining system performance and preventing monopolization of resources.

    • They ensure fair usage of resources among all users on the platform.

    • Examples include limits on number of records retrieved in a single query, number of SOQL queries executed, and CPU time consumed.

    • Governor limits also...

  • Answered by AI
  • Q2. What is challenge you faced ?
  • Ans. 

    One challenge I faced was integrating a third-party API with Salesforce.

    • Had to understand the API documentation thoroughly

    • Encountered compatibility issues with Salesforce platform

    • Implemented custom code to bridge the gap between API and Salesforce

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Test will be in hacker rank there would be a difficulty level between easy to medium

Round 2 - Technical 

(1 Question)

  • Q1. Question will be from data structure and easy to medium level of the programming laanguage question
Round 3 - HR 

(1 Question)

  • Q1. This is just to check your english ability
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Context api, js related qstns, simple programming qstn,
  • Q2. Remove duplicates without using set.
  • Ans. 

    Remove duplicates from array of strings without using set.

    • Iterate through the array and compare each element with all other elements to find duplicates.

    • Create a new array and add elements only if they are not already present in the new array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear on basics of react hooks, node js concepts.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding round is related to DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Java related questions
  • Q2. Explain about your project
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Why you want to join us?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Technology advantage or not

Round 2 - Aptitude Test 

All aptitude topics,logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,2 coding questions
  • Q2. Palindrome,even number
Round 4 - HR 

(2 Questions)

  • Q1. What do you know
  • Q2. Do you have any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Similar to tcs,infosys pattern

Impetus Technologies Interview FAQs

How many rounds are there in Impetus Technologies Module Lead Software Engineer interview?
Impetus Technologies interview process usually has 2 rounds. The most common rounds in the Impetus Technologies interview process are One-on-one Round and Technical.
How to prepare for Impetus Technologies Module Lead Software Engineer 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, Core Java, Architecture, Data Structures and Front End.
What are the top questions asked in Impetus Technologies Module Lead Software Engineer interview?

Some of the top questions asked at the Impetus Technologies Module Lead Software Engineer interview -

  1. Mutithreading nd hhow to use future completable futu...read more
  2. Spark wordcount and sort the word in descending order with their number occurre...read more
  3. Find the intersection point of an 2arr...read more

Tell us how to improve this page.

Join Impetus Technologies The Intelligent Enterprise Delivered

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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 809 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
View all
Impetus Technologies Module Lead Software Engineer Salary
based on 276 salaries
₹11.1 L/yr - ₹37.8 L/yr
19% more than the average Module Lead Software Engineer Salary in India
View more details

Impetus Technologies Module Lead Software Engineer Reviews and Ratings

based on 17 reviews

3.4/5

Rating in categories

3.7

Skill development

3.0

Work-life balance

3.8

Salary

3.6

Job security

3.2

Company culture

3.4

Promotions

2.9

Work satisfaction

Explore 17 Reviews and Ratings
Senior Software Engineer
698 salaries
unlock blur

₹8.2 L/yr - ₹28 L/yr

Software Engineer
537 salaries
unlock blur

₹5 L/yr - ₹20.5 L/yr

Module Lead Software Engineer
276 salaries
unlock blur

₹11.1 L/yr - ₹37.8 L/yr

Module Lead
249 salaries
unlock blur

₹12 L/yr - ₹35 L/yr

Lead Software Engineer
196 salaries
unlock blur

₹15.2 L/yr - ₹40 L/yr

Explore more salaries
Compare Impetus Technologies with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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