Premium Employer

i

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

Kroll Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 127 Reviews

Filter interviews by

Kroll Senior Data Engineer Interview Questions and Answers

Updated 4 Apr 2024

Kroll Senior Data Engineer Interview Experiences

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Project related discussions
  • Q2. Meduim level SQl and DSA
Round 2 - One-on-one 

(2 Questions)

  • Q1. This was data modelling round
  • Q2. Design a uber data model
  • Ans. 

    Uber data model design for efficient storage and retrieval of ride-related information.

    • Create tables for users, drivers, rides, payments, and ratings

    • Include attributes like user_id, driver_id, ride_id, payment_id, rating_id, timestamp, location, fare, etc.

    • Establish relationships between tables using foreign keys

    • Implement indexing for faster query performance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQl, Python and data modeling

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Three sections are there 1) Aptitude Test 2) SQL 3) DSA

Round 2 - Technical 

(2 Questions)

  • Q1. What is DSA , sorting , difference between array and linked list
  • Ans. 

    DSA stands for Data Structures and Algorithms. Sorting is the process of arranging data in a particular order. Array is a data structure that stores elements of the same data type in contiguous memory locations, while linked list is a data structure that stores elements in nodes with pointers to the next node.

    • DSA stands for Data Structures and Algorithms

    • Sorting is the process of arranging data in a particular order

    • Arra...

  • Answered by AI
  • Q2. Written a SQL query
Round 3 - HR 

(2 Questions)

  • Q1. Coding question like add numbers
  • Q2. Experience on your project
  • Ans. 

    I have experience working on various data analysis projects, including market research, customer segmentation, and predictive modeling.

    • Developed predictive models to forecast customer behavior and optimize marketing strategies

    • Conducted market research to identify trends and opportunities for growth

    • Performed customer segmentation analysis to target specific demographics with personalized marketing campaigns

  • Answered by AI

Skills evaluated in this interview

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

I applied via Indeed and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Basics of power bi and sql
  • Q2. What are joins and types of join
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table

    • FULL JOIN...

  • Answered by AI
  • Q3. How to add date table in power bi
  • Ans. 

    To add a date table in Power BI, you can create a new table with a list of dates and relationships with other tables.

    • Create a new table in Power BI with a list of dates

    • Add columns for day, month, year, etc. for additional analysis

    • Establish relationships between the date table and other tables in the data model

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Sql scenario based question on joins
  • Q2. Window function questions
  • Q3. Performance tuning
  • Q4. Power bi dax question

Skills evaluated in this interview

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

(1 Question)

  • Q1. Asked about SAAS, JS questions
Round 2 - Coding Test 

Given a case study need to solve in 2 days

Round 3 - One-on-one 

(1 Question)

  • Q1. Explain the case study. Palindrome function in any prog language
  • Ans. 

    A palindrome function checks if a given string reads the same forwards and backwards.

    • A palindrome function typically involves reversing the input string and comparing it to the original string.

    • Examples: 'racecar' is a palindrome, 'hello' is not a palindrome.

    • Common languages for implementing a palindrome function include Python, Java, and C++.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. General Guidelines
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. How good are you with numbers
Round 2 - Technical 

(1 Question)

  • Q1. Vlookup, pivot table, sumif, average, graphs
Round 3 - Behavioral 

(1 Question)

  • Q1. Do you know the role and responsibility of this position
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. .net questions, web api
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 4 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 - Aptitude Test 

Mix of coding, aptitude, java, javascript

Round 3 - Technical 

(2 Questions)

  • Q1. Resume based questions on project
  • Q2. Basic SQL, Java streams questions
Round 4 - Technical 

(5 Questions)

  • Q1. Project related questions
  • Q2. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where the pair will be stored.

    • If multiple keys hash to the same index, a collision occurs and the pairs are stored in a linked list at that index.

    • To...

  • Answered by AI
  • Q3. Design patterns I've used
  • Ans. 

    I have used design patterns such as Singleton, Factory, and Observer in my projects.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and

  • Answered by AI
  • Q4. Print whole Fibonacci series using recursion.
  • Ans. 

    Print Fibonacci series using recursion

    • Define a recursive function to calculate Fibonacci numbers

    • Base case: return 0 if n is 0, return 1 if n is 1

    • Recursive case: return sum of previous two Fibonacci numbers

    • Print each Fibonacci number in the series

  • Answered by AI
  • Q5. Show my Github projects, and the interviewer didn't even properly looked into the code.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare:
Core java concepts,
Well written resume with proper understanding of every project.
SQL,
Basic coding questions
Design patterns, solid etc.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are services in Drupal?
  • Ans. 

    Services in Drupal are reusable objects that perform specific functions, such as database queries or sending emails.

    • Services are defined in YAML files and can be accessed throughout a Drupal site.

    • They are used to encapsulate reusable functionality and promote code reusability.

    • Examples of services in Drupal include the database service for interacting with the database, the mail service for sending emails, and the logge

  • Answered by AI
  • Q2. How to debug in Drupal?
  • Ans. 

    Debugging in Drupal involves using tools like Devel module, watchdog(), and error logs.

    • Enable Devel module for debugging information

    • Use watchdog() function to log messages to Drupal's watchdog log

    • Check error logs for PHP errors and warnings

    • Use dpm() function to print variables for debugging purposes

  • 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 Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Expected salary

Kroll Interview FAQs

How many rounds are there in Kroll Senior Data Engineer interview?
Kroll interview process usually has 1 rounds. The most common rounds in the Kroll interview process are Technical.
How to prepare for Kroll Senior Data Engineer 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 Kroll. The most common topics and skills that interviewers at Kroll expect are Application Software, Backend, Computer science, Debugging and Distribution System.

Tell us how to improve this page.

People are getting interviews through

based on 1 Kroll interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Join Kroll Join a global team of more than 6,500 experts.

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.8k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 787 Interviews
ZS Interview Questions
3.4
 • 472 Interviews
BCG Interview Questions
3.8
 • 193 Interviews
Citco Interview Questions
3.2
 • 132 Interviews
Bain & Company Interview Questions
3.8
 • 102 Interviews
Blackrock Interview Questions
3.8
 • 101 Interviews
View all
Analyst
69 salaries
unlock blur

₹4 L/yr - ₹14 L/yr

Data Executive
33 salaries
unlock blur

₹2.2 L/yr - ₹3.5 L/yr

Consultant
27 salaries
unlock blur

₹10 L/yr - ₹20 L/yr

Financial Analyst
24 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Senior Associate
24 salaries
unlock blur

₹7 L/yr - ₹19 L/yr

Explore more salaries
Compare Kroll with

Deloitte

3.8
Compare

PwC

3.4
Compare

Ernst & Young

3.5
Compare

KPMG India

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview