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 Cloud Engineer Interview Questions and Answers

Updated 6 Jun 2025

Impetus Technologies Cloud Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

  • Q1. Oops concept in python
  • Ans. 

    OOP in Python enables code reusability and organization through classes and objects, enhancing software development.

    • Encapsulation: Bundling data and methods in classes. Example: class Car with attributes like speed and methods like accelerate().

    • Inheritance: Creating new classes from existing ones. Example: class ElectricCar inherits from class Car, adding battery attributes.

    • Polymorphism: Using a single interface for di...

  • Answered by AI
  • Q2. Delete duplicate records in sql
  • Ans. 

    Learn how to effectively delete duplicate records in SQL using various methods.

    • Use the ROW_NUMBER() function to identify duplicates: Example: SELECT *, ROW_NUMBER() OVER (PARTITION BY column_name ORDER BY id) AS rn FROM table_name;

    • Delete duplicates using a Common Table Expression (CTE): Example: WITH CTE AS (SELECT *, ROW_NUMBER() OVER (PARTITION BY column_name ORDER BY id) AS rn FROM table_name) DELETE FROM CT...

  • Answered by AI

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.

Interview questions from similar companies

I appeared for an interview in Sep 2017.

Interview Questionnaire 

4 Questions

  • Q1. Technical interview take by client technical person actually they are hiring for another client so they took total 3 technical round and final will HR round
  • Q2. Asking about life cycle of Dot net mvc contols entity frame work and SQL queries
  • Q3. Problem based on oops and SQL queries outputs
  • Q4. Basic questions about my self ,salary discussion basic formalities form I have to fill up

Interview Preparation Tips

Round: Test
Experience: There were around 15 objective question that includes mvc, c#.net and SQL server. It was very simple question like different types of filters,Acton results in mvc. Basic oops concept and dot net web page regarding

Round: Resume Shortlist
Experience: After completing test round another was technical round discussed maily for mvc and SQL server questions. Around 30 mint discussion. After qualify this round another round will start from client technical staff.

General Tips: It was for 2-3 year experience person very simple to crack but focus on you which profile you are looking for study interview questions from net
Skills: Dot net mve oops concept jQuery and SQL server

Cloud Engineer Interview Questions Asked at Other Companies

Q1. Can you please elaborate on the best practices of Authentication ... read more
asked in 66degrees
Q2. Write an SQL query to find the employees from the employee table ... read more
asked in LeadSquared
Q3. Tell me about where the AWS is use and why this service are using ... read more
Q4. What are the best monitoring tools available in Cloud providers a ... read more
Q5. Have you ever been involved in configuring the architecture for a ... read more

I applied via Naukri.com and was interviewed before May 2018. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Telephonic technical
  • Q2. Core Java related exception handling ,design pattern ,oops solid design principle, rest API, different annotations of spring and jpa
  • Q3. Same questions on telephonic round but detailed elaborate and given simple problem statement we had to justify that why it's time n space complexity valid. Rest API questions hibernate orm use
  • Q4. Manager round just to check whether you have actually worked on project or not stress testing performance questions scenario questions

Interview Preparation Tips

General Tips: Quite easy just go with preparation
Skills: Core Java sevlet JSP hibernate spring rest API, Communication, Body Language, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-4 weeks

I appeared for an interview in Sep 2019.

Interview Questionnaire 

1 Question

  • Q1. Pl sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - y resume was referd through a guy. Later I got call from HR for interview schedule he asked me my expected ctc and Notice Period to which I clearly said 3 months. He scheduled my interview on weekends morning 8am I reached there by 8.30am The interview process got started late by 10am it was an walk in type interview 1 round was Technical I cleared that round and had a feedback session with HR he said we are processing u to next round which was Manager round there itself I told the HR my NP is 3months the Hr Told its not an issue.
Laterly after I had lunch by 2pm Hr came n told me that Manager is not available now so we will be conducting ur further round in weekdays.
Then there was no mail or call so I purposely mailed them still haven't got proper response from them, so at last I told my friend who referd me to ask for an update the same HR told him that they want Immediate joiner so we can't process him to further round. Wasted my whole day over there

I applied via Recruitment Consultant and was interviewed before Jan 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What Prog Languages known? Prior Software Experience? How good on U.S. Client Face to Face and telephonic interaction for projects?
  • Ans. 

    I am proficient in Java, Python, and C++. I have 2 years of experience in software development. I have excellent communication skills for client interaction.

    • Proficient in Java, Python, and C++

    • 2 years of software development experience

    • Excellent communication skills for client interaction

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I wasn't fluent or good in Programming languages but I was clear on the flowchart and the basic concept of OOPS. Also, I was confident about solving the scenarios given to me at interview rounds. I also had good experience in US customer handling over telephonic and Face to Face interaction.

I applied via Walk-in and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Data structures and algorithms

Round 2 - Coding Test 

Python etl,pandas, pyspark questions

Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation , work culture

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with the basics and practice common programming problems

I applied via first naukari and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A graph is stored in sql database. Questions was to find the shorted path between point A and B.
  • Ans. 

    To find the shortest path in a graph stored in SQL, use algorithms like Dijkstra's or A* with SQL queries for traversal.

    • Use Dijkstra's algorithm for weighted graphs to find the shortest path efficiently.

    • For unweighted graphs, consider using Breadth-First Search (BFS).

    • Store graph edges in a table with columns for source, destination, and weight.

    • Example SQL query: SELECT * FROM edges WHERE source = 'A' AND destination = ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was quite simple. Basics of python and database were asked and some problem solving questions.
Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. Basics from all framework you have worked on.
  • Q2. There working all are non technical people's they don't know the projects here major people working in testing and non related work

I appeared for an interview before Nov 2020.

Interview Questionnaire 

3 Questions

  • Q1. Simple and Easy questions on OOPS, static variable, Prioriry queue,
  • Q2. Design question,
  • Q3. Binary Search

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy you can crack this shit easily

I appeared for an interview in Sep 2020.

Interview Questionnaire 

1 Question

  • Q1. Oops concept, solid principles, filters in MVC, basics of Angular,life cycle hook

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 rounds- both are technical.

Impetus Technologies Interview FAQs

How to prepare for Impetus Technologies Cloud 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 AWS, GCP, Python, Azure and Business Applications.
What are the top questions asked in Impetus Technologies Cloud Engineer interview?

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

  1. Delete duplicate records in ...read more
  2. Oops concept in pyt...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
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 Cloud Engineer Salary
based on 4 salaries
₹4.2 L/yr - ₹24 L/yr
101% more than the average Cloud Engineer Salary in India
View more details

Impetus Technologies Cloud Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
830 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