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 Software Engineer Interview Questions and Answers

Updated 25 Sep 2024

Dream11 Software Engineer Interview Experiences

1 interview found

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

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
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before May 2022.

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 

Basic on PHP and Javascript should be clear
Laravel framework based questions

Round 3 - Coding Test 

Algo, basic Javascript

Round 4 - One-on-one 

(1 Question)

  • Q1. Technical and Fitment round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 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 - Coding Test 

Questions from trees and linkedin

Round 3 - Technical 

(2 Questions)

  • Q1. Question on dsa and on oops
  • Q2. Reverse linked list with multiple approach
  • Ans. 

    Reverse a linked list using multiple approaches.

    • Iterative approach: Use three pointers to reverse the links between nodes.

    • Recursive approach: Recursively reverse the rest of the list and adjust the links.

    • Stack approach: Push all the nodes onto a stack and then pop them to create the reversed list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Free aws d resfg rtrt bert ert treytr ret ert ert tret tre tryr tr rt try tr ytry try tr ytry try try t ty try tr try

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Implement LRU Cache
  • Ans. 

    LRU Cache is a data structure that stores the most recently used items and discards the least recently used items.

    • Use a hash table to store key-value pairs

    • Use a doubly linked list to keep track of the order of items

    • When an item is accessed, move it to the front of the list

    • When the cache is full, remove the least recently used item from the back of the list

    • Lookup and insertion should be O(1) time complexity

  • Answered by AI
  • Q2. Implement 2 stacks in an array
  • Ans. 

    Implement 2 stacks in an array

    • Divide the array into two halves

    • Use top1 and top2 to keep track of top elements of stacks

    • Push and pop elements from respective halves

    • Check for overflow and underflow conditions

  • Answered by AI

Skills evaluated in this interview

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

25 basic aptitude asked from train,time and work

Round 2 - Coding Test 

2 coding questions which was basic and medium questions

Dream11 Interview FAQs

How many rounds are there in Dream11 Software Engineer interview?
Dream11 interview process usually has 1 rounds. The most common rounds in the Dream11 interview process are One-on-one Round.
How to prepare for Dream11 Software 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 Dream11. The most common topics and skills that interviewers at Dream11 expect are Python, Android, Machine Learning, MySQL and RPM.
What are the top questions asked in Dream11 Software Engineer interview?

Some of the top questions asked at the Dream11 Software Engineer interview -

  1. find quadraplets that sum to tar...read more
  2. search in 2d mat...read more

Tell us how to improve this page.

Dream11 Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Dream11 Software Engineer Salary
based on 17 salaries
₹18 L/yr - ₹39 L/yr
235% more than the average Software Engineer Salary in India
View more details

Dream11 Software Engineer Reviews and Ratings

based on 2 reviews

2.8/5

Rating in categories

2.8

Skill development

3.5

Work-life balance

3.5

Salary

5.0

Job security

3.5

Company culture

3.5

Promotions

2.8

Work satisfaction

Explore 2 Reviews and Ratings
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