Upload Button Icon Add office photos
Engaged Employer

i

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

Dream11 Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Dream11 Analytics Manager Interview Questions and Answers

Updated 8 Aug 2024

Dream11 Analytics Manager Interview Experiences

1 interview found

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

(1 Question)

  • Q1. SQL based questions

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Find the type of data structure based on the operation performed. Given the order of insertion and deletion. Find whether this operation corresponds to stack/queue /priority queue
  • Ans. 

    Identify data structure based on insertion and deletion order

    • If insertion and deletion follow LIFO order, it is a stack

    • If insertion follows FIFO order and deletion follows LIFO order, it is a queue

    • If insertion and deletion follow priority order, it is a priority queue

  • Answered by AI
  • Q2. Find maximum element in an array in less dhan O(N)
  • Ans. 

    Find maximum element in an array in less than O(N)

    • Use divide and conquer approach

    • Compare maximum of left and right subarrays

    • Recursively find maximum element

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in data structures

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions of related role.
Round 2 - Technical 

(1 Question)

  • Q1. Deeper technology-related questions and simple coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Waste of time!!!
They took 2 rounds within 2 weeks, all goes well. after that HR confirms that you cleared the round and someone will call you for a final discussion. Post that they never reply. and when you call back to HR every time he says "I will check and let you know" but never ever did it for months.
Don't waste our time if you are not serious about hiring.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Coding questions was leecode replace 3 concurrent character in string until there is none
  • Q2. You can google the answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. Here also leetcode easy
  • Q2. Easily solvable

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join this company they, will not last long as they business model they working on of flawed, since chatgpt came they know it vary well.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Coding question leetcode medium
Round 2 - One-on-one 

(2 Questions)

  • Q1. Coding question
  • Q2. Leetcode medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Bad , bad,bad company, hire fire, micromanagment.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

30 mins test on leetcode

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

Round 1 - Coding Test 

They given 2 program to to 1-2 hour

Round 2 - One-on-one 

(1 Question)

  • Q1. Ask basic programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Uplers is good company, preparation on coding skills and some besic technical knowledge required
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Medium level questions with a senior engineer

Round 2 - Aptitude Test 

(1 Question)

  • Q1. Confidential test. Cannot give details.
Round 3 - Coding Test 

Medium level questions

Round 4 - Coding Test 

Manager round with technical and culture fit

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

I applied via Recruitment Consulltant and was interviewed before Nov 2022. 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 - Coding Test 

A set questions where you would be asked the possible output of codes give as an MCQ
3 coding questions : easy medium and hard

Round 3 - Technical 

(1 Question)

  • Q1. Based on the role you are going to be hired for
Round 4 - HR 

(1 Question)

  • Q1. Mostly a cultural fit check and few questions to know more about the candidate

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the basics and present yourself confidently

Interview Questionnaire 

8 Questions

  • Q1. Given a balance and 100 coins;out of which,one is heavier. Find minimum number of weighing required to find out heavier coin?
  • Ans. 

    Find minimum number of weighings required to find the heavier coin out of 100 coins with a balance.

    • Divide the coins into 3 groups of 33 each and weigh 2 groups against each other.

    • If one group is heavier, divide it into 3 groups of 11 each and weigh 2 groups against each other.

    • Repeat the process until the heavier coin is found.

    • Minimum number of weighings required is 4.

  • Answered by AI
  • Q2. Questions on Graph like DFS and BFS traversal
  • Q3. Explain Prims and Kruskal’s algorithms
  • Ans. 

    Prims and Kruskal's algorithms are used to find the minimum spanning tree in a graph.

    • Prims algorithm starts with a single vertex and adds the minimum weight edge to the tree until all vertices are included.

    • Kruskal's algorithm starts with all vertices as separate trees and merges them by adding the minimum weight edge until all vertices are included.

    • Both algorithms have a time complexity of O(E log V) where E is the num...

  • Answered by AI
  • Q4. A graph was shown and asked to form Minimum Spanning Tree using above two algorithms. (Also asked if I can code it)
  • Q5. Delete nodes in a linked list which have greater value on right side
  • Ans. 

    Delete nodes in a linked list which have greater value on right side

    • Traverse the linked list and compare each node with its right side node

    • If the current node's value is less than its right side node, delete the current node

    • Repeat the process until the end of the linked list is reached

  • Answered by AI
  • Q6. Write code for reversing the linked list
  • Ans. 

    Code for reversing a linked list

    • Create a new empty linked list

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Return the new list

  • Answered by AI
  • Q7. Difference between Methods and Constructors.(At least five)
  • Ans. 

    Methods are functions that perform a specific task, while constructors are special methods that initialize objects.

    • Constructors have the same name as the class they belong to.

    • Constructors are called automatically when an object is created.

    • Constructors can be overloaded with different parameters.

    • Methods can be called multiple times with different arguments.

    • Methods can have a return type, while constructors do not.

  • Answered by AI
  • Q8. Long discussion on Deadlock(necessary conditions), its prevention and avoidance etc, Bankers Algorithm

Interview Preparation Tips

Round: Test
Experience: Coding Platform : Hackerrank(C/C++/Java)
1) Check for balanced parenthesis in an expression.
2) Count all possible paths from top left to bottom right of a MxN matrix. (from each cell you can move only to right or down)
3) Given an array of size n and its elements, you have to include k elements such that the difference between the highest and lowest number in these k elements is minimum.
4) Find number of pair in a given array which is equal to given sum.
Duration: 120 minutes
Total Questions: 4

Round: Technical Interview
Experience: At the start of interview I was asked to Rate myself(out of 10) in Aptitude, Puzzle and then for C++.
For both I rated myself closer to 8.




Round: TECHNICAL AND HR
Experience: Icebreaker question- Tell me about yourself.
1. A question on tree Data structure.
2. I was asked about my Project work in college which was on Operating System. Detailed explanation why and how I picked this project. Who were the group members, how was the group formed, how much was the involvement of college faculty? What is its use in future? What was my role in the project?
The interviewer pointed out some flaw in algorithms used in project. Basically he asked me to think of Data Structures through which insertion can be done in O(1) as well as deletion and retrieval in O(1)…like the implementation of LRU cache algorithm.
The process took 40 minutes.
3. Discussion on second project which was on knn algorithm.
4. Asked me about tiny Url or Url shortener. Implement it.
Tips: The interviews were really thought provoking and the interviewers were helpful and friendly. It felt like solving problems as a team and not at all like a test. The interviewers were quite receptive to our questions and patient.

Skills: Object Oriented Programming (OOP) Basics, Puzzle Solving Capability, Operating System Basics, Algorithm, Data Structures
College Name: NIT Bhopal

Skills evaluated in this interview

Dream11 Interview FAQs

How many rounds are there in Dream11 Analytics Manager interview?
Dream11 interview process usually has 1 rounds. The most common rounds in the Dream11 interview process are Technical.
How to prepare for Dream11 Analytics Manager 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 Dream11. The most common topics and skills that interviewers at Dream11 expect are Analytics, Android, Machine Learning, MongoDB and MySQL.

Tell us how to improve this page.

Dream11 Analytics Manager Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

MagicBricks Interview Questions
4.4
 • 182 Interviews
Tracxn Interview Questions
3.2
 • 101 Interviews
Zolo Interview Questions
3.4
 • 51 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Carwale Interview Questions
3.5
 • 41 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Impact Guru Interview Questions
3.7
 • 39 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
View all
Dream11 Analytics Manager Salary
based on 7 salaries
₹25 L/yr - ₹52 L/yr
50% more than the average Analytics Manager Salary in India
View more details
Software Development Engineer II
46 salaries
unlock blur

₹23 L/yr - ₹60 L/yr

Software Developer
31 salaries
unlock blur

₹19 L/yr - ₹49.8 L/yr

Sde1
29 salaries
unlock blur

₹10.8 L/yr - ₹31 L/yr

Product Manager
24 salaries
unlock blur

₹26 L/yr - ₹45 L/yr

Software Development Engineer
21 salaries
unlock blur

₹20 L/yr - ₹54 L/yr

Explore more salaries
Compare Dream11 with

Uplers

4.0
Compare

Impact Guru

3.7
Compare

Tracxn

3.2
Compare

MagicBricks

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