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 Staff Nurse Interview Questions and Answers

Updated 10 Apr 2023

Dream11 Staff Nurse Interview Experiences

1 interview found

Staff Nurse Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2023

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

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 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 - Video Call 

(2 Questions)

  • Q1. My relative question this interview
  • Q2. My introduction and my skills and my studies

Interview Preparation Tips

Interview preparation tips for other job seekers - Not yiu tips i am a student and a middle class family

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 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.

I was interviewed in Jan 2016.

Interview Questionnaire 

16 Questions

  • Q1. Based on project. What is difference between REST and SOAP? And couple of other questions
  • Q2. Delete nodes in linkedlist which have a greater value on right side?
  • Ans. 

    Delete nodes in linkedlist with greater value on right side

    • Traverse the linked list from right to left

    • Compare each node with the maximum value seen so far

    • If the current node has a greater value, delete it

    • Update the maximum value seen so far

  • Answered by AI
  • Q3. Check if given tree is BST or not?
  • Ans. 

    Check if given tree is BST or not

    • A binary tree is a BST if the value of each node is greater than all the values in its left subtree and less than all the values in its right subtree

    • Perform an in-order traversal of the tree and check if the values are in ascending order

    • Alternatively, for each node, check if its value is within the range defined by its left and right subtrees

  • Answered by AI
  • Q4. One adhoc question on strings?
  • Q5. One adhoc question from the online test itself? Ask me how i approached this problem and ask me to write code and explain?
  • Q6. What is OOP? Describe its properties?
  • Ans. 

    OOP is a programming paradigm that organizes code into objects with properties and behaviors.

    • OOP stands for Object-Oriented Programming.

    • It focuses on creating reusable code by organizing it into objects.

    • Objects have properties (attributes) and behaviors (methods).

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Example: In Java, a class represents an object with its properties and methods.

  • Answered by AI
  • Q7. What is runtime polymorphism and compile time polymorphism? Difference between them?
  • Ans. 

    Runtime polymorphism is when the method to be executed is determined at runtime, while compile-time polymorphism is determined at compile-time.

    • Runtime polymorphism is achieved through method overriding.

    • Compile-time polymorphism is achieved through method overloading.

    • Runtime polymorphism is also known as dynamic polymorphism.

    • Compile-time polymorphism is also known as static polymorphism.

    • Runtime polymorphism is associate...

  • Answered by AI
  • Q8. What are virtual functions?
  • Ans. 

    Virtual functions are functions in a base class that can be overridden by derived classes to provide different implementations.

    • Virtual functions are declared in a base class and can be overridden in derived classes.

    • They allow polymorphism, where a pointer to a base class can invoke different derived class implementations.

    • Virtual functions are resolved at runtime based on the actual object type.

    • They are used to achieve

  • Answered by AI
  • Q9. What is abstract class?
  • Ans. 

    An abstract class is a class that cannot be instantiated and is meant to be subclassed.

    • An abstract class can have both abstract and non-abstract methods.

    • It can provide a common interface for its subclasses.

    • Subclasses of an abstract class must implement all the abstract methods.

    • Abstract classes can have constructors.

    • An abstract class cannot be instantiated directly, but its subclasses can be.

  • Answered by AI
  • Q10. What is inheritance? What are diffence types of inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows code reuse and promotes code organization.

    • There are different types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, hierarchical inheritance, and hybrid inheritance.

    • Single inheritance involves a class inheriting from a single base class.

    • Multipl...

  • Answered by AI
  • Q11. Ask me about my coding experience how i started since i was from non IT Branch?
  • Q12. Print fibonaaci series less than equal to 1000?
  • Ans. 

    Print Fibonacci series less than or equal to 1000.

    • Start with two variables, a and b, initialized to 0 and 1 respectively.

    • Print a and update a to the value of b, and b to the sum of the previous a and b.

    • Repeat until a exceeds 1000.

  • Answered by AI
  • Q13. In the above question calculate sum of only even numbers of fibonaaci series?
  • Ans. 

    The sum of even numbers in the Fibonacci series is calculated.

    • Generate the Fibonacci series up to a given limit

    • Iterate through the series and check if each number is even

    • If the number is even, add it to the sum

    • Return the sum of the even numbers

  • Answered by AI
  • Q14. Optimized the above solution less than O(n). For this you have to think out of the box
  • Q15. What are stacks and its properties?
  • Ans. 

    Stacks are a data structure that follows the Last-In-First-Out (LIFO) principle.

    • Stacks have two main operations: push (adds an element to the top) and pop (removes the top element).

    • Stacks can be implemented using arrays or linked lists.

    • Common applications of stacks include function call stack, undo/redo operations, and expression evaluation.

    • Example: A stack of books, where the last book placed is the first one to be re

  • Answered by AI
  • Q16. Now implement one extra funtion called max() with give the maximum of all elements in the above stack with optimized time and space complexity?
  • Ans. 

    Implement max() function to find the maximum element in a stack with optimized time and space complexity.

    • Use an additional stack to keep track of the maximum element at each step.

    • When pushing an element onto the stack, compare it with the top element of the maximum stack and push the larger one.

    • When popping an element from the stack, also pop the top element from the maximum stack if they are equal.

    • The top element of t...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 4 questions of varying difficulty. Those attempted atleast 2 were selected for the next round.
Q1) Question based on Tower of hanoi problem. I solved it using dynamic programming.
Q2) Check for balanced parenthesis in an expression.
Q3)One adhoc question to calculate the maximum number of people present at a particular time in a hotel.
Q4) One other question based on string algorithms.
two adhoc questions
Tips: Lead in this round can benefit you in next rounds, so give your best shot
Total Questions: 4

Round: Technical Interview
Experience: The interviewer asked to write the full code for a couple of questions only
Tips: Prepare DS nicely.
Strong OOPs concepts.
They want optimized solution of all.
Be honest with your interviewer.
Don't pretend.

Round: Other Interview
Experience: Ask me write and compile the codes.
The interviewer was very friendly and helping nature.
He was giving hints where i stuck.
He was checking my thinking and prolem solving capability.
Tips: Correct explaination matters,time doesn't.Take your time.
Ask fro hint.
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: C++, Object Oriented Programming, Algorithms And Data Structures, Ability To Think
College Name: NIT Allahabad
Motivation: Flat hierarchy.
Good progress by the company in its last 10 years of expansion.
opportunity to work with best minds of the country.
Decent salary.

Skills evaluated in this interview

Dream11 Interview FAQs

How many rounds are there in Dream11 Staff Nurse interview?
Dream11 interview process usually has 2 rounds. The most common rounds in the Dream11 interview process are Resume Shortlist and Video Call.

Tell us how to improve this page.

Dream11 Staff Nurse Interview Process

based on 1 interview

Interview experience

5
  
Excellent
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.4
 • 41 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Impact Guru Interview Questions
4.4
 • 37 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
View all

Dream11 Staff Nurse Reviews and Ratings

based on 2 reviews

2.2/5

Rating in categories

1.6

Skill development

2.2

Work-life balance

2.2

Salary

2.2

Job security

1.6

Company culture

2.2

Promotions

1.6

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