Upload Button Icon Add office photos

Engati

Compare button icon Compare button icon Compare

Filter interviews by

Engati Interview Questions and Answers

Updated 21 May 2025
Popular Designations

7 Interview questions

A Customer Support Associate was asked 2mo ago
Q. Can you explain what APIs are and provide an industry example?
Ans. 

APIs are sets of rules that allow different software applications to communicate and share data with each other.

  • Definition: APIs (Application Programming Interfaces) enable different software systems to interact, allowing them to exchange data and functionality.

  • Types: There are various types of APIs, including RESTful APIs, SOAP APIs, and GraphQL APIs, each with its own use cases and protocols.

  • Industry Example: In...

View all Customer Support Associate interview questions
A Software Developer Intern was asked
Q. Implement a queue using two stacks.
Ans. 

Implement a queue using two stacks

  • Use two stacks - one for enqueue operation and one for dequeue operation

  • When dequeue is called, check if the second stack is empty. If it is, pop all elements from the first stack and push them onto the second stack

  • Time complexity for enqueue operation is O(1) and for dequeue operation is O(n)

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. Write a program to find the largest element in an array without using any STL functions.
Ans. 

Find the largest element in an array without using any STL functions.

  • Iterate through the array and compare each element with the current largest element.

  • Update the largest element if a larger element is found.

  • Return the largest element at the end.

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. Write a function that reverses a string. The input string is given as an array of characters s.
Ans. 

Reverse a given string

  • Use a loop to iterate through the characters of the string and build a new string in reverse order

  • Alternatively, you can use built-in functions like reverse() or StringBuilder in some programming languages

  • Make sure to handle edge cases like empty string or null input

View all Software Developer Intern interview questions
A fresher was asked
Q. Given an array, find the second smallest element.
Ans. 

The second smallest element in an array is found by sorting the array and selecting the element at index 1.

  • Sort the array in ascending order

  • Access the element at index 1 to get the second smallest element

View all fresher interview questions
A fresher was asked
Q. Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements.
Ans. 

Move zeros to the end of the array without changing the order.

  • Iterate through the array and count the number of zeros

  • Create a new array with all the non-zero elements

  • Append the counted number of zeros at the end of the new array

View all fresher interview questions
A Business Development Associate was asked
Q. What is AI, what do you know about chatbots
Ans. 

AI stands for Artificial Intelligence, chatbots are AI-powered programs that simulate conversation with users.

  • AI is the simulation of human intelligence processes by machines, typically computer systems.

  • Chatbots are AI-powered programs that can simulate conversation with users through text or voice.

  • Chatbots are commonly used in customer service, marketing, and other business applications.

  • Examples of chatbots inclu...

View all Business Development Associate interview questions
Are these interview questions helpful?

Engati Interview Experiences

13 interviews found

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

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

  • Q1. What are your five strengths and weaknesses?
  • Ans. 

    Identifying strengths and weaknesses helps in personal growth and enhances customer support skills for better service delivery.

    • Strength: Empathy - I can understand and relate to customers' feelings, which helps in providing personalized support. For example, I once helped a frustrated customer by actively listening and validating their concerns, leading to a positive resolution.

    • Strength: Problem-Solving - I excel at an...

  • Answered by AI
  • Q2. Can you explain what APIs are and provide an industry example?
  • Ans. 

    APIs are sets of rules that allow different software applications to communicate and share data with each other.

    • Definition: APIs (Application Programming Interfaces) enable different software systems to interact, allowing them to exchange data and functionality.

    • Types: There are various types of APIs, including RESTful APIs, SOAP APIs, and GraphQL APIs, each with its own use cases and protocols.

    • Industry Example: In the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - A toxic, disorganized, stressful environment with zero learning or career growth. Not recommended for any interns or freshers.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Product Interview questions Guesstimates + A take way Assignment to build a bot in the enagati website Platform
Round 2 - Technical 

(1 Question)

  • Q1. Product Interview : questions on - RCA, , Product Design and favourite Product
Round 3 - HR 

(1 Question)

  • Q1. HR behavioural Interview Question + Cultural Fit round with the Founder
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Mar 2024. There were 5 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Product question like vegan food delivery feature design
Round 2 - Assignment 

Assignment to write PRD for a whatsapp marketing platform

Round 3 - One-on-one 

(1 Question)

  • Q1. Asked about work ex. and feature I worked on and how will I improve it
Round 4 - Assignment 

Asked me to write a PRD on the feature improvement he asked in interview

Round 5 - One-on-one 

(1 Question)

  • Q1. Salary negotiation round with the CEO

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste your time doing the lengthy assignments they give it's not worth it. I did 2 assignments and 3 rounds of interviews only to get a offer of below market standards which was less than my current CTC because they knew I got laid off by my last company and current is job less. CEO mentioned an IIM graduate with 2 years of work ex. work at 5 LPA in their company isn't that exploitation? That is his poor ROI after spending lakhs on an IIM degree. He had audacity to tell me Banglore is cheap I should come to work as an intern there first.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Medium Level of Leetcode like Leetcode 200 etc and Java Oops is very important

Round 2 - Technical 

(2 Questions)

  • Q1. Java Oops concepts were asked
  • Q2. Intro yourself and logic based questions were asked like 8 ball and 1 ball balancing

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics Should be strong
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Largest element in an array without using any stl functions
  • Ans. 

    Find the largest element in an array without using any STL functions.

    • Iterate through the array and compare each element with the current largest element.

    • Update the largest element if a larger element is found.

    • Return the largest element at the end.

  • Answered by AI
  • Q2. Basic puzzle problem
  • Q3. Implementing queue from2 stacks
  • Ans. 

    Implement a queue using two stacks

    • Use two stacks - one for enqueue operation and one for dequeue operation

    • When dequeue is called, check if the second stack is empty. If it is, pop all elements from the first stack and push them onto the second stack

    • Time complexity for enqueue operation is O(1) and for dequeue operation is O(n)

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Managerial and basic hr questions like introduce yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - It is very easy you just need to have confidence

Skills evaluated in this interview

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

Mock sales call , they ask questions trying to guage if you plan to stay long term , questions that test your Objection Handling skills

Round 2 - One-on-one 

(1 Question)

  • Q1. Talk about your past experiences, more questions on those experiences
Round 3 - One-on-one 

(1 Question)

  • Q1. What is AI, what do you know about chatbots
  • Ans. 

    AI stands for Artificial Intelligence, chatbots are AI-powered programs that simulate conversation with users.

    • AI is the simulation of human intelligence processes by machines, typically computer systems.

    • Chatbots are AI-powered programs that can simulate conversation with users through text or voice.

    • Chatbots are commonly used in customer service, marketing, and other business applications.

    • Examples of chatbots include Si...

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

(1 Question)

  • Q1. Last round is with co founder. Just generic questions , if you've made it here , you are most probably selected

Skills evaluated in this interview

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

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

  • Q1. Missing parenthesis - java code
  • Q2. Prime number , 2 SQL queries and basic HTML code

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to concentrate more on puzzle solving
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

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

  • Q1. LeetCode Questions if you follow strivers sheet you can crack it
  • Q2. Only leet questions

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was an online test comprising of four different sections. Those were OOPs , Java, Data Interpretation, and Aptitude section. Each section had 12 questions which has to be solved in 11 minutes.

Round 2 - Technical 

(1 Question)

  • Q1. Second round was technical round and it was Face to Face round. They asked me questions based on OOP, OS, and on my projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear of what u know.

fresher Interview Questions & Answers

user image Anonymous

posted on 16 Feb 2024

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

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It has both coding and aptitude of 25 questions each

Round 2 - Technical 

(2 Questions)

  • Q1. Find second smallest element in the array
  • Ans. 

    The second smallest element in an array is found by sorting the array and selecting the element at index 1.

    • Sort the array in ascending order

    • Access the element at index 1 to get the second smallest element

  • Answered by AI
  • Q2. Mover zeros to the lend of the array without changing the order
  • Ans. 

    Move zeros to the end of the array without changing the order.

    • Iterate through the array and count the number of zeros

    • Create a new array with all the non-zero elements

    • Append the counted number of zeros at the end of the new array

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Engati?
Ask anonymously on communities.

Engati Interview FAQs

How many rounds are there in Engati interview?
Engati interview process usually has 2-3 rounds. The most common rounds in the Engati interview process are One-on-one Round, Technical and Aptitude Test.
How to prepare for Engati 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 Engati. The most common topics and skills that interviewers at Engati expect are Cash Flow, Automation Testing, Automation, Market Intelligence and Python.
What are the top questions asked in Engati interview?

Some of the top questions asked at the Engati interview -

  1. Can you explain what APIs are and provide an industry examp...read more
  2. What is AI, what do you know about chatb...read more
  3. Mover zeros to the lend of the array without changing the or...read more
How long is the Engati interview process?

The duration of Engati 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

2.7/5

based on 20 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 58%
2-4 weeks 33%
6-8 weeks 8%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

Engati Reviews and Ratings

based on 35 reviews

2.3/5

Rating in categories

2.6

Skill development

2.1

Work-life balance

2.1

Salary

2.0

Job security

2.0

Company culture

2.0

Promotions

2.1

Work satisfaction

Explore 35 Reviews and Ratings
Digital Sales Manager

Mumbai

2-4 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
25 salaries
unlock blur

₹14 L/yr - ₹23 L/yr

Software Engineer
21 salaries
unlock blur

₹8 L/yr - ₹12.5 L/yr

Software Developer
10 salaries
unlock blur

₹6 L/yr - ₹18 L/yr

Customer Success Associate
7 salaries
unlock blur

₹4.7 L/yr - ₹7.8 L/yr

Product Manager
7 salaries
unlock blur

₹15 L/yr - ₹22 L/yr

Explore more salaries
Compare Engati with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview