Upload Button Icon Add office photos

Filter interviews by

Home Direct Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Team Lead Interview Questions & Answers

BigBasket user image akrshita chauhan

posted on 6 Feb 2022

I applied via Referral and was interviewed before Feb 2021. 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 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Confedence label should be 💯 correct

I applied via Referral and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me abt yourself
  • Ans. 

    Dynamic professional with a strong background in management, team leadership, and strategic planning, eager to drive success in new challenges.

    • Over 5 years of experience in management roles, leading teams to exceed performance targets.

    • Successfully implemented a new project management system that improved efficiency by 30%.

    • Strong communication skills, demonstrated by leading cross-functional teams and presenting to stak...

  • Answered by AI
  • Q2. Achievements in past

Interview Preparation Tips

Interview preparation tips for other job seekers - Give your best, go in a flow , talk truth

I applied via Walk-in and was interviewed before Jun 2021. 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 - Group Discussion 

HR told about the company on the first day, how it works, told the rules, showed the management and a lot

Interview Preparation Tips

Topics to prepare for Amazon Associate interview:
  • Safery
  • Environment
  • Cleaning
Interview preparation tips for other job seekers - There is nothing to worry, if you have the desire to work and have passion, then you can work anywhere.

I applied via Naukri.com and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked about How have you developed Business in your Ex Company
  • Ans. 

    I developed business through strategic networking, targeted marketing, and building strong client relationships.

    • Identified key target markets and tailored marketing strategies to reach them effectively.

    • Utilized social media platforms to engage potential clients and showcase our products.

    • Established partnerships with local businesses to create referral opportunities.

    • Conducted regular follow-ups with leads to nurture rel...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I explained that we rigorously used to do telling calling as well as Birthday-Anniversary wish and offer calling and thus we used to develop our Business. I was First Got Hired through Consultancy via Naukari and after seeing my performance, Amazon-Prione consumed me to the main business on pay roll.

I applied via Company Website and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. About your self
  • Ans. 

    Experienced Senior Associate with a strong background in project management and team leadership, dedicated to driving results and innovation.

    • Over 7 years of experience in project management, successfully leading cross-functional teams to deliver projects on time and within budget.

    • Expert in data analysis and strategic planning, having implemented a new reporting system that improved efficiency by 30%.

    • Strong communicatio...

  • Answered by AI
  • Q2. About your previous company and job profile
  • Q3. How do you relate your previous job profile with the profile you are applying
  • Ans. 

    My previous role equipped me with skills in project management, data analysis, and team collaboration, aligning well with this position.

    • Managed multiple projects simultaneously, ensuring timely delivery and adherence to quality standards.

    • Conducted data analysis to identify trends, which informed strategic decisions and improved operational efficiency.

    • Collaborated with cross-functional teams to enhance communication and...

  • Answered by AI
  • Q4. Any thing extra ordinary you have done in your previous company (s) that has changed your business
  • Ans. 

    Implemented a new customer feedback system that increased customer satisfaction by 20%

    • Implemented a new customer feedback system to gather insights and improve customer experience

    • Analyzed feedback data to identify common issues and areas for improvement

    • Implemented changes based on feedback to address customer concerns and enhance overall satisfaction

    • Trained team members on how to effectively use the new system and inte...

  • Answered by AI
  • Q5. Hobbies and all
  • Ans. 

    I enjoy hiking, reading, and volunteering, which help me stay active, expand my knowledge, and give back to the community.

    • Hiking: I love exploring nature trails and challenging myself with new hikes, like my recent trip to the Appalachian Trail.

    • Reading: I read a variety of genres, from fiction to biographies, and recently finished 'Sapiens' by Yuval Noah Harari.

    • Volunteering: I dedicate time to local shelters, helping o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Have proper knowledge about your work experience
Make your CV precis and do adhere to it
Be honest

I applied via Campus Placement and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about ur hobby in brief ?

Interview Preparation Tips

Interview preparation tips for other job seekers - I share this question because intervier ask again and agin this question so keep in mind don't change your hobby in any rounds make sure this question is mandatory
Be interview-ready. Browse the most asked HR questions.
illustration image

I applied via Company Website and was interviewed in May 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SQL, Business cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with examples for each of the 14 principles
Are these interview questions helpful?

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It comprised of general aptitude questions and two coding questions. It was an offline test.

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard where no two queens threaten each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not attack each other.

    • Generate and print valid configurations where queens are placed safely.

    • Consider constraints and time limit for efficient solution.

    • Exam...

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Achieve sorting in a single scan over the array without using any extra space.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

After having a technical discussion about my CV. He gave me two questions to code.

  • Q1. 

    Ninja and Substrings Problem Statement

    Ninja has to determine all the distinct substrings of size two that can be formed from a given string 'STR' comprising only lowercase alphabetic characters. These su...

  • Ans. 

    Find all unique contiguous substrings of size two from a given string.

    • Iterate through the string and extract substrings of size two

    • Use a set to store unique substrings

    • Return the set as an array of strings

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was supposed to be the HR round but out of surprise the interviewer started by giving me a question to code. 
After I approached this question with the right solution he just asked about my family. After that he said to wait. After half an hour the results were announced. A total of three students were hired and I was amongst one of them.

  • Q1. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use recursion to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Return the valid combinations as an array of strings.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMagicbricks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Dec 2015.

Interview Questionnaire 

2 Questions

  • Q1. 1 question from basic data structures and algorithms The question was similar to the one in the given link- -----/
  • Ans. 

    Understanding basic data structures and algorithms is crucial for software development and problem-solving.

    • Data structures like arrays, linked lists, stacks, and queues are fundamental for organizing data.

    • Algorithms such as sorting (e.g., quicksort, mergesort) and searching (e.g., binary search) are essential for efficient data manipulation.

    • Example: An array can store a list of numbers, while a linked list can efficien...

  • Answered by AI
  • Q2. Why do you want to join the company?
  • Ans. 

    I am excited to join the company because of its reputation for innovation and commitment to employee growth.

    • I am impressed by the company's track record of developing cutting-edge software solutions.

    • I appreciate the company's focus on fostering a culture of learning and development.

    • I am excited about the opportunity to work with a talented team of developers and contribute to the company's success.

    • I believe that the co...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resumes were shortlisted with a short aptitude round where we are asked basic questions about databases, basic programming(C and C ++ questions)

Round: Technical Interview
Experience: The questions were asked were simple - related to arrays and data structures. Some questions were asked regarding my resume and projects.
Tips: Be thorough with geeksForGeeks, and your projects.

Round: HR Interview
Experience: I told him how I found the story of the founder of Infoedge very inspiring.
Tips: This round should be more simpler , be prepared with why you want to join the company and general HR questions

Skills: Basic C/C++, Programming Skills In Any Language Like C
College Name: IIIT Allahabad

Interview Preparation Tips

Round: Technical Interview
Experience: Ques will be based on arrays( duplicate element, missing element in 1 to n array), link list(reverse, remove loop, middle node etc), Hashing, sql join, normalisation, indexing in sql, singlton pattern and sorting and searching.
Tips: Focus will remain on algorithms. Whatever program they will ask to write, they will also ask to optimize the solution.

Skill Tips: Puzzle on mislabled jar, odd weight ball. As I had exp in Java, so some more que on Java, java script and web technology. All you need in interview is to be confident and show your interest in web domain.
Skills: Java, Data structure, Algorithm
College Name: NA

Tell us how to improve this page.

Interview Questions from other companies in Internet Industry

Info Edge Interview Questions
3.9
 • 352 Interviews
Nykaa Interview Questions
3.5
 • 131 Interviews
Moglix Interview Questions
3.4
 • 61 Interviews
MakeMyTrip Interview Questions
3.5
 • 134 Interviews
Tata 1mg Interview Questions
3.6
 • 192 Interviews
Rippling Interview Questions
2.6
 • 42 Interviews
Wayfair Interview Questions
3.5
 • 61 Interviews
Oyo Rooms Interview Questions
3.1
 • 237 Interviews
View all

Home Direct Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.7

Salary

3.7

Job security

3.7

Company culture

3.7

Promotions

4.3

Work satisfaction

Explore 2 Reviews and Ratings
CAR Driver
4 salaries
unlock blur

₹0.8 L/yr - ₹2 L/yr

Home Tutor
3 salaries
unlock blur

₹0.8 L/yr - ₹2.1 L/yr

Online Tutor
3 salaries
unlock blur

₹1 L/yr - ₹2.5 L/yr

Explore more salaries
Compare Home Direct with other companies in Internet Industry

Info Edge

3.9
Compare

Nykaa

3.5
Compare

Moglix

3.4
Compare

MakeMyTrip

3.5
Compare
write
Share an Interview