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)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
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)
Buyhatke Interview Questions and Answers for Freshers
illustration image
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 List Problem Statement Given a singly linked list of integers, return the head of the reversed linked list. Example: Initial linked list: 1 -> 2 -> 3 -> 4 -> NULLReversed linked list: 4 -> 3 -> 2 -> 1 -&g... read more
Add answer
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...

  • 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...

  • 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 ...

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

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test consisted of a combination of three types of subjects: Quantitative, English, and Logical Reasoning. The difficulty level was challenging, and it would be beneficial to review the basics of the CAT exam.

Round 2 - Technical 

(6 Questions)

  • Q1. What is the SUBSTITUTE function in Excel, and how can it be used?
  • Ans. 

    The SUBSTITUTE function in Excel replaces a specific occurrence of a text string with another text string.

    • Syntax: SUBSTITUTE(text, old_text, new_text, instance_num)

    • text: The original text string where replacement will occur

    • old_text: The text string to be replaced

    • new_text: The text string to replace old_text with

    • instance_num: Optional parameter to specify which occurrence of old_text to replace

    • Example: =SUBSTITUTE("appl...

  • Answered by AI
  • Q2. What is a pivot table in Excel, and how can it be accessed and utilized?
  • Ans. 

    A pivot table in Excel is a data summarization tool that allows you to reorganize and summarize selected columns and rows of data.

    • Accessed by selecting the data range you want to analyze, then going to the 'Insert' tab and clicking on 'PivotTable'.

    • Utilized by dragging and dropping fields into the 'Rows', 'Columns', 'Values', and 'Filters' areas to organize and summarize data.

    • Can be used to quickly analyze large dataset...

  • Answered by AI
  • Q3. What are the differences between Tableau and Power BI, and which one is considered superior?
  • Ans. 

    Tableau and Power BI are both powerful data visualization tools, with Tableau being more user-friendly and Power BI offering better integration with Microsoft products.

    • Tableau is known for its user-friendly interface and ease of use for creating visually appealing dashboards.

    • Power BI offers better integration with Microsoft products such as Excel, SharePoint, and SQL Server.

    • Tableau is considered superior for its ease o...

  • Answered by AI
  • Q4. What is the process to sort the top 10 rows in Excel?
  • Ans. 

    To sort the top 10 rows in Excel, select the range of data, go to the Data tab, click on Sort, choose the column to sort by, select Top 10 from the options, and specify whether to sort in ascending or descending order.

    • Select the range of data containing the top 10 rows you want to sort.

    • Go to the Data tab in Excel.

    • Click on the Sort button.

    • Choose the column you want to sort by.

    • Select 'Top 10' from the 'Sort On' dropdown ...

  • Answered by AI
  • Q5. What is adjusted R-squared in descriptive statistics, and what information can be derived from it?
  • Ans. 

    Adjusted R-squared is a statistical measure that adjusts the R-squared value for the number of predictors in a regression model.

    • Adjusted R-squared takes into account the number of predictors in a regression model, providing a more accurate measure of the model's goodness of fit.

    • It penalizes the addition of unnecessary predictors, helping to prevent overfitting.

    • A higher adjusted R-squared value indicates a better fit of...

  • Answered by AI
  • Q6. What is correlation, and what conclusions can be drawn from it?
  • Ans. 

    Correlation is a statistical measure that describes the relationship between two variables.

    • Correlation can range from -1 to 1, with 0 indicating no correlation, 1 indicating a perfect positive correlation, and -1 indicating a perfect negative correlation.

    • A positive correlation means that as one variable increases, the other variable also tends to increase. For example, there is a positive correlation between studying h...

  • Answered by AI
Round 3 - Role Based 

(4 Questions)

  • Q1. What are the five stages of project?
  • Ans. 

    The five stages of a project are initiation, planning, execution, monitoring and controlling, and closing.

    • Initiation: Defining the project, its scope, objectives, and stakeholders.

    • Planning: Creating a detailed project plan, including tasks, timelines, resources, and budget.

    • Execution: Carrying out the project plan and completing the work.

    • Monitoring and Controlling: Tracking project progress, managing changes, and ensuri...

  • Answered by AI
  • Q2. What is the difference between a project manager and a product manager?
  • Ans. 

    Project managers focus on overseeing the execution of a specific project, while product managers are responsible for the overall strategy and development of a product.

    • Project managers are focused on the successful completion of a project within scope, budget, and time constraints.

    • Product managers are responsible for the strategic direction, development, and success of a product throughout its lifecycle.

    • Project managers...

  • Answered by AI
  • Q3. What are two limitations of food delivery apps that you believe need improvement?
  • Ans. 

    Limitations of food delivery apps that need improvement

    • Inaccurate delivery times leading to customer dissatisfaction

    • Limited restaurant options available on the app

    • Difficulty in customizing orders or making special requests

    • Issues with order accuracy and missing items

    • Lack of transparency in pricing and additional fees

  • Answered by AI
  • Q4. Can you provide a real-life example of a project where you led a team to successful completion?
  • Ans. 

    Led a team to successfully launch a new software application for a client

    • Developed project timeline and milestones

    • Assigned tasks to team members based on their strengths

    • Held regular team meetings to track progress and address any issues

    • Collaborated with client to ensure project met their expectations

    • Conducted thorough testing and quality assurance before final launch

  • Answered by AI
Round 4 - HR 

(5 Questions)

  • Q1. What is your place of domicile?
  • Ans. 

    I currently reside in a cozy apartment in downtown Seattle.

    • My place of domicile is in Seattle, Washington.

    • I live in a cozy apartment in downtown Seattle.

    • I have been a resident of Seattle for the past five years.

  • Answered by AI
  • Q2. Can you describe your family background and the members who live in your household?
  • Ans. 

    I come from a close-knit family with my parents and two siblings living in our household.

    • Close-knit family

    • Parents and two siblings

    • Living together in the same household

  • Answered by AI
  • Q3. Is the family income derived from a business or from job holders?
  • Ans. 

    Family income can be derived from both a business and job holders.

    • Family income can come from a business owned by a family member.

    • Family income can also come from salaries earned by family members from their jobs.

    • In some cases, family income may be a combination of income from both business and job holders.

    • Examples: A family may own a small business like a bakery and also have family members working in corporate jobs.

    • A...

  • Answered by AI
  • Q4. What is your motivation for choosing to work in the insurance industry?
  • Ans. 

    I am motivated to work in the insurance industry because of its stability, growth opportunities, and the chance to help individuals and businesses protect themselves financially.

    • Stability: Insurance is a stable industry that is less affected by economic downturns.

    • Growth opportunities: There are various career paths and opportunities for advancement within the insurance industry.

    • Helping others: Working in insurance allo...

  • Answered by AI
  • Q5. Are you willing to relocate to Bengaluru?
  • Ans. 

    Yes, I am willing to relocate to Bengaluru for the Project Manager position.

    • I am open to relocating for the right opportunity

    • I have experience working in different locations

    • I am excited about the prospect of working in Bengaluru

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Digit Insurance Project Manager interview:
  • SQL
  • Statistics
  • Power Bi
Interview preparation tips for other job seekers - You should thoroughly review the job description, prepare by studying the basics and areas of depth where you feel comfortable, and be ready to answer questions confidently.

lead execution Interview Questions & Answers

Zetwerk user image Anonymous

posted on 28 Feb 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is railways?
  • Q2. How many kinds of weldings are done in Railways?
Round 2 - HR 

(2 Questions)

  • Q1. How you are going through with the current company?
  • Q2. How many days of notice periode you have to serve in current company?
Round 3 - One-on-one 

(2 Questions)

  • Q1. How many years you are working with your current industry?
  • Q2. How is your experience in your current industry and what you learned there?
Round 4 - HR 

(1 Question)

  • Q1. Asking and negotiation about CTC!

Assistant Manager growth marketing Interview Questions & Answers

Swiggy user image Anonymous

posted on 14 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself and workex, One campaign you are proud of and what you did, The interview lasted for 30 mins.
  • Q2. Why are you leaving your current company and details on that.
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for new challenges and opportunities for growth

    • Looking for a company with better work-life balance

    • Seeking a role with more responsibility and leadership opportunities

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself, 2 digital campaigns that you did and what you learn from them, Logical question on bulb : 3 bulbs are in a room and it's switches are outside the room, and you can only enter the ro...
  • Q2. How many times does whatsapp application gets open in your household?
  • Ans. 

    WhatsApp is opened multiple times daily in my household for communication and sharing updates.

    • WhatsApp is opened multiple times daily for communication with family and friends

    • Used for sharing updates, photos, and videos

    • Helps in coordinating plans and staying connected with loved ones

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Structure your answers well, they analyse your thought process, analysis skills and observation

SDE2 - Android Interview Questions & Answers

Porter user image Anonymous

posted on 22 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Write clean code for api call and DB update and ui update LLD
  • Ans. 

    Design a clean code structure for API call, DB update, and UI update.

    • Separate concerns by creating separate classes or modules for API call, DB update, and UI update.

    • Use interfaces or abstract classes to define contracts for each component.

    • Implement error handling and data validation at each step.

    • Consider using asynchronous programming to prevent blocking the UI thread.

    • Use dependency injection to manage dependencies be

  • Answered by AI
  • Q2. Questions on Kotlin
Round 2 - Technical 

(3 Questions)

  • Q1. Machine coding related to multiple view type recycler view
  • Q2. Further discussion on callback lifecycles of adapter methods when & how many times they will be called
  • Q3. How to sync which item is shown to backend in recycler view using api call . How to optimise it
  • Ans. 

    Use a unique identifier for each item in the recycler view and send it to the backend via API calls. Optimize by batching API calls and implementing pagination.

    • Assign a unique identifier to each item in the recycler view, such as an ID or position

    • Send the unique identifier of the currently shown item to the backend through API calls

    • Optimize by batching API calls to reduce network overhead

    • Implement pagination to load da

  • Answered by AI
Round 3 - Cultural Fit with EM 

(1 Question)

  • Q1. Journey so far what you learned . Reasons for switching company , Incidents of conflicts with. manager
  • Ans. 

    I have learned a lot in my journey so far, leading to my decision to switch companies. I have had conflicts with managers in the past.

    • Learned new technologies and tools in current role

    • Developed strong problem-solving and communication skills

    • Decided to switch companies for career growth opportunities

    • Had conflicts with a manager due to differing opinions on project direction

  • Answered by AI
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

INTERVIEWS

Boeing

85 interviews

INTERVIEWS

Apexon

135 interviews

INTERVIEWS

Xogene

8 interviews

Tell us how to improve this page.

Buyhatke Interview Process

based on 8 interviews

Interview experience

3.4
  
Average
View more

Societe Generale Global Solution Centre

Be part of a company where work complements life, not consumes it

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

₹11 L/yr - ₹15.8 L/yr

Software Development Engineer
5 salaries
unlock blur

₹10 L/yr - ₹16 L/yr

Product Designer
5 salaries
unlock blur

₹5.4 L/yr - ₹12 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

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent