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
3.8

based on 483 Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

ACKO Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top ACKO Interview Questions and Answers

View all 39 questions

ACKO Interview Experiences

Popular Designations

48 interviews found

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

Interview Preparation Tips

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

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)
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

Senior Engineering Manager Interview Questions asked at other Companies

Q1. How do you ensure a payment does get credited to wrong employee account?
View answer (1)

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?
  • 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 individuals ...

  • Answered by AI

Senior Associate Interview Questions asked at other Companies

Q1. On an average, how many invoices can you process in a day?
View answer (10)

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

UI Developer Interview Questions asked at other Companies

Q1. Create 10 no. of Checkboxes in javascript and on-checked checkboxes count should be show at below. as you will un-check the checkbox count should also change. so means to say checked checkbox count should be print.
View answer (1)

ACKO interview questions for popular designations

 Software Developer Intern

 (4)

 Assistant Manager

 (3)

 Operations Manager

 (2)

 Software Developer

 (2)

 Admin Manager

 (1)

 android and Flutter Developer

 (1)

 Associate Product Manager

 (1)

 BDM

 (1)

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

(1 Question)

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

Procurement Specialist Interview Questions asked at other Companies

Q1. What is the first thing you consider when you are buying a product
View answer (2)

Get interview-ready with Top ACKO Interview Questions

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

MIS Specialist Interview Questions asked at other Companies

Q1. What is index+match
View answer (1)

Jobs at ACKO

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

I was interviewed in Jan 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Bloc, provider, widgets, listview vs listview.builder
Round 2 - Technical 

(4 Questions)

  • Q1. What is Bloc and its uses?
  • Ans. 

    Bloc is a state management library for Flutter that helps manage the flow of data and events.

    • Bloc stands for Business Logic Component.

    • It helps separate the presentation layer from the business logic.

    • Bloc is commonly used with Flutter to handle state management and data flow.

    • It uses streams to handle asynchronous data and events.

    • Bloc pattern consists of events, states, and a bloc class to handle the business logic.

  • Answered by AI
  • Q2. Different types of state management
  • Ans. 

    State management is a crucial aspect of app development to handle and update the state of the application.

    • Local State Management: Managing state within a widget using setState() method.

    • InheritedWidget: Sharing state across the widget tree using InheritedWidget.

    • Provider: A popular state management solution that uses InheritedWidget under the hood.

    • Redux: A predictable state container for managing the state of the app.

    • Blo...

  • Answered by AI
  • Q3. What is stateless
  • Ans. 

    Stateless refers to a widget in Flutter that does not have any mutable state.

    • Stateless widgets are immutable and their properties cannot change once they are initialized.

    • They are used for UI components that do not need to update or change based on user interactions.

    • Examples include static text labels, icons, and buttons that do not change appearance.

    • Stateless widgets are more efficient than stateful widgets as they do

  • Answered by AI
  • Q4. Lifecycle of stateful widget
  • Ans. 

    Stateful widgets in Flutter have a lifecycle that includes various methods being called at different stages.

    • Stateful widgets have methods like initState(), didChangeDependencies(), build(), and dispose() that are called at different points in the widget's lifecycle.

    • initState() is called when the widget is inserted into the tree, didChangeDependencies() is called when the widget's dependencies change, build() is called ...

  • Answered by AI

Skills evaluated in this interview

android and Flutter Developer Interview Questions asked at other Companies

Q1. How do you do state management in flutter ?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Hiring manager : Question around past experience
Round 2 - Technical 

(1 Question)

  • Q1. Design Instagram for kids
  • Ans. 

    Design a kid-friendly version of Instagram

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

    • Create a simplified user interface with larger icons and intuitive navigation

    • Enable parental controls to monitor and limit usage

    • Implement content filtering and moderation to ensure child-appropriate content

    • Introduce educational features like quizzes or challenges to promote learning

    • Encourage positive inter...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Engineering Manager : Stakeholder Management round
Round 4 - HR 

(1 Question)

  • Q1. Basic HR questions

Skills evaluated in this interview

Associate Product Manager Interview Questions asked at other Companies

Q1. 2. You have water filled Jar X and empty Jar Y. You transferred a portion of water from Jar X to Y using spunch which absorbs A% of water and it pours B% of water in Jar B. After one iteration, Z ml of water is present in Jar Y find water i... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. HLD of Instagram
  • Ans. 

    High-level design of Instagram

    • User authentication and authorization

    • Photo and video uploading and sharing

    • Feed algorithm for displaying posts

    • Direct messaging feature

    • Explore page for discovering new content

  • Answered by AI

Software Engineer2 Interview Questions asked at other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a point is inside or outside its volume? - Given a bunch of points with their coordinates, how to merge closeby points together? - How to determine if the normals of the two trian... read more
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. He asked to write a code on maintaining the parking and for 10min 10 rupees every 1 min 2 ruppes increase

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn data structures

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

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 Claims, Management, 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
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.

ACKO Interview Process

based on 65 interviews

Interview experience

4.3
  
Good
View more

ACKO Reviews and Ratings

based on 483 reviews

3.8/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.8

Salary

3.6

Job security

3.7

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 483 Reviews and Ratings
Area Manager -

Pune

3-10 Yrs

Not Disclosed

Provider Management & Claims KYC Compliance Coordinator

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Training Specialist

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Explore more jobs
Assistant Manager
85 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Customer Service Executive
50 salaries
unlock blur

₹2.8 L/yr - ₹5.1 L/yr

Claims Specialist
44 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Senior Associate
40 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Team Lead
28 salaries
unlock blur

₹4.1 L/yr - ₹9.7 L/yr

Explore more salaries
Compare ACKO with

PolicyBazaar

3.6
Compare

Digit Insurance

4.0
Compare

ICICI Lombard General Insurance Company

3.7
Compare

Bajaj Allianz General Insurance

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