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 - 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)
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. Reverse Linked ListGiven a singly linked list of integers. Your task is to return the head of the reversed linked list. For example: The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -&g... read more
View answer (6)
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 Developer Intern

 (1)

 Software Development Engineer 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. Using BFS

    The idea is to first create an undirected graph of the given binary tree and then doing a bfs traversal of the undirected graph starting from the start node. We will keep a variable ‘count’ that will be incremented at each level of bfs traversal. ‘count-1’ is the required time needed to burn the whole tree.

     

    Algorithm

     

    • Initialize an unordered map ‘M’ that maps from integer to array of integers that sto...
  • Answered Anonymously
  • 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. Dynamic Programming

    Approach: In the Dynamic programming we will work considering the same cases as mentioned in the recursive approach. In a DP[][] table let’s consider all the possible weights from ‘1’ to ‘W’ as the columns and weights that can be kept as the rows. 
    The state DP[i][j] will denote maximum value of ‘j-weight’ considering all values from ‘1 to ith’. So if we consider ‘wi’ (weight in ‘ith’ row) we can...

  • Answered Anonymously
  • 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. Counting

    This approach is based on the fact that ‘South’ and ‘North’,  ‘East’ and ‘West’  both are opposite pairs of directions and they can cancel each other's effect.

     

    We can simply iterate over the string ‘Str’ and count the number of characters ‘E’, ‘W’, ‘N’, ‘S’ present in the given string.  If the number of ‘E’s in the string ‘Str’ is ‘countE’, number of ‘W’s is ‘countW‘, number of ‘N’s is ‘coun...

  • Answered Anonymously

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 Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed in Aug 2021. 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 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?
  • Q4. Tell me about yourself.
Round 3 - Technical 

(1 Question)

  • Q1. Questions about End to End Operation

Interview Preparation Tips

Interview preparation tips for other job seekers - If Looking Forward to get This Job ..... You Should Know about not limit to Operation & And also process of support Team / Outside Stack Holder Too

Key Sales Manager - Agency Business Interview Questions & Answers

ShareChat user image Anonymous

posted on 26 Mar 2021

I applied via Referral and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Clients that have been handled in past
  • Q2. What is the amount of the proposals that has been sent
  • Q3. Total revenue target achievement in an year
  • Q4. How many years of experience in Digital ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always show a positive energy in the interview. Always go through the interviewers profile on Linkedin. Showcase your passion about how self driven you are to get into social media space and looks forward to learning every day

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Case studies - market sizing, pricing and costing
  • Q2. Tell me something about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, be truthful (very important),

Nodal Officer City Head Nodal -Vigilance Corporate Affair Interview Questions & Answers

Stanza Living user image Anonymous

posted on 28 May 2021

I applied via Referral and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Govt.. authority liaison, major events handled, change which can be created towards organisational profit....etc.
  • Q2. Don't like to share

Interview Preparation Tips

Interview preparation tips for other job seekers - Showing your real talent, and potential capabilities is the key to crack.

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

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
 • 424 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Myntra Interview Questions
4.0
 • 213 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Shopclues Interview Questions
4.0
 • 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

₹11 L/yr - ₹15.8 L/yr

Product Designer
5 salaries
unlock blur

₹5.4 L/yr - ₹12 L/yr

Software Development Engineer
4 salaries
unlock blur

₹10 L/yr - ₹16 L/yr

Content Developer
4 salaries
unlock blur

₹5.5 L/yr - ₹13 L/yr

Business Development Manager
4 salaries
unlock blur

₹7 L/yr - ₹7 L/yr

Explore more salaries
Compare Buyhatke with

Flipkart

4.0
Compare

Snapdeal

3.8
Compare

Myntra

4.0
Compare

Shopclues

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