Upload Button Icon Add office photos

Filter interviews by

Buyhatke Interview Questions, Process, and Tips

Updated 17 Nov 2024

Top Buyhatke Interview Questions and Answers

View all 8 questions

Buyhatke Interview Experiences

Popular Designations

6 interviews found

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

2 hours of basic dsa

Round 2 - One-on-one 

(2 Questions)

  • Q1. What are foreign keys
  • Ans. 

    Foreign keys are columns in a database table that reference the primary key of another table, establishing a relationship between the two tables.

    • Foreign keys ensure referential integrity in a database by enforcing relationships between tables.

    • They help maintain data consistency by preventing actions that would violate the relationships between tables.

    • For example, in a database with tables for 'orders' and 'customers', ...

  • Answered by AI
  • Q2. Implement depth first search in tree
  • Ans. 

    Depth first search in tree is implemented using recursion to explore each branch fully before moving to the next.

    • Start at the root node and recursively visit each child node before moving to the next sibling node.

    • Use a stack to keep track of nodes to visit, pushing children onto the stack before siblings.

    • Base case is when the current node is null or a leaf node, then backtrack to the parent node.

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

4 DSA questions, 10 Questions of SQL queries, MCQS of APIS, DBMS

Round 2 - One-on-one 

(3 Questions)

  • Q1. DBMS concepts as Normalization , Indexing, ACID properties, SQL queries. OS , OOPs questions
  • Q2. Backend Fundamental focusing on APIs, NodeJs, JavaScript
  • Q3. Medium level DSA question

Backend Developer Intern Interview Questions asked at other Companies

Q1. 1. Differences between GET and POST 2. What is MVC? 3. I was asked if I knew any PHP framework. 4. SESSION, COOKIE functionalities 5. Some SQL queries.
View answer (1)
Buyhatke Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

They given 4 question based on DSA topics such as graph, DP, Array . All questions level medium to hard .

Round 2 - Technical 

(2 Questions)

  • Q1. Question Based on Completely Resume based
  • Q2. Asked a leetcode hard question

Interview Preparation Tips

Topics to prepare for Buyhatke Backend Developer Intern interview:
  • DSA
  • Resume
Interview preparation tips for other job seekers - Strong your resume and good hold on DSA

Backend Developer Intern Interview Questions asked at other Companies

Q1. 1. Differences between GET and POST 2. What is MVC? 3. I was asked if I knew any PHP framework. 4. SESSION, COOKIE functionalities 5. Some SQL queries.
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

I had to make a to-do list application using Kotlin/Swift/React Native

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is Observable in Swift?
  • Ans. 

    Observable in Swift is a property wrapper that allows for automatic notifications when the value changes.

    • Observable is a property wrapper introduced in Swift 5.1.

    • It can be used with any property that needs to be observed for changes.

    • When the value of the property changes, any views using that property will be automatically updated.

    • Example: @Published var score: Int = 0

  • Answered by AI
  • Q2. Why did you use Swift over React Native?
  • Ans. 

    Swift was chosen for its performance, native iOS support, and better integration with Apple's ecosystem.

    • Swift offers better performance compared to React Native due to its native code execution.

    • Swift provides seamless integration with Apple's ecosystem, allowing for better utilization of iOS features.

    • Swift is the preferred choice for developing iOS apps as it is the native language for iOS development.

    • React Native may ...

  • Answered by AI

Skills evaluated in this interview

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)

Buyhatke interview questions for popular designations

 Backend Developer Intern

 (3)

 Application Developer

 (1)

 Software Development Engineer Intern

 (1)

 Software Developer Intern

 (1)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in May 2024.

Round 1 - Coding Test 

It involved 3-4 questions on dsa.

Round 2 - Technical 

(1 Question)

  • Q1. Find LCA of a binary tree, standard dsa medium problem
  • Ans. 

    LCA of a binary tree is the lowest common ancestor of two nodes in the tree.

    • Traverse the tree from the root node to find the paths from root to the two given nodes.

    • Compare the paths to find the last common node, which is the LCA.

    • Use recursion to solve the problem efficiently.

    • Handle edge cases like if one of the nodes is the ancestor of the other.

  • Answered by AI

Skills evaluated in this interview

Backend Developer Intern Interview Questions asked at other Companies

Q1. 1. Differences between GET and POST 2. What is MVC? 3. I was asked if I knew any PHP framework. 4. SESSION, COOKIE functionalities 5. Some SQL queries.
View answer (1)

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Time to Burn Tree Problem

    You are given a binary tree consisting of 'N' unique nodes and a start node where the burning will commence. The task is to calculate the time in minutes required to completely b...

  • Ans. 

    Calculate the time in minutes required to completely burn a binary tree starting from a given node.

    • Start burning from the given node and spread fire to adjacent nodes each minute

    • Track the time taken for each node to burn completely

    • Return the maximum time taken to burn the entire tree

  • Answered by AI
  • Q2. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
  • Q3. 

    Shortest Route Problem Statement

    You want to visit your friend’s house located at some position in an infinite grid starting from origin (0, 0). You can move in four directions: East (E), West (W), North ...

  • Ans. 

    Given a directional string representing a route to a friend's house in an infinite grid, find the shortest lexicographically smallest route to reach the destination.

    • Iterate through the directional string and keep track of the movements in each direction (E, W, N, S).

    • Calculate the final position based on the movements and find the shortest lexicographically smallest route to reach that position.

    • Consider the constraints ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from JAYPEE INSTITUTE OF INFORMATION TECHNOLOGY. I applied for the job as SDE - Intern in HyderabadEligibility criteriaAbove 7 CGPABuyhatke interview preparation:Topics to prepare for the interview - Data structures, Algorithms, Object-oriented programming, Database management system, Python, Machine Learning, web technologies, Problem-solvingTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Strengthen DSA skills initially, know the basics and understand the working of different data structures
Tip 2 : Learn to implement them and enhance your coding skills. Make mistakes and learn from them instead of just cramming everything before practicing. 
Tip 3 : To enhance coding skills, try your best to crack a question instead of giving up and looking at the solution. This will improve your problem-solving skills.

Application resume tips for other job seekers

Tip 1 : Make sure your resume fits everything into a single page. 
Tip 2 : Have at least 2 projects on your resume. 
Tip 3 : Only Mention only those technical skills that you are confident in. Do not put false things on your resume. 
Tip 4 : Mention the work you have done during your internships. 
Tip 5 : Include an objective in your resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Interview questions from similar companies

Intern Interview Questions & Answers

Paytm Mall user image Monu Singh Yadav

posted on 22 Nov 2024

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

Very impressive able to solve 100 coding questions within 10 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Find min in array
  • Ans. 

    Find the minimum string in an array of strings.

    • Iterate through the array and compare each string to find the minimum.

    • Use a built-in function like sort() to sort the array and then return the first element.

    • Consider using a loop to compare each element with the current minimum.

  • Answered by AI
  • Q2. Find max in array
  • Ans. 

    Find the maximum value in an array of strings.

    • Convert the strings to numbers if needed before finding the maximum value.

    • Use a loop to iterate through the array and compare each element to find the maximum value.

  • Answered by AI

Skills evaluated in this interview

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 Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic array question
Round 2 - Technical 

(1 Question)

  • Q1. Find the first circular tour that visits all petrol pumps
  • Ans. 

    The first circular tour that visits all petrol pumps can be found using the concept of a circular linked list.

    • Create a circular linked list with each node representing a petrol pump

    • Calculate the difference between petrol available at each pump and the distance to the next pump

    • Start from a pump where the sum of differences is positive and traverse the circular linked list until completing the tour

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round was a aptitude test of 25 question

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation d...

  • Answered by AI
  • Q2. Basic multi threading questions
Round 3 - Technical 

(2 Questions)

  • Q1. Code to make a pattern and explain each and every line of code
  • Ans. 

    Code to create a pattern and explain each line of code

    • Start by defining the number of rows and columns in the pattern

    • Use nested loops to iterate through each row and column

    • Decide the pattern you want to create and use conditional statements to determine the output for each position

  • Answered by AI
  • Q2. Puzzle: In how many minimum cut u can cut a cake in 8 piece

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic SQL question.
  • Q2. Order of execution
  • Ans. 

    The order of execution refers to the sequence in which instructions or operations are executed in a program.

    • The order of execution is determined by the programming language and the specific code being executed.

    • Generally, code is executed line by line from top to bottom.

    • However, there are exceptions such as loops, conditionals, and function calls that can alter the order of execution.

    • In some programming languages, there...

  • Answered by AI
  • Q3. Window functions
  • Q4. Aggregate functions

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Buyhatke Interview FAQs

How many rounds are there in Buyhatke interview?
Buyhatke interview process usually has 2 rounds. The most common rounds in the Buyhatke interview process are Coding Test, One-on-one Round and Technical.
How to prepare for Buyhatke 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 Buyhatke. The most common topics and skills that interviewers at Buyhatke expect are Communication Skills, Javascript, Usage, B2B Sales and Ad Sales.
What are the top questions asked in Buyhatke interview?

Some of the top questions asked at the Buyhatke interview -

  1. Why did you use Swift over React Nati...read more
  2. Find LCA of a binary tree, standard dsa medium prob...read more
  3. What is Observable in Swi...read more

Recently Viewed

SALARIES

Future Market Insights

SALARIES

Future Market Insights

INTERVIEWS

IndusInd Bank

No Interviews

INTERVIEWS

JK Cement

No Interviews

INTERVIEWS

Accucia Softwares Private Limited

No Interviews

INTERVIEWS

Accucia Softwares Private Limited

No Interviews

INTERVIEWS

Busibud

No Interviews

INTERVIEWS

Accenture

No Interviews

REVIEWS

GHCL Limited

No Reviews

SALARIES

UltraTech Cement

Tell us how to improve this page.

Buyhatke Interview Process

based on 8 interviews

Interview experience

3.4
  
Average
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
Paytm Mall Interview Questions
3.6
 • 7 Interviews
Infibeam Interview Questions
3.1
 • 4 Interviews
HomeShop18 Interview Questions
4.1
 • 3 Interviews
View all

Buyhatke Reviews and Ratings

based on 12 reviews

3.8/5

Rating in categories

3.6

Skill development

3.9

Work-life balance

3.5

Salary

3.8

Job security

3.3

Company culture

3.7

Promotions

3.3

Work satisfaction

Explore 12 Reviews and Ratings
Software Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Designer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Buyhatke with

Flipkart

4.0
Compare

Snapdeal

3.8
Compare

Myntra

4.0
Compare

Shopclues

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