Upload Button Icon Add office photos

Filter interviews by

FreshToHome Software Developer Interview Questions and Answers

Updated 24 Oct 2024

FreshToHome Software Developer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Frontend assement on react js functionality problems

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Basics of Frontend development and project discussion

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. Problem solving
  • Q2. Basic js question
Round 2 - Coding Test 

System design - ecommers website and project related

Round 3 - Coding Test 

Js + react js questions

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

I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test with Java and dsa questions

Round 2 - Technical 

(2 Questions)

  • Q1. Core Java Questions
  • Q2. Maximum subbarray

I applied via Referral and was interviewed before May 2021. There were 4 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 - Coding Test 

High level language

Round 3 - Technical 

(1 Question)

  • Q1. One on one coding interview
Round 4 - HR 

(1 Question)

  • Q1. Basic questions about your life

Interview Preparation Tips

Topics to prepare for Licious Software Developer interview:
  • Data Structures
  • Algorithms
  • C++
  • Object Oriented Programming
Interview preparation tips for other job seekers - don't join this company. Toxic work culture
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Problems , ap hp, figures

Round 2 - Coding Test 

It was basically on c

Round 3 - Group Discussion 

Why choose my company

Round 4 - HR 

(1 Question)

  • Q1. Why did you choose our company

I was interviewed before Dec 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was purely based on Data Structures and Algorithms . One has to be fairly comfortable in solving Algorithmic problems to pass this round . Both the questions asked were quite common and luckily I had already prepared them from CodeStudio and LeetCode.

  • Q1. 

    Binary Tree Traversals Problem Statement

    Given a Binary Tree with 'N' nodes, where each node holds an integer value, your task is to compute the In-Order, Pre-Order, and Post-Order traversals of the binar...

  • Ans. 

    Compute the In-Order, Pre-Order, and Post-Order traversals of a Binary Tree given in level-order format.

    • Implement functions to perform In-Order, Pre-Order, and Post-Order traversals of a Binary Tree.

    • Use level-order input to construct the Binary Tree.

    • Traverse the Binary Tree recursively to generate the required traversals.

    • Ensure proper handling of null nodes represented by -1 in the input.

    • Return the three traversals as

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Ans. 

    Reverse a singly linked list by altering the links between nodes.

    • Iterate through the linked list and reverse the links between nodes

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the links between nodes to reverse the list

    • Return the head of the reversed linked list

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round basically tested some concepts from Data Structures and File Manipulation .

  • Q1. 

    Intersection of Two Arrays Problem Statement

    Given two arrays A and B with sizes N and M respectively, both sorted in non-decreasing order, determine their intersection.

    The intersection of two arrays in...

  • Ans. 

    The problem involves finding the intersection of two sorted arrays efficiently.

    • Use two pointers to iterate through both arrays simultaneously.

    • Compare elements at the pointers and move the pointers accordingly.

    • Handle cases where elements are equal and update the intersection array.

    • Return the intersection array as the result.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABig Basket interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 3 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

Interview Questionnaire 

1 Question

  • Q1. They asked 3 Coding questions and 5 MCQ all of them were very simple. One was related to fibbonaci. Another one was like there was 2d array and at i,j sum till row i and sum till j was given and all the el...

Interview Preparation Tips

Interview preparation tips for other job seekers - I got all three questions correct and also I got a call from recruiter saying that be prepared for interview at tuesday but when i tried calling, He wasn't picking it up. Overall, It was a pathetic experience.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Code postorder traversal without using recursion.
  • Ans. 

    Iterative solution using a stack to perform postorder traversal.

    • Use a stack to simulate the recursive call stack.

    • Push nodes in the order of right, left, root.

    • Pop nodes from stack and add to result array.

    • Repeat until stack is empty.

  • Answered by AI
  • Q2. Leetcode Problem 1626 - Best team with no conflicts.
Round 2 - System Design 

(2 Questions)

  • Q1. Design whatsapp with one to one, group messaging and read receipts functionalities. Design the database.
  • Ans. 

    Design a messaging app like WhatsApp with one-to-one, group messaging, and read receipts functionalities.

    • Use a relational database to store user information, messages, and group memberships.

    • Create tables for users, messages, groups, and group memberships.

    • Include columns for message content, sender, receiver, timestamp, and read status.

    • Implement a feature to mark messages as read with read receipts.

    • Use indexes for effic

  • Answered by AI
  • Q2. Questions on dbms, cn and os.

Skills evaluated in this interview

I was interviewed in May 2022.

Round 1 - Assignment 

Round duration - 120 minutes
Round difficulty - Medium

Round 2 - Video Call 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

- Discussion on the first round's assignment
- Was asked about adding unit tests in the assignment
- Fundamental questions on the approach used for the assignment.

  • Q1. What are some things that could have been done better in the system design problem given in the first round?
  • Ans. 

    Some improvements in the system design problem could include better scalability planning, more efficient data storage solutions, and improved error handling.

    • Implementing a more robust caching mechanism to improve performance under heavy load.

    • Optimizing the database schema for better query performance and scalability.

    • Introducing load balancing and horizontal scaling to handle increased traffic.

    • Enhancing error handling t...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Round was with tech lead. Was briefly asked about the problem I solved in the first round. Then I was asked to solve 1 medium level DSA based question. Some discussion on culture fit was also done.

  • Q1. Given the frequency of traffic lights' states, can you determine if there will ever be an invalid state for the traffic signal, and what are the conditions that lead to an invalid state?
  • Ans. 

    Yes, an invalid state can occur if the traffic lights are in conflicting states simultaneously.

    • An invalid state occurs when multiple traffic lights are showing conflicting signals, such as both red and green at the same time.

    • This can happen due to a malfunction in the traffic light system or human error in programming the lights.

    • For example, if a traffic light is stuck showing both red and green signals, it would be co

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaBlinkit interview preparation:Topics to prepare for the interview - Data structures, Algorithms, Web development, OOP, LLDTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Have clear web dev fundamentals
Tip 2 : Have at least 1 good non-trivial project
Tip 3 : Practice basic DSA questions.

Application resume tips for other job seekers

Tip 1 : For past experience (internship/full time), explain the impact you created instead of only mentioning what you did.
Tip 2 : Don't exceed 1 page.
Tip 3 : Get it cross-checked for mistakes through multiple sources.
Tip 4 : Only put in stuff that you are confident in being able to explain.

Final outcome of the interviewSelected

Skills evaluated in this interview

FreshToHome Interview FAQs

How many rounds are there in FreshToHome Software Developer interview?
FreshToHome interview process usually has 1 rounds. The most common rounds in the FreshToHome interview process are Coding Test.
How to prepare for FreshToHome Software Developer 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 FreshToHome. The most common topics and skills that interviewers at FreshToHome expect are Data Structures, Front End, Functional Testing, Javascript and Linux.

Tell us how to improve this page.

FreshToHome Software Developer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
Hub Lead
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Support Executive
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Store Manager
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Cluster Manager
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Service Executive
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare FreshToHome with

Licious

3.7
Compare

ZappFresh.com

3.0
Compare

BigBasket

3.9
Compare

Blinkit

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