Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Furlenco Team. If you also belong to the team, you can get access from here

Furlenco Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Furlenco Interview Questions and Answers

Updated 7 Feb 2025
Popular Designations

16 Interview questions

A growth manager was asked 7mo ago
Q. What did you study?
Ans. 

I have studied various aspects of growth marketing, including data analysis, consumer behavior, and digital marketing strategies.

  • Bachelor's degree in Marketing, focusing on consumer behavior and market research.

  • Completed a certification in Digital Marketing, covering SEO, PPC, and social media strategies.

  • Studied data analytics to understand customer insights and improve campaign performance.

  • Participated in worksho...

View all growth manager interview questions
A growth manager was asked 7mo ago
Q. What's your experience?
Ans. 

I have extensive experience in growth strategy, data analysis, and cross-functional collaboration to drive business success.

  • Led a team to increase user acquisition by 40% through targeted marketing campaigns.

  • Implemented A/B testing strategies that improved conversion rates by 25%.

  • Collaborated with product and engineering teams to enhance user experience, resulting in a 30% increase in customer retention.

  • Utilized d...

View all growth manager interview questions
A Senior Executive Operations was asked 10mo ago
Q. How would you rate your Excel knowledge for generating reports?
Ans. 

I have advanced Excel knowledge and experience in creating detailed reports.

  • Proficient in using advanced Excel functions and formulas

  • Experience in creating complex spreadsheets and data analysis

  • Skilled in generating detailed reports for senior management

  • Familiar with data visualization tools like pivot tables and charts

View all Senior Executive Operations interview questions
A Senior Executive Operations was asked 10mo ago
Q. How do you plan to grow professionally?
Ans. 

I plan to grow by continuously seeking new challenges, learning new skills, and expanding my network.

  • Continuously seek new challenges to push myself out of my comfort zone

  • Focus on learning new skills and staying updated with industry trends

  • Expand my network by attending industry events, conferences, and networking with professionals

  • Set clear goals and create a roadmap for personal and professional growth

View all Senior Executive Operations interview questions
A Senior Software Engineer was asked 12mo ago
Q. Given a singly linked list, delete the n-th node from the end of the list and return its head.
Ans. 

To delete the nth node from the end in a linked list, we can use a two-pointer approach.

  • Use two pointers, one to traverse the list and another to keep track of the nth node from the end.

  • Move the second pointer n steps ahead of the first pointer.

  • When the second pointer reaches the end of the list, the first pointer will be at the nth node from the end.

  • Adjust the pointers to delete the nth node.

View all Senior Software Engineer interview questions
A Software Development Engineer II was asked 12mo ago
Q. Explain the software practices followed in your projects, such as proper unit testing, CI/CD deployment process, and scrum practices.
Ans. 

I follow best software practices like unit testing, CI/CD, and Scrum to ensure quality and efficiency in my projects.

  • Unit Testing: I implement unit tests using frameworks like JUnit or NUnit to ensure individual components function correctly.

  • CI/CD: I use tools like Jenkins or GitHub Actions for continuous integration and deployment, automating the build and release process.

  • Scrum Practices: I participate in daily s...

View all Software Development Engineer II interview questions

Furlenco HR Interview Questions

5 questions and answers

Q. How will your overall experience help if you are selected at Furlenco?
Q. Describe the architecture of your project.
Q. Tell me about your past experience.
A Software Development Engineer II was asked 12mo ago
Q. How would you design a database to store categories, sub-categories, and further sub-categories? Consider the category menu list of Flipkart as an example.
Ans. 

Design a hierarchical database structure for categories and subcategories similar to Flipkart's menu list.

  • Use a self-referential table for categories.

  • Each category can have a parent category ID to establish hierarchy.

  • Example: 'Electronics' can have subcategories like 'Mobiles', 'Laptops'.

  • Subcategories can further have their own subcategories, e.g., 'Mobiles' can have 'Smartphones', 'Feature Phones'.

  • Consider adding...

View all Software Development Engineer II interview questions
Are these interview questions helpful?
A Software Development Engineer II was asked 12mo ago
Q. Design a parking lot using low-level design principles.
Ans. 

Design a parking lot system including classes, functions, and data structures.

  • Create a ParkingLot class with attributes like capacity, available spots, and a list of parking spots.

  • Implement a Vehicle class with attributes like license plate number, size, and type.

  • Design a ParkingSpot class with attributes like spot number, availability, and size.

  • Use data structures like arrays or lists to manage parking spots and ...

View all Software Development Engineer II interview questions
A Software Development Engineer II was asked 12mo ago
Q. Tell me about your background, based on the information in your resume.
Ans. 

Experienced software developer with a strong background in full-stack development and a passion for building scalable applications.

  • Graduated with a degree in Computer Science, where I developed a solid foundation in algorithms and data structures.

  • Worked at XYZ Corp for 3 years, focusing on developing RESTful APIs and improving application performance by 30%.

  • Led a team project that implemented a microservices archi...

View all Software Development Engineer II interview questions
A Software Engineer was asked
Q. What design questions would you ask to build a scalable microservice?
Ans. 

Design a scalable microservice architecture for handling high traffic and data efficiently.

  • Use stateless services to allow easy scaling; e.g., RESTful APIs that don't store session data.

  • Implement load balancing to distribute traffic evenly across instances; e.g., using Nginx or AWS ELB.

  • Utilize containerization (Docker) for consistent environments and easy deployment.

  • Incorporate a service registry (like Consul) for...

View all Software Engineer interview questions

Furlenco Interview Experiences

21 interviews found

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Explain your Project and resume based questions.
  • Q2. Architecture of your Project
  • Ans. 

    The project architecture is a microservices-based system for managing user data and interactions efficiently.

    • Microservices architecture allows independent deployment and scaling of services.

    • Each service communicates via REST APIs, e.g., user service, order service.

    • Data is stored in a distributed database like MongoDB for scalability.

    • Utilizes message queues (e.g., RabbitMQ) for asynchronous processing.

    • Frontend is built ...

  • Answered by AI
  • Q3. Database Design Question. How will you store category, sub-category and further subcategories in Database. Consider the category menulist list of Flipkart for example.
  • Ans. 

    Design a hierarchical database structure for categories and subcategories similar to Flipkart's menu list.

    • Use a self-referential table for categories.

    • Each category can have a parent category ID to establish hierarchy.

    • Example: 'Electronics' can have subcategories like 'Mobiles', 'Laptops'.

    • Subcategories can further have their own subcategories, e.g., 'Mobiles' can have 'Smartphones', 'Feature Phones'.

    • Consider adding attr...

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

(2 Questions)

  • Q1. Low-Level Design of Parking Lot.
  • Ans. 

    Design a parking lot system including classes, functions, and data structures.

    • Create a ParkingLot class with attributes like capacity, available spots, and a list of parking spots.

    • Implement a Vehicle class with attributes like license plate number, size, and type.

    • Design a ParkingSpot class with attributes like spot number, availability, and size.

    • Use data structures like arrays or lists to manage parking spots and vehic...

  • Answered by AI
  • Q2. Don't miss out interior details e.g. addressing parallel access using locks if needed.
  • Ans. 

    Discussing the importance of locks for parallel access in software development.

    • Use locks to prevent race conditions when multiple threads access shared resources.

    • Example: A bank account class where deposits and withdrawals must be synchronized.

    • Consider using read-write locks for scenarios with more reads than writes to improve performance.

    • Deadlocks can occur if locks are not managed properly; always acquire locks in a ...

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

(3 Questions)

  • Q1. Mixed of Technical and HR Round.
  • Q2. Resume based questions.
  • Ans. 

    Experienced software developer with a strong background in full-stack development and a passion for building scalable applications.

    • Graduated with a degree in Computer Science, where I developed a solid foundation in algorithms and data structures.

    • Worked at XYZ Corp for 3 years, focusing on developing RESTful APIs and improving application performance by 30%.

    • Led a team project that implemented a microservices architectu...

  • Answered by AI
  • Q3. Had to explain of software practices followed in my projects such as proper unit testing, CI/CD deployment process, scrum practices etc.
  • Ans. 

    I follow best software practices like unit testing, CI/CD, and Scrum to ensure quality and efficiency in my projects.

    • Unit Testing: I implement unit tests using frameworks like JUnit or NUnit to ensure individual components function correctly.

    • CI/CD: I use tools like Jenkins or GitHub Actions for continuous integration and deployment, automating the build and release process.

    • Scrum Practices: I participate in daily stand-...

  • Answered by AI

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 6 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Group Discussion 

Asked a few questions regarding my experience

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Delete nth node from end in linked list
  • Q2. Project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - revise your latest projects and technologies used thoroughly, prepare trees and linked list in DSA

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Kreeti Singh

posted on 10 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Design Questions to build a scalable micro service
  • Ans. 

    Design a scalable microservice architecture for handling high traffic and data efficiently.

    • Use stateless services to allow easy scaling; e.g., RESTful APIs that don't store session data.

    • Implement load balancing to distribute traffic evenly across instances; e.g., using Nginx or AWS ELB.

    • Utilize containerization (Docker) for consistent environments and easy deployment.

    • Incorporate a service registry (like Consul) for serv...

  • Answered by AI
  • Q2. Salary Discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Intradation And all tupe question

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Sell x item to me
  • Q2. Situation base scenarios
  • Q3. Industry expertise
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Complete details of vehicle allocation, loading & unloading space utilisation in vehicle Order cost
  • Ans. 

    Vehicle allocation, loading & unloading space utilization, and order cost details are crucial for efficient warehouse management.

    • Allocate vehicles based on size, weight, and destination of orders

    • Utilize loading and unloading space efficiently to maximize capacity

    • Track order cost including transportation, handling, and storage expenses

    • Implement systems for real-time monitoring and optimization of vehicle allocation and ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have depth knowledge about transportation vehicle utilisation
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. General questions about you
Round 3 - One-on-one 

(1 Question)

  • Q1. General questions about the company
Round 4 - One-on-one 

(1 Question)

  • Q1. Department lead will take a interview
Round 5 - One-on-one 

(1 Question)

  • Q1. Department manager will take a interview
Round 6 - One-on-one 

(1 Question)

  • Q1. Department head take interview
Round 7 - One-on-one 

(1 Question)

  • Q1. Management level interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Think we'll before going ahead with this organisation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Introduction and Work Experience
Round 2 - Assignment 

A Presentation on certain concepts.

Round 3 - Technical 

(1 Question)

  • Q1. Role related technical questions
Round 4 - HR 

(1 Question)

  • Q1. Cultural Fitment related questions.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Previous Job Profile
  • Ans. 

    Managed daily operations, oversaw staff, and ensured efficiency in previous role as Operations Manager.

    • Oversaw daily operations to ensure smooth functioning

    • Managed and motivated staff to meet performance goals

    • Implemented process improvements to increase efficiency

    • Collaborated with other departments to streamline operations

  • Answered by AI
  • Q2. How the overall experience will help if gets selected in Furlenco
  • Ans. 

    My overall experience in operations management will help me excel in a fast-paced environment like Furlenco.

    • I have successfully managed large teams and optimized processes to improve efficiency.

    • My experience in supply chain management will be beneficial in ensuring timely delivery of furniture to customers.

    • I have a track record of implementing cost-saving measures without compromising on quality.

    • My experience in handli...

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

(2 Questions)

  • Q1. Situation Handling
  • Q2. How do I plan to grow?
  • Ans. 

    I plan to grow by continuously seeking new challenges, learning new skills, and expanding my network.

    • Continuously seek new challenges to push myself out of my comfort zone

    • Focus on learning new skills and staying updated with industry trends

    • Expand my network by attending industry events, conferences, and networking with professionals

    • Set clear goals and create a roadmap for personal and professional growth

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

(2 Questions)

  • Q1. Strategy Plan for team performance.
  • Ans. 

    Develop a strategy plan to enhance team performance through clear goals, effective communication, and regular feedback.

    • Set clear and achievable goals for the team to work towards.

    • Establish open lines of communication to ensure everyone is on the same page.

    • Provide regular feedback and recognition to motivate team members.

    • Encourage collaboration and teamwork to leverage individual strengths.

    • Implement training and develop...

  • Answered by AI
  • Q2. How go is excel knowledge? Reports ?
  • Ans. 

    I have advanced Excel knowledge and experience in creating detailed reports.

    • Proficient in using advanced Excel functions and formulas

    • Experience in creating complex spreadsheets and data analysis

    • Skilled in generating detailed reports for senior management

    • Familiar with data visualization tools like pivot tables and charts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This was way back in 2019. 3-4 rounds . Starts with Operations Manager and Ends with VP.

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Furlenco?
Ask anonymously on communities.

Furlenco Interview FAQs

How many rounds are there in Furlenco interview?
Furlenco interview process usually has 2-3 rounds. The most common rounds in the Furlenco interview process are One-on-one Round, Technical and HR.
How to prepare for Furlenco 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 Furlenco. The most common topics and skills that interviewers at Furlenco expect are Warehouse, Recruitment, Dispatch, Continuous Improvement and Logistics.
What are the top questions asked in Furlenco interview?

Some of the top questions asked at the Furlenco interview -

  1. Database Design Question. How will you store category, sub-category and further...read more
  2. Don't miss out interior details e.g. addressing parallel access using locks if ...read more
  3. Had to explain of software practices followed in my projects such as proper uni...read more
What are the most common questions asked in Furlenco HR round?

The most common HR questions asked in Furlenco interview are -

  1. Where do you see yourself in 5 yea...read more
  2. Why are you looking for a chan...read more
  3. What are your strengths and weakness...read more
How long is the Furlenco interview process?

The duration of Furlenco interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 20 interview experiences

Difficulty level

Easy 22%
Moderate 78%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
2.5
 • 58 Interviews
Awign Enterprises Interview Questions
3.8
 • 37 Interviews
Tokopedia Interview Questions
4.1
 • 26 Interviews
CoLive Interview Questions
3.2
 • 25 Interviews
Meritto Interview Questions
3.5
 • 24 Interviews
Nestaway Interview Questions
3.8
 • 22 Interviews
AdamsBridge Global Interview Questions
3.7
 • 21 Interviews
Droom Interview Questions
3.7
 • 19 Interviews
Inshorts Interview Questions
3.8
 • 17 Interviews
Confluent Interview Questions
3.5
 • 16 Interviews
View all

Furlenco Reviews and Ratings

based on 202 reviews

3.5/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

3.3

Salary

2.9

Job security

3.4

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 202 Reviews and Ratings
Assistant Manager
49 salaries
unlock blur

₹5 L/yr - ₹9.5 L/yr

Senior Executive
42 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Senior Software Engineer
25 salaries
unlock blur

₹18 L/yr - ₹30 L/yr

Warehouse Executive
20 salaries
unlock blur

₹3.7 L/yr - ₹5.2 L/yr

Software Engineer
18 salaries
unlock blur

₹13.8 L/yr - ₹24 L/yr

Explore more salaries
Compare Furlenco with

MagicPin

2.6
Compare

Awign Enterprises

3.7
Compare

Nestaway

3.7
Compare

Ketto

4.0
Compare
write
Share an Interview