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

Clear (1)

ACKO C.S.A Interview Questions and Answers

Updated 4 May 2023

ACKO C.S.A Interview Experiences

1 interview found

C.S.A Interview Questions & Answers

user image Anonymous

posted on 4 May 2023

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

I applied via Walk-in and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Aptitude Test 

English verbal and written test.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Last company experience?
  • Ans. 

    Worked as a software engineer at XYZ Corp for 2 years.

    • Developed and maintained web applications using Java and AngularJS.

    • Collaborated with cross-functional teams to deliver projects on time.

    • Participated in code reviews and contributed to improving code quality.

    • Mentored junior developers and helped them with their tasks.

    • Attended training sessions to keep up with the latest technologies.

  • Answered by AI
  • Q2. Why you want to join acko
  • Ans. 

    I want to join Acko because of its innovative approach to insurance and its focus on customer satisfaction.

    • I am impressed by Acko's use of technology to simplify the insurance process for customers.

    • Acko's customer-centric approach aligns with my own values and beliefs.

    • I am excited about the opportunity to work with a dynamic and talented team at Acko.

    • Acko's growth potential and commitment to innovation make it an attra

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Salary negotiation is advisable

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join Company
Round 2 - Case Study 

Customer Service Call Handling Scenario

Round 3 - Aptitude Test 
Round 4 - HR 

(1 Question)

  • Q1. When you can join our company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and comfortable while giving interviews. Understand the question and give answers
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic coding only not to worry much

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about ur self
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Excellent team player with good communication skills

  • Answered by AI
  • Q2. What is ur projects
  • Ans. 

    I have worked on various projects including a web-based inventory management system and a mobile app for tracking fitness goals.

    • Developed a web-based inventory management system using React and Node.js

    • Created a mobile app for tracking fitness goals using Flutter

    • Implemented RESTful APIs for communication between frontend and backend systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - all the best do well!

I applied via LinkedIn and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Priority queue code, Fibonacci series, bfs-dfs implementation,tree data structures (like height,left view,right view) basically easy level question of GFG on tree

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DS, SQL for the interview as it will be ask and be confident about what you are saying
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Aptitude Test 

General questions about the basics of insurance.

Round 2 - HR 

(2 Questions)

  • Q1. About my self and work experience
  • Q2. Practical questions relate to customers' experiences with the required products.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and make an effort to understand the company and its vision prior to attending the interview.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

All aptitude type questions as well as core computer science subject questions comes

I was interviewed in Jul 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Easy level DSA questions were asked to implement.

  • Q1. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal of an undirected and disconnected graph starting from vertex 0.

    • Implement BFS algorithm to traverse the graph starting from vertex 0.

    • Use a queue to keep track of visited nodes and their neighbors.

    • Ensure the traversal starts from vertex 0 and follows the BFS order.

    • Output the BFS traversal sequence for each test case in a separate line.

    • Handle disconnected components by checking for unvisited nodes.

    • Consider t...

  • Answered by AI
  • Q2. 

    DFS Traversal Problem Statement

    Given an undirected and disconnected graph G(V, E), where V is the number of vertices and E is the number of edges, the connections between vertices are provided in the 'GR...

  • Ans. 

    DFS traversal problem to find connected components in an undirected and disconnected graph.

    • Use Depth First Search (DFS) algorithm to traverse the graph and find connected components

    • Maintain a visited array to keep track of visited vertices

    • Iterate through all vertices and perform DFS on unvisited vertices to find connected components

  • Answered by AI
  • Q3. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store and reuse previously calculated Fibonacci numbers.

    • Start with base cases F(1) and F(2) as 1, then calculate subsequent Fibonacci numbers.

    • Optimize the solution to avoid redundant calculations by storing intermediate results.

    • Time complexity can be reduced to O(N) using dynamic programming.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

DSA questions based on trees were asked to implement.

  • Q1. 

    Determine the Left View of a Binary Tree

    You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree...

  • Ans. 

    The task is to determine the left view of a binary tree, which consists of nodes visible when viewed from the left side.

    • Traverse the binary tree level by level from left to right, keeping track of the first node encountered at each level.

    • Use a queue to perform level order traversal of the binary tree.

    • Store the leftmost node at each level in the result array.

    • Return the result array containing the left view of the binary

  • Answered by AI
  • Q2. 

    Right View of Binary Tree

    Given a binary tree of integers, your task is to output the right view of the tree.

    The right view of a binary tree includes the nodes that are visible when the tree is observed...

  • Ans. 

    The task is to output the right view of a binary tree, which includes the nodes visible when observed from the right.

    • Perform level order traversal of the binary tree.

    • For each level, add the rightmost node to the result.

    • Print the result as the right view of the binary tree.

    • Handle null nodes represented by -1 in the input.

  • Answered by AI
  • Q3. 

    Height of Binary Tree

    You are provided with the Inorder and Level Order traversals of a Binary Tree composed of integers. Your goal is to determine the height of this Binary Tree without actually construc...

  • Ans. 

    Find the height of a Binary Tree given its Inorder and Level Order traversals without constructing it.

    • Use the properties of Inorder and Level Order traversals to determine the height of the Binary Tree.

    • The height of a Binary Tree is the number of edges on the longest path from the root to a leaf node.

    • Consider edge cases like a single node tree or empty tree while calculating the height.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round where the interviewer asked questions to know more about me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPolicyBazaar.com interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Learn DS, SQL for the interview as it will be ask and be confident about what you are saying
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via AmbitionBox and was interviewed in Aug 2022. There were 14 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Telephonic Call 

(1 Question)

  • Q1. When will the interview start?
Round 3 - HR 

(1 Question)

  • Q1. When will the start interview
Round 4 - Assignment 

I want to do company work

Round 5 - Offer letter 

(1 Question)

  • Q1. I want to offer letter
Round 6 - Coding Test 

Update the all works

Round 7 - Group Discussion 

When will start the group discussion

Round 8 - Technical 

(1 Question)

  • Q1. I know all technical
Round 9 - Job location 

(1 Question)

  • Q1. Relocate my native location
Round 10 - Case Study 

I want to material bajaj alliance general insurance

Round 11 - Payrollteam 

(1 Question)

  • Q1. I am asking question
Round 12 - Dindigul location 

(1 Question)

  • Q1. I want to Dindigul location
Round 13 - Onboarding 

(1 Question)

  • Q1. Iam learning to onbording
Round 14 - Relationship 

(1 Question)

  • Q1. Customer to employees relationship

Interview Preparation Tips

Interview preparation tips for other job seekers - As a new starter,many people will ask about your previous employment and your new role at the company knowing what you re going to say will come in handy
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Personal Interview 

(1 Question)

  • Q1. Personal Introduction Family background College Related question

I applied via Referral and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About insurance addon product
  • Q2. About your last experiences and qualifications

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join future Generali currently due to company has stopped doing Motor business from all vertical and now it's become only health company.
Contribute & help others!
anonymous
You can choose to be anonymous

ACKO Interview FAQs

How many rounds are there in ACKO C.S.A interview?
ACKO interview process usually has 3 rounds. The most common rounds in the ACKO interview process are Resume Shortlist, Aptitude Test and One-on-one Round.

Recently Viewed

INTERVIEWS

Capgemini Engineering

No Interviews

INTERVIEWS

ACKO

30 top interview questions

INTERVIEWS

ACKO

No Interviews

SALARIES

Kritter Software Technology

SALARIES

Kritter Software Technology

INTERVIEWS

Subros

No Interviews

SALARIES

KP Reliable Technique India

SALARIES

KP Reliable Technique India

INTERVIEWS

Subros

No Interviews

INTERVIEWS

Future Generali India Life Insurance

No Interviews

Tell us how to improve this page.

ACKO C.S.A Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

PolicyBazaar Interview Questions
3.6
 • 345 Interviews
PhonePe Interview Questions
4.0
 • 297 Interviews
PayPal Interview Questions
3.9
 • 206 Interviews
HighRadius Interview Questions
2.9
 • 182 Interviews
Fiserv Interview Questions
3.0
 • 172 Interviews
Tata AIG Interview Questions
4.1
 • 154 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Digit Insurance Interview Questions
4.0
 • 142 Interviews
View all

ACKO C.S.A Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

2.0

Work-life balance

2.0

Salary

3.0

Job security

1.0

Company culture

1.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Service Executive
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Claims Specialist
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
40 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
29 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent