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 Assistant Business Analytics Manager Interview Questions and Answers for Experienced

Updated 30 Sep 2024

Dream11 Assistant Business Analytics Manager Interview Experiences for Experienced

1 interview found

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

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

Round 1 - Coding Test 

Asked 3 questions based on SQL

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.

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
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
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

30 mins test on leetcode

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 

14 Questions

  • Q1. Make 24 using 8, 8, 3, 3 using + = / * ( ) .
  • Q2. Find all permutations of a given string. (Not in lexicographic order)
  • Ans. 

    Find all permutations of a given string.

    • Use recursion to swap each character with every other character in the string.

    • Repeat the process for each substring.

    • Add the permutation to an array.

  • Answered by AI
  • Q3. Given an array of size 98 and it has natural numbers from 1-100 but 2 numbers are missing. find them
  • Ans. 

    Given an array of size 98 with natural numbers from 1-100 but 2 numbers are missing, find them.

    • Calculate the sum of all numbers from 1-100 using the formula n(n+1)/2

    • Calculate the sum of all numbers in the array

    • Subtract the sum of array from the sum of all numbers to get the sum of missing numbers

    • Find the missing numbers by iterating through the array and checking which numbers are not present

  • Answered by AI
  • Q4. Fnd if a binary tree is bst or not
  • Ans. 

    Check if a binary tree is a binary search tree or not.

    • Traverse the tree in-order and check if the elements are in sorted order.

    • Check if the left child is less than the parent and the right child is greater than the parent.

    • Use recursion to check if all the subtrees are BSTs.

    • Maintain a range for each node and check if the node value is within that range.

  • Answered by AI
  • Q5. Detect and remove cycle in a linked list
  • Ans. 

    Detect and remove cycle in a linked list

    • Use two pointers, one slow and one fast, to detect a cycle

    • Once a cycle is detected, move one pointer to the head and iterate both pointers until they meet again

    • Set the next node of the last node in the cycle to null to remove the cycle

  • Answered by AI
  • Q6. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
  • Ans. 

    Function to check if a string has all lowercase letters appearing at least once without extra space in O(N) time.

    • Create a boolean array of size 26 to keep track of the occurrence of each letter.

    • Iterate through the string and mark the corresponding index in the array as true.

    • Check if all the elements in the array are true and return yes if so.

    • Alternatively, use a bit vector to keep track of the occurrence of each letter

  • Answered by AI
  • Q7. Convert a given number to its hexadecimal form
  • Ans. 

    Convert a number to its hexadecimal form

    • Use the built-in function to convert the number to hexadecimal

    • Alternatively, use the algorithm to convert the number to hexadecimal manually

    • Ensure to handle negative numbers appropriately

  • Answered by AI
  • Q8. Asked me how I rate myself in various subjects (CN , DBMS , OOPS ,OS). I told him that I am comfortable with OS and OOPS. Then he asked : Why multiple inheritance is not supported in JAVA. I told him tha...
  • Q9. Explain priority scheduling (preemptive , non-preemptive). Explain a case when a low priority process will preempt a high priority process
  • Ans. 

    Priority scheduling is a scheduling algorithm where processes are assigned priorities and executed based on their priority level.

    • Preemptive priority scheduling allows a higher priority process to interrupt a lower priority process that is currently running.

    • Non-preemptive priority scheduling allows a higher priority process to wait until the lower priority process finishes executing.

    • A low priority process can preempt a ...

  • Answered by AI
  • Q10. Brief discussion over one of my project
  • Q11. Explain singleton class and write code for it.
  • Ans. 

    Singleton class is a class that can only have one instance at a time.

    • Singleton pattern is used when we need to ensure that only one instance of a class is created and that instance can be accessed globally.

    • The constructor of a singleton class is always private to prevent direct instantiation.

    • A static method is used to access the singleton instance.

    • Example: public class Singleton { private static Singleton instance = ne...

  • Answered by AI
  • Q12. Develop tic-tac-toe game and write code using concepts of OOPS in CPP. (Initially told me to include artificial intelligence also but was later satisfied without it
  • Ans. 

    Develop tic-tac-toe game using OOPS concepts in CPP.

    • Create a class for the game board

    • Create a class for the players

    • Create a class for the game logic

    • Use inheritance and polymorphism for game objects

    • Implement functions for checking win/lose/draw conditions

  • Answered by AI
  • Q13. Normal HR questions
  • Q14. Long discussion over my projects

Interview Preparation Tips

Round: Test
Experience: Attempt at least 2 questions
Duration: 90 minutes
Total Questions: 4

Round: Technical Interview
Experience: The interviewer asked to write the full code for a couple of questions only.
Tips: Prepare puzzles.
Think loudly.
Ask for a hint if stuck.

Round: Technical Interview
Tips: Be honest with your interviewer. ;)

Skill Tips: Must be capable to solve puzzles as well as coding questions with good speed and accuracy.
Skills: Puzzle Solving Capability, Implementation of code using OOPS., Algorithm, Data Structures, Operating System Basics, Object Oriented Programming (OOP) Basics
College Name: NIT Bhopal
Motivation: Carwale currently has around 100-125 employees. So it's a good platform to learn new technology. The salary is also good.

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Online coding session :
Q1). Check for balanced parenthesis in an expression.
Q2). Count all possible paths from top left to bottom right of a M x N matrix.
(From each cell you can move only to right or down).
Q3) Count number of pairs with given sum in an array.
Q4). Print (N-K) values corresponding to min of each K-sized chunk in a given array of size N.

Tips: Lead in this round can benefit you in next rounds, so give your best shot.
Duration: 120 minutes minutes
Total Questions: 4

Round: Technical Interview
Experience: This was about a 30 min session.
He asked me very easy concept based questions.

Q1). Explain your project briefly.
Q2). Explain multiple inheritance
Q3). Why JAVA doesn’t support multiple inheritance.
Q4). Convert a hexadecimal to binary number and vice versa.
Q5). What are balanced BSTs?
Q6). Explain all possible rotations possible in a balanced BST.
Q7). Write INSERT function for a balanced BST.

Tips: Correct explaination matters,time doesn't.Take your time.

Round: Technical Interview
Experience: This was Technical + HR round :

Q1). Detailed discussion on my intern project.
Asked the shortcomings of the project and approaches to resolve them.
Q2). Discussion on minor project (Threaded download accelerator)
Asked about what all different approaches I could have followed in the project and why didn’t I chose them.
Q3). Favorite subject – I replied OS.
Asked few basic questions-
What are threads? How are they different from process? Explain with example.
I don’t remember the other os questions he asked about.
Q4). Implement Twitter.
It wasn’t easy to make him understand the approach. He was kind of satisfied with my approach at the end.
Q5). Discussion on other projects.
.
HR questions followed.

Tips: Be yourself.Don't pretend.
All the best :)

Skill Tips: Have conceptual knowledge of subjects, don't just mug up things.
Interviewers are smart enough to make it out anyway.
Skills: Logical Thinking, Operating System Basics, Algorithm, Database Management, Data Structures, C++, C
College Name: NIT Bhopal
Motivation: Flat hierarchy.
No cabin culture.
Working at startup is always better because you get to learn a lot of things.
Decent salary.

Dream11 Interview FAQs

How many rounds are there in Dream11 Assistant Business Analytics Manager interview for experienced candidates?
Dream11 interview process for experienced candidates usually has 1 rounds. The most common rounds in the Dream11 interview process for experienced candidates are Coding Test.

Tell us how to improve this page.

Dream11 Assistant Business Analytics Manager Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Tracxn Interview Questions
3.1
 • 100 Interviews
InvestoXpert Interview Questions
4.5
 • 62 Interviews
MagicBricks Interview Questions
3.4
 • 57 Interviews
Zolo Interview Questions
3.4
 • 49 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Carwale Interview Questions
3.5
 • 41 Interviews
Uplers Interview Questions
4.1
 • 41 Interviews
Impact Guru Interview Questions
4.4
 • 37 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
View all
Software Development Engineer II
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sde1
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Dream11 with

My11Circle

5.0
Compare

Fantasy Akhada

2.0
Compare

MyTeam11

4.7
Compare

BalleBaazi

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