i
PolicyBazaar
Work with us
Filter interviews by
I appeared for an interview in Apr 2025, where I was asked the following questions.
Policybazaar is India's leading online insurance aggregator, offering a platform to compare and purchase insurance products.
Founded in 2008, Policybazaar has revolutionized the insurance industry in India by providing a transparent platform for consumers.
It allows users to compare various insurance products, including health, life, auto, and travel insurance, from multiple insurers.
The platform has over 50 insurance pa...
Policybazaar.com was co-founded by Yashish Dahiya, Alok Bansal, and Avaneesh Nirjar in 2008, revolutionizing insurance comparison in India.
Yashish Dahiya is the CEO and co-founder, instrumental in shaping the company's vision.
Alok Bansal, another co-founder, has a strong background in finance and technology.
Avaneesh Nirjar, also a co-founder, contributed to the technological framework of the platform.
Policybazaar.com h...
I possess strong analytical skills, relevant experience, and a passion for problem-solving, making me an ideal candidate for this role.
Strong analytical skills: I have a proven track record of analyzing complex data sets to derive actionable insights, as demonstrated in my previous internship.
Relevant experience: My experience in project management during my time at university has equipped me with the skills to handle ...
I appeared for an interview in Feb 2025, where I was asked the following questions.
I want to join Policy Bazaar to contribute to innovative insurance solutions and enhance customer experiences in a dynamic environment.
Policy Bazaar is a leader in the insurance sector, and I am excited about being part of a company that is transforming how people access insurance.
The company's commitment to technology and innovation aligns with my passion for leveraging data analytics to improve customer experiences.
I...
I appeared for an interview in Nov 2024, where I was asked the following questions.
Effectively handling objections involves active listening, empathy, and providing clear, relevant responses to address concerns.
Listen actively: Pay attention to the client's concerns without interrupting.
Acknowledge the objection: Validate their feelings by saying, 'I understand why you might feel that way.'
Ask clarifying questions: For example, 'Can you elaborate on what specifically concerns you about this proposal?...
I appeared for an interview before Feb 2023.
I applied via Recruitment Consulltant and was interviewed before Oct 2022. There were 2 interview rounds.
I applied via Approached by Company and was interviewed before Jun 2022. There were 3 interview rounds.
Top trending discussions
I applied via Company Website and was interviewed before Oct 2020. There was 1 interview round.
IndiaMart is a leading B2B marketplace, connecting buyers and suppliers, fostering growth and innovation in the Indian economy.
Strong market presence: IndiaMart is one of the largest online B2B marketplaces in India, with millions of registered users.
Diverse product range: The platform offers a wide variety of products across multiple categories, catering to various industries.
Empowering SMEs: IndiaMart supports small ...
I possess strong analytical, communication, and teamwork skills, which I will leverage to drive success in your organization.
Analytical Skills: I excel in data analysis, demonstrated by my previous project where I improved efficiency by 20% through data-driven decisions.
Communication: I have experience presenting complex ideas clearly, as shown in my role where I led team meetings and reported to stakeholders.
Teamwork:...
I applied via Naukri.com
Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.
Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.
Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.
Diversity of Roles: Amazon offers a wide range of caree...
I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.
Opportunities for professional development, such as training programs and mentorship.
A collaborative work environment that encourages teamwork and idea sharing.
Access to cutting-edge technology and resources to drive innovation.
A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...
I appeared for an interview before Jan 2021.
Round duration - 60 minutes
Round difficulty - Easy
Two coding questions were given in the first round to be solved in 60 minutes.
Given an array A
containing 'N' integers and an integer m
, rearrange the elements of the array such that the differences between the array elements and m
are sor...
Rearrange array elements based on their differences from a given integer.
Calculate the differences between each element and the given integer.
Sort the elements based on their differences while maintaining the original order for elements with the same difference.
Implement a function to rearrange the array elements as per the given criteria.
Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...
The task is to find all nodes in a binary tree that are at a distance K from a given node.
Traverse the binary tree to find the given node
From the given node, perform a depth-first search to find all nodes at distance K
Use a list to store the values of the nodes at distance K
Return the list of values in any order
Round duration - 60 minutes
Round difficulty - Easy
This was a technical round with questions based on DSA, DBMS, Computer Networking and project based questions.
Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.
N = 4
1
232
34545
4567654
The pat...
Print a triangle pattern of numbers based on a given number 'N'.
Iterate through each row and print the numbers accordingly
Use spaces to center-align the numbers in each row
Increment the numbers in each row as per the pattern
Web server serves static content over HTTP, while application server runs dynamic content and business logic.
Web server handles HTTP requests and responses, serving static content like HTML, images, and CSS.
Application server executes business logic, runs dynamic content, and interacts with databases.
Web server examples include Apache, Nginx, while application server examples include Tomcat, JBoss.
Web server focuses on...
The internet is a global network of interconnected computers that communicate using standardized protocols.
The internet is made up of a vast number of interconnected networks of computers.
Data is transmitted over the internet using protocols such as TCP/IP.
Websites are hosted on servers connected to the internet, and users access them using web browsers.
Internet Service Providers (ISPs) provide access to the internet f...
SQL query to find the nth highest salary
Use the 'SELECT DISTINCT' statement to get unique salary values
Order the salaries in descending order using 'ORDER BY' clause
Use 'LIMIT' and 'OFFSET' to get the nth highest salary
Round duration - 30 minutes
Round difficulty - Easy
Typical HR round with behavioral problems.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
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.
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.
I appeared for an interview before Dec 2020.
Round duration - 60 Minutes
Round difficulty - Medium
This round was purely based on Data Structures and Algorithms . One has to be fairly comfortable in solving Algorithmic problems to pass this round . Both the questions asked were quite common and luckily I had already prepared them from CodeStudio and LeetCode.
Given a Binary Tree with 'N' nodes, where each node holds an integer value, your task is to compute the In-Order, Pre-Order, and Post-Order traversals of the binar...
Compute the In-Order, Pre-Order, and Post-Order traversals of a Binary Tree given in level-order format.
Implement functions to perform In-Order, Pre-Order, and Post-Order traversals of a Binary Tree.
Use level-order input to construct the Binary Tree.
Traverse the Binary Tree recursively to generate the required traversals.
Ensure proper handling of null nodes represented by -1 in the input.
Return the three traversals as ...
Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.
The first line of input is an intege...
Reverse a singly linked list by altering the links between nodes.
Iterate through the linked list and reverse the links between nodes
Use three pointers to keep track of the current, previous, and next nodes
Update the links between nodes to reverse the list
Return the head of the reversed linked list
Round duration - 45 Minutes
Round difficulty - Medium
This round basically tested some concepts from Data Structures and File Manipulation .
Given two arrays A
and B
with sizes N
and M
respectively, both sorted in non-decreasing order, determine their intersection.
The intersection of two arrays in...
The problem involves finding the intersection of two sorted arrays efficiently.
Use two pointers to iterate through both arrays simultaneously.
Compare elements at the pointers and move the pointers accordingly.
Handle cases where elements are equal and update the intersection array.
Return the intersection array as the result.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
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.
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.
The duration of PolicyBazaar Associate Consultant interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 10 interview experiences
Difficulty level
Duration
based on 76 reviews
Rating in categories
Sales Executive
1.3k
salaries
| ₹1.8 L/yr - ₹5.5 L/yr |
Associate Sales Consultant
1.3k
salaries
| ₹2 L/yr - ₹4.5 L/yr |
Relationship Manager
1k
salaries
| ₹2.3 L/yr - ₹6 L/yr |
Team Lead
431
salaries
| ₹4.8 L/yr - ₹10 L/yr |
Sales Associate
415
salaries
| ₹1.8 L/yr - ₹5.5 L/yr |
Amazon
Flipkart
Indiamart Intermesh
BigBasket