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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

PolicyBazaar Senior Database Developer Interview Questions and Answers

Updated 25 Jan 2022

17 Interview questions

A Senior Database Developer was asked
Q. How do you handle events and errors in SSIS?
Ans. 

Event and error handling are crucial in SSIS to ensure smooth execution and proper handling of exceptions.

  • Event handling involves capturing and responding to events that occur during package execution.

  • Error handling involves identifying and handling errors that occur during package execution.

  • SSIS provides various built-in event handlers and error handlers, such as OnError, OnTaskFailed, OnPostExecute, etc.

  • Custom e...

A Senior Database Developer was asked
Q. What are the different types of transformations in SSIS?
Ans. 

Transformations in SSIS are used to modify data during ETL process.

  • Data Conversion Transformation

  • Conditional Split Transformation

  • Aggregate Transformation

  • Sort Transformation

  • Merge Transformation

  • Lookup Transformation

  • Derived Column Transformation

  • Multicast Transformation

  • Union All Transformation

  • Pivot Transformation

  • Unpivot Transformation

Senior Database Developer Interview Questions Asked at Other Companies

Q1. What is the difference between Merge and Union All transformation ... read more
Q2. Can you discuss the numeric data types available in SQL Server?
Q3. What is the difference between the Snowflake schema and the Star ... read more
Q4. Between Star Flake and Snow Flake schemas, which one has better p ... read more
Q5. What is indexing in the context of databases?
A Senior Database Developer was asked
Q. What is the difference between merge and union?
Ans. 

Merge combines two tables based on a specified condition, while union combines two tables with the same structure.

  • Merge is used to update or insert data into a target table based on a join condition with a source table.

  • Union is used to combine the results of two SELECT statements into a single result set.

  • Merge requires a join condition and can perform insert, update, and delete operations.

  • Union requires that both ...

A Senior Database Developer was asked
Q. Between Star Flake and Snow Flake schemas, which one has better performance?
Ans. 

Snow Flake Schema has better performance than Star Flake Schema.

  • Snow Flake Schema has normalized tables which reduces data redundancy and improves query performance.

  • Star Flake Schema has denormalized tables which can lead to data redundancy and slower query performance.

  • Snow Flake Schema is better suited for complex queries with multiple joins.

  • Star Flake Schema is better suited for simple queries with fewer joins.

  • P...

A Senior Database Developer was asked
Q. What is Normalization?
Ans. 

Normalization is the process of organizing data in a database to reduce redundancy and dependency.

  • It involves breaking down a table into smaller tables and defining relationships between them.

  • Normalization helps to eliminate data inconsistencies and anomalies.

  • There are different levels of normalization, with each level having specific rules to follow.

  • For example, first normal form (1NF) requires that each column i...

A Senior Database Developer was asked
Q. 2. What is Bookmarking, Row id, Key Index, covering index?
Ans. 

Explanation of database terms: Bookmarking, Row id, Key Index, covering index.

  • Bookmarking is a feature that allows users to save the location of a record in a database for future reference.

  • Row id is a unique identifier assigned to each row in a table.

  • Key Index is an index created on a column or set of columns that uniquely identifies each row in a table.

  • Covering index is an index that contains all the columns requ...

A Senior Database Developer was asked
Q. 9.What is Temp Variables, Temp Tables, CTE
Ans. 

Temp variables, tables, and CTE are used in SQL to store temporary data during query execution.

  • Temp variables are used to store temporary data within a query.

  • Temp tables are used to store temporary data that can be accessed by multiple queries.

  • CTE (Common Table Expression) is a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

  • Temp variables and tables are created usi...

Are these interview questions helpful?
A Senior Database Developer was asked
Q. 5.Containers in SSIS
Ans. 

Containers in SSIS are logical groupings of tasks and containers that define the workflow of an SSIS package.

  • Containers can be used to group related tasks together and provide a clear visual representation of the package workflow.

  • There are several types of containers in SSIS, including Sequence Containers, For Loop Containers, and Foreach Loop Containers.

  • Sequence Containers are used to group tasks together and def...

A Senior Database Developer was asked
Q. 3.Details of all types of Data Types
Ans. 

Data types are classifications of data items that determine the nature of operations that can be performed on them.

  • Numeric data types: int, float, double, decimal

  • Character and string data types: char, varchar, text

  • Date and time data types: date, time, datetime

  • Boolean data type: bool

  • Binary data types: binary, varbinary, image

A Senior Database Developer was asked
Q. Can you explain the concept of Containers in SSIS?
Ans. 

Containers in SSIS are logical grouping of tasks and components that help in organizing and managing workflows.

  • Containers help in organizing and managing workflows in SSIS packages

  • They can be used to group related tasks together for better readability and maintenance

  • Examples of containers in SSIS include Sequence Container, For Loop Container, and Foreach Loop Container

PolicyBazaar Senior Database Developer Interview Experiences

2 interviews found

I appeared for an interview in Mar 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions based on DBMS and SQL

  • Q1. What is indexing in the context of databases?
  • Ans. 

    Indexing in databases is a technique used to improve the speed of data retrieval by creating a data structure that allows for quick lookups.

    • Indexes are created on columns in a database table to speed up the retrieval of data.

    • They work similar to the index in a book, allowing the database to quickly find the rows that match a certain value.

    • Examples of indexes include primary keys, unique keys, and composite indexes.

    • With...

  • Answered by AI
  • Q2. Can you discuss the numeric data types available in SQL Server?
  • Ans. 

    SQL Server offers various numeric data types for storing different types of numerical values.

    • SQL Server provides data types like int, bigint, smallint, tinyint for storing whole numbers.

    • Numeric data types like decimal and numeric are used for storing fixed-point numbers.

    • Float and real data types are used for storing floating-point numbers with different precision levels.

    • Money and smallmoney data types are used for stor...

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on DBMS and SSIS.

  • Q1. What is normalization in the context of database management systems?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down data into smaller, more manageable tables

    • It helps in reducing data redundancy by storing data in a structured manner

    • Normalization ensures data integrity by minimizing anomalies such as update, insert, and delete anomalies

    • There are different normal forms like 1NF, 2NF, 3NF, a...

  • Answered by AI
  • Q2. Can you explain the concept of Containers in SSIS?
  • Ans. 

    Containers in SSIS are logical grouping of tasks and components that help in organizing and managing workflows.

    • Containers help in organizing and managing workflows in SSIS packages

    • They can be used to group related tasks together for better readability and maintenance

    • Examples of containers in SSIS include Sequence Container, For Loop Container, and Foreach Loop Container

  • Answered by AI
  • Q3. What are the different row transformations in SSIS?
  • Ans. 

    Different row transformations in SSIS include Conditional Split, Derived Column, Lookup, and Merge.

    • Conditional Split: Routes data rows to different outputs based on specified conditions.

    • Derived Column: Adds new columns or modifies existing columns using expressions.

    • Lookup: Retrieves data from a related table based on a specified key.

    • Merge: Combines data from multiple sources into a single dataset.

  • Answered by AI
  • Q4. What are event handlers in SSIS?
  • Ans. 

    Event handlers in SSIS are workflows that are triggered by specific events during the execution of a package.

    • Event handlers can be used to perform additional tasks or actions based on the success or failure of specific tasks within a package.

    • Common events that can trigger event handlers include OnError, OnPreExecute, OnPostExecute, OnWarning, etc.

    • Event handlers can be configured to send emails, log information, execute...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions based on Data warehousing and SSIS.

  • Q1. What is the difference between the Snowflake schema and the Star schema in data warehousing?
  • Ans. 

    Snowflake schema has normalized dimension tables while Star schema has denormalized dimension tables.

    • Snowflake schema has a centralized fact table connected to multiple dimension tables normalized into sub-dimension tables.

    • Star schema has a denormalized structure with dimension tables directly connected to the fact table.

    • Snowflake schema requires more joins for querying data compared to Star schema.

    • Star schema is easie...

  • Answered by AI
  • Q2. What is the difference between Merge and Union All transformations in SQL?
  • Ans. 

    Merge combines two result sets into one, while Union All combines and includes duplicates.

    • Merge is used to combine two result sets into one, eliminating duplicates.

    • Union All is used to combine two result sets into one, including duplicates.

    • Merge requires the result sets to have the same number of columns and compatible data types.

    • Union All does not require the result sets to have the same number of columns or data type...

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. Eligibility criteriaAbove 7 CGPAPolicyBazaar.com interview preparation:Topics to prepare for the interview - Database, SSIS, Algorithms, System Design, Operating SystemsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

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.

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 Naukri.com and was interviewed in Mar 2021. There were 6 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. 1. What is indexing. some practical questions based on indexing?
  • Q2. 2. What is Bookmarking, Row id, Key Index, covering index?
  • Ans. 

    Explanation of database terms: Bookmarking, Row id, Key Index, covering index.

    • Bookmarking is a feature that allows users to save the location of a record in a database for future reference.

    • Row id is a unique identifier assigned to each row in a table.

    • Key Index is an index created on a column or set of columns that uniquely identifies each row in a table.

    • Covering index is an index that contains all the columns required ...

  • Answered by AI
  • Q3. 3.Details of all types of Data Types
  • Ans. 

    Data types are classifications of data items that determine the nature of operations that can be performed on them.

    • Numeric data types: int, float, double, decimal

    • Character and string data types: char, varchar, text

    • Date and time data types: date, time, datetime

    • Boolean data type: bool

    • Binary data types: binary, varbinary, image

  • Answered by AI
  • Q4. 4. What is Normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and dependency.

    • It involves breaking down a table into smaller tables and defining relationships between them.

    • Normalization helps to eliminate data inconsistencies and anomalies.

    • There are different levels of normalization, with each level having specific rules to follow.

    • For example, first normal form (1NF) requires that each column in a t...

  • Answered by AI
  • Q5. 5.Containers in SSIS
  • Ans. 

    Containers in SSIS are logical groupings of tasks and containers that define the workflow of an SSIS package.

    • Containers can be used to group related tasks together and provide a clear visual representation of the package workflow.

    • There are several types of containers in SSIS, including Sequence Containers, For Loop Containers, and Foreach Loop Containers.

    • Sequence Containers are used to group tasks together and define t...

  • Answered by AI
  • Q6. 6.Types of Transformations in SSIS?
  • Ans. 

    Transformations in SSIS are used to modify data during ETL process.

    • Data Conversion Transformation

    • Conditional Split Transformation

    • Aggregate Transformation

    • Sort Transformation

    • Merge Transformation

    • Lookup Transformation

    • Derived Column Transformation

    • Multicast Transformation

    • Union All Transformation

    • Pivot Transformation

    • Unpivot Transformation

  • Answered by AI
  • Q7. 7.Event Handling and Error Handling in SSIS?
  • Ans. 

    Event and error handling are crucial in SSIS to ensure smooth execution and proper handling of exceptions.

    • Event handling involves capturing and responding to events that occur during package execution.

    • Error handling involves identifying and handling errors that occur during package execution.

    • SSIS provides various built-in event handlers and error handlers, such as OnError, OnTaskFailed, OnPostExecute, etc.

    • Custom event ...

  • Answered by AI
  • Q8. 8.Star Flake and Snow Flake Schema which one's performance is better?
  • Ans. 

    Snow Flake Schema has better performance than Star Flake Schema.

    • Snow Flake Schema has normalized tables which reduces data redundancy and improves query performance.

    • Star Flake Schema has denormalized tables which can lead to data redundancy and slower query performance.

    • Snow Flake Schema is better suited for complex queries with multiple joins.

    • Star Flake Schema is better suited for simple queries with fewer joins.

    • Perfor...

  • Answered by AI
  • Q9. 9.What is Temp Variables, Temp Tables, CTE
  • Ans. 

    Temp variables, tables, and CTE are used in SQL to store temporary data during query execution.

    • Temp variables are used to store temporary data within a query.

    • Temp tables are used to store temporary data that can be accessed by multiple queries.

    • CTE (Common Table Expression) is a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • Temp variables and tables are created using th...

  • Answered by AI
  • Q10. 10. Difference between merge and union?
  • Ans. 

    Merge combines two tables based on a specified condition, while union combines two tables with the same structure.

    • Merge is used to update or insert data into a target table based on a join condition with a source table.

    • Union is used to combine the results of two SELECT statements into a single result set.

    • Merge requires a join condition and can perform insert, update, and delete operations.

    • Union requires that both table...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Look Good. Be Confident, Always wear a watch during Interview. Try to make eye contact even you can't see interviewer on screen

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (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 PolicyBazaar?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

Round duration - 90 minutes
Round difficulty - Easy

This round was held during university hours and consisted of 2 coding questions.

Round 2 - Face to Face 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

Make sure you do no cutting and are clear about the approach you'd be following. 
 

  • Q1. What is the running median of an input stream?
  • Ans. 

    Running median of an input stream is the median value of the numbers seen so far in a continuous stream of data.

    • Maintain two heaps - a max heap for the lower half of the numbers and a min heap for the upper half.

    • Keep the number of elements in the two heaps balanced or differ by at most 1.

    • If the total number of elements is odd, the median is the root of the max heap. If even, it is the average of the roots of the two he...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Electronics & Communication Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in HyderabadEligibility criteria 7 CGPA Amazon interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Java, Object-Oriented Programming System, System Design, Operating System.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Prepare for company-wise interview questions according to the company in which you are applying. Try to write the code yourself and if got stuck in between then take help from the internet. I recommend you Codezen of Coding Ninjas for practicing Data Structures and Algorithms based questions.

Application resume tips for other job seekers

Be sure 100% of what you write in your resume and prepare for that before the interview what is written on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Two coding questions were given in the first round to be solved in 60 minutes.

  • Q1. 

    Rearrange Array Elements Problem Statement

    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...

  • Ans. 

    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.

  • Answered by AI
  • Q2. 

    Print Nodes at Distance K from a Given Node

    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...

  • Ans. 

    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

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions based on DSA, DBMS, Computer Networking and project based questions.

  • Q1. 

    Triangle of Numbers Pattern

    Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.

    Example:

    Input:
    N = 4
    Output:
       1
    232
    34545
    4567654

    Explanation:

    The pat...

  • Ans. 

    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

  • Answered by AI
  • Q2. What is the difference between a web server and an application server?
  • Ans. 

    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...

  • Answered by AI
  • Q3. How does the internet work?
  • Ans. 

    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...

  • Answered by AI
  • Q4. Write a SQL query to find the nth highest salary.
  • Ans. 

    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

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Chitkara University. Eligibility criteriaAbove 7 CGPAInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

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.

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 appeared for an interview before Dec 2020.

Round 1 - Face to Face 

(2 Questions)

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.

  • Q1. 

    Binary Tree Traversals Problem Statement

    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...

  • Ans. 

    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 ...

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Ans. 

    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

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round basically tested some concepts from Data Structures and File Manipulation .

  • Q1. 

    Intersection of Two Arrays Problem Statement

    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...

  • Ans. 

    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.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABig Basket interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

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.

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 Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: They selected 10 students from our college from CS and IT .They are looking for guys with extra projects done during college .App development will be a bonus ,contribution to open source and competitive programming will help for shortlisting.
Some of my friends had research papers published and they too got selected.

Round: Test
Experience: Have to write code snippet for 4 questions in 45 minutes
1.Difference between hour hand and minute hand
2.longest palindromic sub string.
3.Product Array puzzle
4.Some question related to matrix

Tips: All question were from geeksforgeeks
So practice it well ..u will make through it

Round: Test
Experience: Long Discussion on projects
They will scan each and every line of your Resume ,so dont write bullshits..
I wrote about interest in AI and got screwed..Discussion on college projects and final year project.
Then asked me to design a snake and ladder game OOPS concepts
Told me to find sum of all elements of sub matrix..(hint pre-processing the matrix)
Asked me about sessions and cookies
Gave a query to write on database indexing (dont remember exactly)
Asked me the code of the difference between hour hand and minute hand and extended it wid the second hand
Asked me as how to implement a dictionary
asked about TRIES ,CODE SNIPPET ON THE SHARED DOCS
One of my friend was asked to implement (set) of STL
Tips: The interviewer was cool guy..helped me a lot always made me comfortable.Interact with them as much as possible

Round: Test
Experience: Wid the CTO of the company .
Started wid the projects again .ACID properties,Database transactions,Concurrency Control
Optimization in database.
Then he asked me to code a function
Given a hash function applied on letters of English words ,un-hash it.Took me 45 minutes to reach the solution ,he helped me a lot.
Asked me to write the code for diameter of a binary tree
Asked me write the code for Boolean Matrix
One of my friend was asked to a question in which there was a bug in a m*n matrix and we have to find the bug(hint dfs or bfs)
Tips: keep calm ,,just keep talking ad he will help u a lot...

Round: HR
Experience: This was the toughest round for me...I had cleared all the rounds but they rejected me in the HR round ,,,dont know where I screwed..Learn every thing of Zomato..
They offered me an internship and thereafter they would look to give a PPO ...!!!lets see what happens

Skills: Coding Skills And Knowledge On Data Structures
Duration: 3
College Name: NIT Srinagar

I applied via Referral

Interview Questionnaire 

6 Questions

  • Q1. Design the most optimal data structures for an LRU cache
  • Q2. Convert a sorted array to balanced binary search tree
  • Ans. 

    Convert a sorted array to balanced binary search tree

    • Find the middle element of the array and make it the root of the tree

    • Recursively construct the left subtree using the left half of the array

    • Recursively construct the right subtree using the right half of the array

    • Repeat until all elements are added to the tree

  • Answered by AI
  • Q3. Reverse a singly linked list in groups of k in­place
  • Ans. 

    Reverse a singly linked list in groups of k in­place

    • Divide the linked list into groups of k nodes

    • Reverse each group of k nodes

    • Connect the reversed groups to form the final linked list

  • Answered by AI
  • Q4. Design the most optimal data structure for storing a word and its meaning. Note that a word could have multiple meanings
  • Q5. Write a recursive routine to calculate a ^ n
  • Ans. 

    A recursive routine to calculate a ^ n

    • The base case is when n is 0, in which case the result is 1

    • For any other value of n, the result is a multiplied by the result of a^(n-1)

    • The recursive function should call itself with a^(n-1) as the new input

  • Answered by AI
  • Q6. Design the most optimal data structure for a never ending stream of numbers. It should be optimized for insertion, deletion, searching, finding kth largest and kth smallest
  • Ans. 

    Design optimal data structure for never-ending stream of numbers for insertion, deletion, searching, kth largest and kth smallest.

    • Use a balanced binary search tree like AVL or Red-Black tree for efficient insertion, deletion, and searching.

    • Maintain two heaps, one for kth largest and one for kth smallest.

    • For finding kth largest, use a min heap of size k and for kth smallest, use a max heap of size k.

    • Alternatively, use a...

  • Answered by AI

Interview Preparation Tips

Skills:
College Name: NA

Skills evaluated in this interview

Are these interview questions helpful?

Interview Preparation Tips

Round: Test
Duration: 2 hours
Total Questions: 22

College Name: Jaypee University Of Information Technology, Solan

I appeared for an interview before Sep 2016.

Interview Questionnaire 

5 Questions

  • Q1. Search an element in sorted rotated array.
  • Ans. 

    Search an element in sorted rotated array.

    • Use binary search to find the pivot point where the array is rotated.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle the cases where the target element is at the pivot point or not present in the array.

  • Answered by AI
  • Q2. Kth largest element in an array.
  • Ans. 

    Find the Kth largest element in an array.

    • Sort the array in descending order and return the element at index K-1.

    • Use a max heap to find the Kth largest element efficiently.

    • Implement a quickselect algorithm to find the Kth largest element in linear time.

  • Answered by AI
  • Q3. Reverse a linked list in group of n element.
  • Ans. 

    Reverse a linked list in groups of n elements.

    • Divide the linked list into groups of n elements.

    • Reverse each group individually.

    • Connect the reversed groups to form the final linked list.

    • Handle cases where the number of elements is not a multiple of n.

    • Example: 1->2->3->4->5->6->7->8, n=3 -> 3->2->1->6->5->4->8->7

  • Answered by AI
  • Q4. Median of two sorted array.
  • Ans. 

    Find the median of two sorted arrays.

    • Merge the two arrays into one sorted array and find the median.

    • Use binary search to find the median in O(log(min(m, n))) time complexity.

    • Handle edge cases like empty arrays or arrays of different lengths.

  • Answered by AI
  • Q5. It was a DP question. In a matrix, I have to count number of paths from (0, 0) to (m, n) while crossing through some indexes were not allowed.
  • Ans. 

    Count number of paths from (0, 0) to (m, n) in a matrix while crossing through some indexes were not allowed.

    • Use dynamic programming to solve the problem

    • Create a 2D array to store the number of paths

    • Traverse the matrix and update the array based on the allowed paths

    • Return the value at the last index of the array

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Interviewer was mainly focused on problem solving skill.

College Name: KIIT University

Skills evaluated in this interview

I appeared for an interview in Aug 2017.

Interview Preparation Tips

Round: Test
Experience: Platform: Hackerearth
20 MCQs with negative marking, topics included OS, DS-Algo, Networking.
2 Programming Problems.
Duration: 1 hour 30 minutes
Total Questions: 22

Round: Technical Interview
Experience: 3 DS-Algo problems were asked. Made to written codes on paper.

Round: Technical Interview
Experience: 2 DS-Algo problems were asked. Made to written codes on paper.
Few OS questions were also asked.

Skills: Data Structures and Algorithms, Operating Systems
College Name: IIT (BHU)

PolicyBazaar Interview FAQs

What are the top questions asked in PolicyBazaar Senior Database Developer interview?

Some of the top questions asked at the PolicyBazaar Senior Database Developer interview -

  1. 8.Star Flake and Snow Flake Schema which one's performance is bett...read more
  2. 2. What is Bookmarking, Row id, Key Index, covering ind...read more
  3. 9.What is Temp Variables, Temp Tables, ...read more

Tell us how to improve this page.

Join PolicyBazaar Let's find you the Best Insurance

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
Flipkart Interview Questions
3.9
 • 1.5k Interviews
BigBasket Interview Questions
3.9
 • 399 Interviews
CARS24 Interview Questions
3.5
 • 361 Interviews
Lenskart Interview Questions
3.2
 • 361 Interviews
JustDial Interview Questions
3.5
 • 358 Interviews
Info Edge Interview Questions
3.9
 • 349 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
Zepto Interview Questions
3.5
 • 296 Interviews
View all

PolicyBazaar Senior Database Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Sales Executive
1.3k salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

Associate Sales Consultant
1.3k salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Relationship Manager
1k salaries
unlock blur

₹2.3 L/yr - ₹6 L/yr

Team Lead
429 salaries
unlock blur

₹4.7 L/yr - ₹9.6 L/yr

Sales Associate
424 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Explore more salaries
Compare PolicyBazaar with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Indiamart Intermesh

3.6
Compare

BigBasket

3.9
Compare
write
Share an Interview