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

Buyhatke interview questions for popular designations

 Backend Developer Intern

 (3)

 Application Developer

 (1)

 Software Development Engineer Intern

 (1)

 Software Developer Intern

 (1)

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)

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

Interview Preparation Tips

Round: Technical Interview
Experience: Interviews were driven to know the candidate better and their capabilities. They also didn’t waste much time asking students who they were sure not to recruit and conducting reasonably long interviews.

General Tips: Do’s :
1. Start preparing with the start of the summers.
2. Concentrate on your own preparation and not on what others are doing.
3. Keep the preparation time of HR to maximum 20 hours because HR accounts for just 20% weightage in your selection procedure.
4. Have patience.
5. Prepare every point written in the resume such that you are able to speak for at least 3 min on the subject. You might gain bonus points if you are aware of some latest developments or strategic changes in the field.

Don’ts :
1. Never bog down when you are either not shortlisted in the company who have been aiming for or when even after practice you are not getting the correct way.
2. Do not form very large groups for the preparation. Try making the preparation time that you spend with the group as efficient as possible with the least of bulla sessions.

College Name: IIT Kanpur

Interview Preparation Tips

Round: Group Discussion
Experience: GD was conducted for shortlisted candidates and candidates were divided into groups of 6 people.There were 3 topics and each topic was discussed for 2 minutes.No specific rules,like each person needs to speak,are to be followed during the GD.Anyone can initiate,intervene,etc. Finally we were asked to link all three topics and this discussion went on for another 2 minutes.

Round: HR Interview
Experience: Only a single round lasting about 40-45 minutes.There were only 4 people in the panel and technical as well as HR questions were asked. First I was asked to go through my own resume, “Introduce/Tell us about yourself?".  E.g.:“Where have you shown leadership qualities?Have you led a
team?Size of team? What new initiatives did you take?”.Core questions starting form basics like “How does an airplane fly?” to specific questions about the different types of engines used in airplanes,their specifications, etc. were asked. HR questions were put up like"What was the most difficult decision in your life?" and grilled on my internship for 15-20 minutes which I did in Transocean. (Another oil field services company).

General Tips: You need to be very good in the basics of your
core courses and if you have done an internship in the oil industry,
you will definitely be grilled on that.Questions will be asked in quick succession.
Skill Tips: Highlight any intern in Oil industry or anything related to that in your resume.Any POR or any sport activity which shows your leadership qualities should me mentioned in your resume.
Skills: Leadership qualities, Athletic, Quick thinking, presence of mind
College Name: IIT MADRAS

Interview Preparation Tips

Round: Test
Experience: 10 candidates shortlisted through aptitude test (50 ques in 12 min, cut off was 50).
Duration: 12 minutes minutes
Total Questions: 50

Round: Technical Interview
Experience: 1st interview was technical with some general HR questions. I related the work done in internships to the work being done in the snapdeal company. I was asked if I had any other interview to which I replied flipkart. He then asked me why snapdeal and not flipkart. I had studied everything about the 2 companies and was thus able to defend my choice. Next he gave me some puzzles, I did all with little inputs from him. I was asked to wait for 2nd interview and not go to Flipkart GD but I went anyway.

Round: Technical Interview
Experience: This interview round was again technical. This time there were 2 panellists and they again gave me 4-5 puzzles, which I did successfully. I was asked to wait for a HR interview.

Round: HR Interview
Experience: The HR interview was just a formality, he explained me my responsibilities in the organization and made me a spot offer.

General Tips: 1. Pre placement preparation is very important. Begin early and try to distribute time to all the areas especially your shortcomings.
2. Try to remain calm and confident in the interview.
3. Do not cram up the answers to hr questions or puzzles.
4. There are plenty of companies with handsome compensation. Just give your best in preparations and interviews.

College Name: IIT Kanpur

Software Developer Interview Questions & Answers

Snapdeal user image Adithya H K Upadhya

posted on 3 Dec 2015

Interview Preparation Tips

Round: Test
Experience: An aptitude test which was followed by three rounds of technical interviews and finally the HR interview.

Round: HR Interview
Experience: Snapdeal offered placements for 5 students (3 from CS and 2 from IT).

General Tips: Be extremely well prepared for any company. Research about the company's profile extensively before the company's interview. HR panel always looks for candidates who are well aware of the company in order to measure the candidate's interest. Data structures are absolutely necessary for any company. Improve coding skills through frequent participation in competitive programming arena such as codeForces, codeChef, HackerEarth etc. "Software development job profile was offered to me.
Unnecessary and irrelevant questions are to be avoided. We should raise questions only if we have some genuine questions. However any question related to job profile or location preference could be raised. "
"It was very grueling and tiring at first but the sweet taste of placement makes it all worth it.
Placements are a turning point in everybody's career."
Skill Tips: Snapdeal is more focussed on Data structures and object oriented technology.
For data structures, online materials such as GeeksforGeeks are excellent and in case of OOPS concepts, stronghold in either C++ or java programming language is necessary.
Skills:
College Name: NIT Surathkal
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

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Prodesk

No Interviews

INTERVIEWS

Buyhatke

No Interviews

SALARIES

GHCL Limited

INTERVIEWS

Kohler

No Interviews

INTERVIEWS

Buyhatke

No Interviews

INTERVIEWS

StoneX Group

No Interviews

INTERVIEWS

Prodesk

No Interviews

INTERVIEWS

Archer Daniels Midland Company

No Interviews

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
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 439 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Myntra Interview Questions
4.0
 • 216 Interviews
Snapdeal Interview Questions
3.8
 • 76 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