Premium Employer

i

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

PolicyBazaar Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 3.4k Reviews

Filter interviews by

PolicyBazaar Senior Software Engineer Interview Questions, Process, and Tips

Updated 13 Sep 2024

Top PolicyBazaar Senior Software Engineer Interview Questions and Answers

PolicyBazaar Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are Microservices
  • Ans. 

    Microservices are a software architecture pattern where applications are built as a collection of small, loosely coupled services.

    • Microservices are independent and autonomous services that communicate with each other through APIs.

    • Each microservice is responsible for a specific business capability and can be developed, deployed, and scaled independently.

    • Microservices promote flexibility, scalability, and resilience in s...

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

(2 Questions)

  • Q1. What are SOAP APIs
  • Ans. 

    SOAP APIs are a protocol for exchanging structured information in web services using XML-based messages.

    • SOAP stands for Simple Object Access Protocol

    • It is a messaging protocol that allows programs running on different operating systems to communicate with each other

    • SOAP APIs use XML to format the data being sent

    • They are commonly used in enterprise-level applications for integrating different systems

    • SOAP APIs provide a

  • Answered by AI
  • Q2. What are Rest APIs?
  • Ans. 

    REST APIs are a set of rules and protocols that allow different software applications to communicate and interact with each other over the internet.

    • REST stands for Representational State Transfer

    • REST APIs use HTTP methods like GET, POST, PUT, DELETE to perform operations on resources

    • REST APIs are stateless, meaning each request from a client to a server contains all the necessary information

    • REST APIs typically return d...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Implement queue,
  • Q2. React life cycle
  • Q3. Some output based questions
  • Q4. What is polyfill, implemented one two polyfill
  • Ans. 

    A polyfill is a piece of code that provides modern functionality on older browsers that do not natively support it.

    • Polyfills are commonly used for adding support for new JavaScript features on older browsers.

    • Two popular polyfills are 'Babel' for ES6 features and 'fetch' for the Fetch API.

    • Polyfills help ensure a consistent user experience across different browsers.

    • Polyfills can be implemented using JavaScript libraries ...

  • Answered by AI
  • Q5. Create todo list using react
  • Ans. 

    Create a todo list using React for managing tasks and reminders.

    • Use React components to create a form for adding tasks

    • Store tasks in state and display them in a list

    • Add functionality to mark tasks as completed and delete tasks

    • Implement features like filtering tasks by status or due date

  • Answered by AI
  • Q6. Closure and hoisting

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of javascript and react is. Enough to get u job here

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nt ... read more
asked in Capgemini
Q2. Pascal's TriangleYou are given an integer N. Your task is to retu ... read more
Q3. K Largest Elements You are given with an integer k and an array o ... read more
asked in GlobalLogic
Q4. System Design QuestionCreate a simple shopping application. They ... read more
asked in Info Edge
Q5. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the ... read more

Interview questions from similar companies

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

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Print the nodes of a n-ary tree in an arc wise manner as seen from the outside.
  • Ans. 

    Print nodes of n-ary tree in arc wise manner from outside

    • Traverse the tree level by level from outside to inside

    • Use a queue to keep track of nodes at each level

    • Print the nodes at each level in a clockwise or anticlockwise manner

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Uber Senior Software Engineer interview:
  • n-ary tree

Skills evaluated in this interview

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

I applied via Instahyre and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

String and DP questions

Round 2 - Technical 

(1 Question)

  • Q1. Design BookMyShow
Round 3 - Technical 

(1 Question)

  • Q1. Past challenging projects
  • Ans. 

    Developed a real-time data processing system for a high-traffic e-commerce platform.

    • Implemented distributed computing using Apache Kafka and Spark.

    • Optimized database queries to handle large volumes of data.

    • Designed fault-tolerant architecture to ensure system reliability.

    • Collaborated with cross-functional teams to meet project deadlines.

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is react, and why you chose it
  • Ans. 

    React is a JavaScript library for building user interfaces, known for its efficiency and flexibility.

    • React allows for the creation of reusable UI components, making development faster and more efficient.

    • It uses a virtual DOM for optimal performance by only updating the necessary components when data changes.

    • React's component-based architecture promotes code reusability and maintainability.

    • It has a large and active comm...

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Coding and behavioral questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design hld interview asked question
  • Q2. Design lld asked question
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 2023. There were 2 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Given array of integer create subarray with sum = 0
  • Ans. 

    Create subarrays with sum = 0 from given array of integers.

    • Iterate through the array and keep track of the running sum.

    • Store the running sum in a hashmap and check if the current sum - any previous sum equals 0.

    • If yes, then the subarray between those two indices has a sum of 0.

  • Answered by AI
  • Q2. Left view of binary tree
  • Ans. 

    The left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree in a level order manner and keep track of the first node at each level.

    • Use a queue to store nodes at each level and update the left view nodes accordingly.

    • Example: For a binary tree with root node 1, left child 2, and right child 3, the left view would be [1, 2].

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Easy DSA questions on string manipulation
Round 2 - Technical 

(1 Question)

  • Q1. Build an MVC architecture
  • Ans. 

    MVC architecture separates an application into Model, View, and Controller components for better organization and scalability.

    • Model represents the data and business logic

    • View displays the data to the user

    • Controller handles user input and updates the model

    • Example: Model - User class with properties like name, email; View - HTML template to display user info; Controller - User controller to handle user actions

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

(2 Questions)

  • Q1. Discussed previous job experiences.
  • Q2. Was asked if I am comfortable working on weekends/late nights during emergencies.
Round 4 - HR 

(1 Question)

  • Q1. What are your strengths/weaknesses.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Simple ds algo and knowledge of nodejs

Round 3 - HR 

(2 Questions)

  • Q1. Simple question about your previous job
  • Q2. Previous salary and previous work exp

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of ds algo and node js along with react and nextjs

PolicyBazaar Interview FAQs

How many rounds are there in PolicyBazaar Senior Software Engineer interview?
PolicyBazaar interview process usually has 1-2 rounds. The most common rounds in the PolicyBazaar interview process are Technical and One-on-one Round.
What are the top questions asked in PolicyBazaar Senior Software Engineer interview?

Some of the top questions asked at the PolicyBazaar Senior Software Engineer interview -

  1. What is polyfill, implemented one two polyf...read more
  2. What are Microservi...read more
  3. What are Rest AP...read more

Tell us how to improve this page.

Join PolicyBazaar Let's find you the Best Insurance
PolicyBazaar Senior Software Engineer Salary
based on 35 salaries
₹8.5 L/yr - ₹30 L/yr
25% more than the average Senior Software Engineer Salary in India
View more details

PolicyBazaar Senior Software Engineer Reviews and Ratings

based on 3 reviews

1.1/5

Rating in categories

2.8

Skill development

1.2

Work-life balance

1.2

Salary

2.3

Job security

1.2

Company culture

2.3

Promotions

1.1

Work satisfaction

Explore 3 Reviews and Ratings
Sales Executive
1.2k salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

Associate Sales Consultant
1.2k salaries
unlock blur

₹1.5 L/yr - ₹5.5 L/yr

Relationship Manager
863 salaries
unlock blur

₹1.6 L/yr - ₹6 L/yr

Team Lead
362 salaries
unlock blur

₹3.1 L/yr - ₹12.2 L/yr

Sales Associate
357 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Explore more salaries
Compare PolicyBazaar with

Coverfox

4.3
Compare

BankBazaar

3.4
Compare

Paytm Money

3.3
Compare

Easypolicy.com

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