Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by ACKO Team. If you also belong to the team, you can get access from here

ACKO Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ACKO Interview Questions and Answers

Updated 26 May 2025
Popular Designations

43 Interview questions

An UI Developer was asked 5mo ago
Q. Implement drag and drop functionality.
Ans. 

Implementing drag and drop functionality in UI development.

  • Use HTML5 drag and drop API

  • Add 'draggable' attribute to elements you want to drag

  • Implement 'dragstart', 'dragover', 'drop' events

  • Use CSS to style dragged elements

  • Consider using libraries like jQuery UI for more complex drag and drop interactions

View all UI Developer interview questions
An Operations Manager was asked 6mo ago
Q. What are the effective approaches in operations to improve customer experience?
Ans. 

Effective approaches in operations to improve customer experience include streamlining processes, implementing technology, and focusing on employee training.

  • Streamline processes to reduce wait times and improve efficiency

  • Implement technology such as self-service kiosks or online ordering systems

  • Focus on employee training to ensure consistent and high-quality service

  • Collect and analyze customer feedback to make dat...

View all Operations Manager interview questions
An Operations Manager was asked 6mo ago
Q. What is the best organizational culture for employee orientation initiatives, in your opinion?
Ans. 

A supportive and inclusive organizational culture is best for employee orientation initiatives.

  • Encourage open communication and feedback between new employees and management.

  • Provide mentorship programs to help new employees acclimate to the company culture.

  • Promote teamwork and collaboration among employees to foster a sense of belonging.

  • Celebrate diversity and inclusion to create a welcoming environment for all em...

View all Operations Manager interview questions
A Senior Associate was asked 6mo ago
Q. What is insurance?
Ans. 

Insurance is a financial product that provides protection against financial losses resulting from unexpected events.

  • Insurance involves a contract between an individual or entity (the policyholder) and an insurance company.

  • The policyholder pays a premium in exchange for coverage and protection against specified risks.

  • Types of insurance include health, life, auto, home, and business insurance.

  • Insurance helps individ...

View all Senior Associate interview questions
A Procurement Specialist was asked 6mo ago
Q. Are you available 24/7, 365 days a year?
Ans. 

I am committed to my role but cannot be available 24/7 due to personal and professional boundaries.

  • Work-life balance is essential for maintaining productivity and mental health.

  • I can be flexible with my hours, especially during critical projects or deadlines.

  • For urgent matters, I can be reached outside of regular hours, but I prefer to set clear boundaries.

  • In my previous role, I ensured timely communication during...

View all Procurement Specialist interview questions
A Software Development Engineer II was asked 7mo ago
Q. Design a Stopwatch using HTML, CSS, and JavaScript.
Ans. 

A simple stopwatch built using HTML, CSS, and JavaScript to track elapsed time.

  • Use HTML to create the structure: buttons for start, stop, reset, and a display for time.

  • Style the stopwatch with CSS for a clean and user-friendly interface.

  • Implement JavaScript to handle time calculations and button functionalities.

  • Use setInterval to update the display every second.

  • Store elapsed time in variables and update them based...

View all Software Development Engineer II interview questions
A Java Developer was asked 11mo ago
Q. Write code to manage a parking system where the initial charge is 10 rupees for 10 minutes, and every additional minute costs 2 rupees.
Ans. 

Java code to manage parking fees based on time parked, with incremental charges.

  • Initial charge: 10 rupees for the first 10 minutes.

  • After 10 minutes, every additional minute increases the charge by 2 rupees.

  • Example: 15 minutes parked = 10 + (5 * 2) = 20 rupees.

  • Use a method to calculate total fee based on input time.

  • Consider edge cases like negative time or zero time.

View all Java Developer interview questions
Are these interview questions helpful?
🔥 Asked by recruiter 2 times
A Product Manager was asked 12mo ago
Q. Design Instagram for kids.
Ans. 

A kid-friendly version of Instagram with enhanced safety features and parental controls.

  • Implement strict age verification processes to ensure only kids can create accounts

  • Enable parents to monitor and approve all friend requests and messages

  • Restrict access to certain content and features deemed inappropriate for children

  • Include educational and creative tools to encourage positive interactions

View all Product Manager interview questions
An Assistant Manager was asked 12mo ago
Q. How would you approach analyzing a data set?
Ans. 

Approach a data set by first understanding the context and purpose, then cleaning and organizing the data, analyzing it using appropriate tools and techniques, and finally interpreting the results to draw meaningful insights.

  • Understand the context and purpose of the data set before diving in.

  • Clean and organize the data by removing duplicates, handling missing values, and standardizing formats.

  • Use appropriate tools...

View all Assistant Manager interview questions
A Software Developer was asked
Q. How would you sort numbers in a large file?
Ans. 

Use external sorting algorithm like merge sort to efficiently sort numbers in a large file.

  • Break the large file into smaller chunks that can fit into memory

  • Sort each chunk individually using a sorting algorithm like merge sort

  • Merge the sorted chunks back together to get the final sorted result

View all Software Developer interview questions

ACKO Interview Experiences

55 interviews found

I appeared for an interview in Feb 2022.

Round 1 - Aptitude Test 

3 coding question 1 SQL query

Round 2 - Technical 

(2 Questions)

  • Q1. Question about tree check tree is bst or not ?write code on it
  • Q2. Array question find 1st repeated element in o(n).
  • Ans. 

    Find the first repeated element in an array of strings in O(n) time complexity.

    • Create a hash table to store the frequency of each element.

    • Traverse the array and check if the element is already present in the hash table.

    • If it is present, return the element as the first repeated element.

    • If no element is repeated, return null or -1.

    • Example: ['apple', 'banana', 'orange', 'apple'] => 'apple'

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Multiple of big integers and find complexity
  • Ans. 

    Question about finding complexity of multiplying big integers.

    • Big integers require more memory and processing power than regular integers.

    • Multiplying two n-digit integers takes O(n^2) time using the standard algorithm.

    • There are faster algorithms like Karatsuba and FFT which have lower complexity.

    • The complexity of multiplying two n-digit integers using Karatsuba algorithm is O(n^log2(3)).

    • The complexity of multiplying tw...

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence focus on coding and core subjects.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was a coding round of ReactJS and JS

Round 2 - Technical 

(1 Question)

  • Q1. Design Stopwatch in HTML CSS and JS
  • Ans. 

    A simple stopwatch built using HTML, CSS, and JavaScript to track elapsed time.

    • Use HTML to create the structure: buttons for start, stop, reset, and a display for time.

    • Style the stopwatch with CSS for a clean and user-friendly interface.

    • Implement JavaScript to handle time calculations and button functionalities.

    • Use setInterval to update the display every second.

    • Store elapsed time in variables and update them based on u...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and tell if you are not comfortable in particular language.

Skills evaluated in this interview

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

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

Sql and excel then tableu

Round 2 - Technical 

(1 Question)

  • Q1. Sql and excel and basic questions
Round 3 - HR 

(1 Question)

  • Q1. Longterm aspiration
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. React js fundamental questions, JavaScript fundamental questions, project, and current work description. The interviewer was well prepared and polite.
  • Q2. What are the fundamental concepts of React.js that should be demonstrated in a machine coding interview?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process was smooth and well-structured, and the behavior and understanding of the interviewer were exceptional.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Managerial questions around autonomy and alignment
Round 2 - Technical 

(2 Questions)

  • Q1. Solution architecture
  • Q2. Design patterns
Round 3 - Technical 

(2 Questions)

  • Q1. Microservice debugging
  • Q2. Database migrations
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
  • Q1. What are your expectations from ACKO?
  • Q2. Why are you looking for a change

Senior Associate Interview Questions & Answers

user image Bijay Kumar Maharana

posted on 17 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why do you want to work with ACKO?
  • Ans. 

    I want to work with ACKO because of their innovative approach to insurance and their strong focus on customer satisfaction.

    • Innovative approach to insurance - ACKO's use of technology to simplify the insurance process is impressive.

    • Strong focus on customer satisfaction - ACKO's commitment to providing excellent customer service sets them apart from other insurance companies.

    • Opportunity for growth and learning - I believ...

  • Answered by AI
  • Q2. What is insurance?

UI Developer Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2025

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

Basic problem solving

Round 2 - Technical 

(2 Questions)

  • Q1. Implement drag and drop
  • Ans. 

    Implementing drag and drop functionality in UI development.

    • Use HTML5 drag and drop API

    • Add 'draggable' attribute to elements you want to drag

    • Implement 'dragstart', 'dragover', 'drop' events

    • Use CSS to style dragged elements

    • Consider using libraries like jQuery UI for more complex drag and drop interactions

  • Answered by AI
  • Q2. Basic JS questions
Round 3 - HR 

(1 Question)

  • Q1. Culture fit test
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Will you available 24*7 365 days ?
  • Ans. 

    I am committed to my role but cannot be available 24/7 due to personal and professional boundaries.

    • Work-life balance is essential for maintaining productivity and mental health.

    • I can be flexible with my hours, especially during critical projects or deadlines.

    • For urgent matters, I can be reached outside of regular hours, but I prefer to set clear boundaries.

    • In my previous role, I ensured timely communication during off-...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. It will be as usual self describe questions for past experience
Round 2 - Aptitude Test 

Needs to have some knowledge in advance excel

Senior Claims Associate Interview Questions & Answers

user image PARMANAND KANOJIYA

posted on 2 Apr 2025

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

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

  • Q1. What is your challenge in your job and how you tackle it.
  • Q2. What is your job role how good you know your work ?
  • Ans. 

    As a Senior Claim Associate, I manage and process insurance claims, ensuring accuracy and compliance with regulations.

    • Review and analyze claims for accuracy and completeness, ensuring all necessary documentation is provided.

    • Communicate with policyholders and healthcare providers to gather information and clarify any discrepancies.

    • Utilize claims management software to track and process claims efficiently, reducing turna...

  • Answered by AI
  • Q3. Why you want to change job only money or else ?
  • Ans. 

    I seek new opportunities for growth, learning, and to contribute more effectively, not just for financial reasons.

    • Desire for professional growth: I want to take on more responsibilities and challenges that align with my career goals.

    • Learning opportunities: I'm eager to expand my skill set and knowledge in a dynamic environment.

    • Cultural fit: I'm looking for a workplace that values collaboration and innovation, which I b...

  • Answered by AI
  • Q4. Why you wanna join our company ?
  • Ans. 

    I am drawn to your company for its commitment to excellence, innovation, and employee development in the claims industry.

    • Your company's reputation for integrity and customer service aligns with my professional values.

    • I admire your focus on technology and innovation, which I believe enhances the claims process and improves client satisfaction.

    • The opportunities for professional growth and development within your organiza...

  • Answered by AI
  • Q5. What is your strength and how you are using it in you workspace
  • Ans. 

    My strength is my attention to detail, which I apply to ensure accurate claims processing and customer satisfaction.

    • Thoroughly review each claim for accuracy, reducing errors by 30%.

    • Implement a checklist system to ensure all necessary documentation is collected.

    • Provide training sessions for new associates on best practices for detail-oriented work.

    • Utilize data analysis to identify trends in claims, improving processing...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Before applying for any company, not apply only for money. always ensure it will help you in your dream work.

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about ACKO?
Ask anonymously on communities.

ACKO Interview FAQs

How many rounds are there in ACKO interview?
ACKO interview process usually has 2-3 rounds. The most common rounds in the ACKO interview process are HR, One-on-one Round and Technical.
How to prepare for ACKO 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 ACKO. The most common topics and skills that interviewers at ACKO expect are Management, Claims, Analytical, Monitoring and Customer Experience.
What are the top questions asked in ACKO interview?

Some of the top questions asked at the ACKO interview -

  1. Can you chalk down a plan for employee engagement for all kind of employ...read more
  2. What are the effective approaches in operations to improve customer experien...read more
  3. What is the best organizational culture for employee orientation initiatives, i...read more
What are the most common questions asked in ACKO HR round?

The most common HR questions asked in ACKO interview are -

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. Why should we hire y...read more
How long is the ACKO interview process?

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

4.3/5

based on 73 interview experiences

Difficulty level

Easy 18%
Moderate 79%
Hard 3%

Duration

Less than 2 weeks 79%
2-4 weeks 12%
4-6 weeks 6%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 345 Interviews
PayPal Interview Questions
3.8
 • 225 Interviews
Fiserv Interview Questions
2.9
 • 181 Interviews
Razorpay Interview Questions
3.5
 • 161 Interviews
KFintech Interview Questions
3.5
 • 154 Interviews
Angel One Interview Questions
3.8
 • 149 Interviews
Visa Interview Questions
3.5
 • 146 Interviews
MasterCard Interview Questions
3.9
 • 145 Interviews
Revolut Interview Questions
2.6
 • 103 Interviews
View all

ACKO Reviews and Ratings

based on 553 reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.7

Salary

3.5

Job security

3.6

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 553 Reviews and Ratings
Product Designer
156 salaries
unlock blur

₹15.7 L/yr - ₹30 L/yr

Assistant Manager
97 salaries
unlock blur

₹5.1 L/yr - ₹11 L/yr

Senior Associate
51 salaries
unlock blur

₹3.5 L/yr - ₹6.5 L/yr

Senior Manager
51 salaries
unlock blur

₹10.5 L/yr - ₹44 L/yr

Claims Specialist
49 salaries
unlock blur

₹4 L/yr - ₹7.1 L/yr

Explore more salaries
Compare ACKO with

PhonePe

4.0
Compare

Fiserv

2.9
Compare

KFintech

3.5
Compare

Angel One

3.8
Compare
write
Share an Interview