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
3.8

based on 99 Reviews

Filter interviews by

Dream11 Interview Questions, Process, and Tips

Updated 5 Jan 2025

Top Dream11 Interview Questions and Answers

View all 13 questions

Dream11 Interview Experiences

Popular Designations

37 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Three coding online assessments - screening round.

Round 2 - Coding Test 

Two to three coding questions based on dynamic programming.

Round 3 - Technical 

(1 Question)

  • Q1. Resume based and computer network
Round 4 - HR 

(1 Question)

  • Q1. Simple hr question

Interview Preparation Tips

Interview preparation tips for other job seekers - If clear coding is improved, the chances of being selected will increase.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Was asked everything related to the resume. Database skillsets were grilled a lot.
Round 2 - Coding Test 

Design an in-memory queue. Something like Kafka. 1 hr to solve for the same. Need to build producers, consumers and topics. Each message can be of any type, so use generics. Make sure to handle all edge cases like null checks. The code should be functional and runnable by 1 hr.

My friend got something like the Redis cache implementation with get, put and expire functionalities. They had asked him to keep code extensible enough to handle LRU and LFU expiry which was the major challenge. So, can vary based on interviewer too.

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

3 coding questions with around 15 mcqs on oops and programming

Round 2 - Coding Test 

Offline coding test 4 easy to medium dsa questions

Round 3 - HR 

(2 Questions)

  • Q1. 100 coins and 5 thieves puzzle
  • Q2. Behavioural questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare puzzles well !! along with dsa and your resume

Software Development Engineer 1 Interview Questions asked at other Companies

Q1. 4. Design a system for making table reservations at a restaurant.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Nth Greatest Element III (Leetcode)
  • Ans. 

    Find the Nth greatest element in an array without sorting

    • Use a priority queue to keep track of the N greatest elements

    • Iterate through the array and add elements to the priority queue

    • Return the top element from the priority queue as the Nth greatest element

  • Answered by AI
  • Q2. Heater Problem (Leetcode)
  • Ans. 

    Heater Problem - Find minimum radius to cover all houses with heaters

    • Sort the houses and heaters arrays

    • For each house, find the closest heater using binary search

    • Calculate the minimum radius needed to cover all houses

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Dream11 interview questions for popular designations

 Senior Software Engineer

 (3)

 Software Development Engineer II

 (3)

 SDE (Software Development Engineer)

 (2)

 Software Development Engineer 3

 (2)

 Accounts Payable Executive

 (1)

 Analyst

 (1)

 Analytics Manager

 (1)

 Assistant Business Analytics Manager

 (1)

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

Reverse a binary tree

Software Development Engineer 3 Interview Questions asked at other Companies

Q1. What are triggers , where can they be used ? What is a mutating trigger problem , how can it be solved?
View answer (1)

Get interview-ready with Top Dream11 Interview Questions

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

(2 Questions)

  • Q1. Search in 2d matrix
  • Ans. 

    Search for a target value in a 2D matrix efficiently.

    • Use binary search on rows to find the potential row where the target value may exist.

    • Then use binary search on that row to find the target value.

  • Answered by AI
  • Q2. Find quadraplets that sum to target
  • Ans. 

    Find quadraplets in an array that sum up to a target value.

    • Use a nested loop to iterate through all possible combinations of quadraplets.

    • Keep track of the sum of each quadraplet and compare it to the target value.

    • Return the quadraplets that match the target sum.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)

Jobs at Dream11

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA, problem solving

Round 2 - Case Study 

System design interview and prior experience in projects

Round 3 - Culture fit 

(2 Questions)

  • Q1. What was the toughest problem you encountered in your previous assignments ?
  • Q2. Given a choice, what would you have done differently in your previous assignments ?

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Data Scientist interview

user image The Data Monk

posted on 30 Jan 2022

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the different types of testing STLC llifecycle
  • Ans. 

    Different types of testing in STLC lifecycle include unit testing, integration testing, system testing, and acceptance testing.

    • Unit testing: Testing individual units or components of a software application.

    • Integration testing: Testing the integration of different modules or components.

    • System testing: Testing the entire system as a whole.

    • Acceptance testing: Testing to ensure the system meets the requirements and is read

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Same questions Scenarion based questions
Round 3 - Technical 

(1 Question)

  • Q1. Scenario based questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Bar raiser round
Round 5 - HR 

(1 Question)

  • Q1. Culture fit round

Skills evaluated in this interview

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)

SDE Interview Questions & Answers

user image Shreya Botte

posted on 6 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Max profit , dp
  • Q2. Topological sort

SDE Interview Questions asked at other Companies

Q1. Longest Increasing Subsequence Problem Statement Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This subsequence must be in strictly inc... read more
Add answer

Dream11 Interview FAQs

How many rounds are there in Dream11 interview?
Dream11 interview process usually has 1-2 rounds. The most common rounds in the Dream11 interview process are Coding Test, Technical and HR.
How to prepare for Dream11 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 Android, Python, Machine Learning, Commerce and MySQL.
What are the top questions asked in Dream11 interview?

Some of the top questions asked at the Dream11 interview -

  1. Find largest subarray with equal number of 1s and ...read more
  2. Given two integers for that to print the most common ancestor nodes of a binary...read more
  3. What are the different types of testing STLC llifecy...read more
How long is the Dream11 interview process?

The duration of Dream11 interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Dream11 Interview Process

based on 39 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Tracxn Interview Questions
3.2
 • 99 Interviews
MagicBricks Interview Questions
3.3
 • 54 Interviews
InvestoXpert Interview Questions
4.5
 • 51 Interviews
Zolo Interview Questions
3.4
 • 49 Interviews
Carwale Interview Questions
3.5
 • 41 Interviews
Netmeds.com Interview Questions
3.6
 • 41 Interviews
Uplers Interview Questions
4.1
 • 40 Interviews
Impact Guru Interview Questions
4.5
 • 36 Interviews
MyTeam11 Interview Questions
4.8
 • 3 Interviews
View all

Dream11 Reviews and Ratings

based on 99 reviews

3.8/5

Rating in categories

3.4

Skill development

3.3

Work-life balance

4.0

Salary

3.6

Job security

3.5

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 99 Reviews and Ratings
Product Designer - 2

Mumbai

3-6 Yrs

Not Disclosed

Data Engineer

Mumbai

1-3 Yrs

₹ 27-20 LPA

Data Scientist

Mumbai

1-3 Yrs

Not Disclosed

Explore more jobs
Software Development Engineer II
46 salaries
unlock blur

₹23 L/yr - ₹60 L/yr

Software Developer
30 salaries
unlock blur

₹19 L/yr - ₹50 L/yr

Product Manager
26 salaries
unlock blur

₹26 L/yr - ₹45 L/yr

Sde1
26 salaries
unlock blur

₹12 L/yr - ₹35 L/yr

Software Development Engineer
21 salaries
unlock blur

₹20 L/yr - ₹54 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