Upload Button Icon Add office photos
Engaged Employer

i

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

Droom Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Droom Intern Interview Questions and Answers

Updated 26 Jul 2017

Droom Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 5 May 2017

I was interviewed in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. What do you know about our company and product
  • Ans. 

    I'm sorry, I don't have access to the internet to research the company and product.

    • Answered by AI
    • Q2. Tell us all you know about Droom
    • Ans. 

      Droom is an online marketplace for buying and selling new and used vehicles.

      • Founded in 2014 by Sandeep Aggarwal

      • Offers a wide range of vehicles including cars, bikes, and scooters

      • Provides services such as vehicle history reports and inspections

      • Has over 6,500 certified dealers and over 50,000 listings

      • Operates in India and Singapore

    • Answered by AI

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: The company needed people with a few extracurriculars to fit into their company culture. Thus they selected students with a good technical background and extracurricular skillset
    Tips: Mention the extracurriculars well and your learnings from each of them.

    Round: Technical Interview
    Experience: The company needed people with a few extracurriculars to fit into their company culture. Thus they selected students with a good technical background and extracurricular skillset
    Tips: Mention the extracurriculars well and your learnings from each of them.

    Round: Technical Interview
    Experience: Seems like an HR question, but is a product based question for the company. So now, when they call it technical, it is because their product is the website that they manage. So I started talking about Droom's vision and mission.
    I spoke of a few features that would help customers. I also spoke of the tools that were useful for customer experience. I also mentioned the speed and quality of the site.
    Tips: Here be careful as you need to answer in the technical sense. Starting with when the company was started/ the location will not help build a point. Start off with the product. Also feel free to point out negatives, but make sure you sandwich it between smoother and better things.

    Interview questions from similar companies

    Interview experience
    2
    Poor
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. About yourself, S&W
    • Q2. Impact PORs Impact Impact

    Intern Interview Questions & Answers

    Spinny user image Anonymous

    posted on 12 Nov 2024

    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 Nov 2023. There was 1 interview round.

    Round 1 - Assignment 

    One backend Assignment

    Interview experience
    2
    Poor
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    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 Resume tips
    Round 2 - Technical 

    (2 Questions)

    • Q1. BookMyShow low level design
    • Q2. Heap data structures question

    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
    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 Resume 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 experience
    3
    Average
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Referral and was interviewed before Mar 2023. There were 3 interview rounds.

    Round 1 - Aptitude Test 

    50 question with gk and reasoning mcq

    Round 2 - HR 

    (1 Question)

    • Q1. Introduction and prior exp
    Round 3 - One-on-one 

    (1 Question)

    • Q1. Question about escalastions and ptoblem sovling

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Startup company but no work life balance
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

    Round 1 - Coding Test 

    Easy to medium, can solve with leetcode medium

    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Number of islands count
    • Ans. 

      Count the number of islands in a grid of '1's and '0's

      • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

      • Increment the island count for each new island found

      • Ensure to handle boundary cases and check for visited nodes

    • Answered by AI
    • Q2. First and last index of a particular element in an array
    • Ans. 

      Find the first and last index of a specific element in an array of strings.

      • Iterate through the array and keep track of the index of the first and last occurrence of the element.

      • Return the first and last index once the iteration is complete.

      • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Approached by Company and was interviewed before Mar 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 Resume tips
    Round 2 - Coding Test 

    Technical questions based on dsa

    Round 3 - Technical 

    (2 Questions)

    • Q1. Questions on sql based on joins and cte
    • Q2. Questions on linq based on data transformation
    Round 4 - Coding Test 

    Questions based on high level programming and system architecture

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be clear on the basics of dsa,sql and. Net framework
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Campus Placement and was interviewed before Jan 2022. 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 Resume tips
    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Tell me about yourself
    • Q2. Internship Experience

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Research a little bit about the company, show go getter attitude & a passion for sales, you'll be hired.
    Contribute & help others!
    anonymous
    You can choose to be anonymous

    Droom Interview FAQs

    How to prepare for Droom Intern 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 Droom. The most common topics and skills that interviewers at Droom expect are Advertising, Management, Marketing Communication, Media Relations and Monitoring.

    Recently Viewed

    JOBS

    Kinara Capital

    No Jobs

    SALARIES

    Droom

    No Salaries

    REVIEWS

    Porter

    No Reviews

    SALARIES

    Droom

    No Salaries

    JOBS

    Droom

    No Jobs

    REVIEWS

    Porter

    No Reviews

    SALARIES

    Droom

    SALARIES

    Droom

    SALARIES

    Droom

    REVIEWS

    Porter

    No Reviews

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    CARS24 Interview Questions
    3.5
     • 330 Interviews
    Spinny Interview Questions
    3.7
     • 170 Interviews
    CarDekho Group Interview Questions
    3.7
     • 72 Interviews
    MagicPin Interview Questions
    3.0
     • 50 Interviews
    Carwale Interview Questions
    3.4
     • 41 Interviews
    Quikr Interview Questions
    3.7
     • 31 Interviews
    OLX Autos Interview Questions
    3.9
     • 25 Interviews
    Tokopedia Interview Questions
    4.0
     • 25 Interviews
    View all

    Droom Intern Reviews and Ratings

    based on 1 review

    3.0/5

    Rating in categories

    3.0

    Skill development

    3.0

    Work-life balance

    3.0

    Salary

    3.0

    Job security

    3.0

    Company culture

    3.0

    Promotions

    4.0

    Work satisfaction

    Explore 1 Review and Rating
    Software Engineer
    31 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Assistant Manager
    27 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Software Engineer
    27 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Analyst
    25 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Associate Software Engineer
    22 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Explore more salaries
    Compare Droom with

    CarDekho Group

    3.7
    Compare

    Cartrade.com

    4.0
    Compare

    CARS24

    3.6
    Compare

    Quikr

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