Upload Button Icon Add office photos

Falabella

Compare button icon Compare button icon Compare

Filter interviews by

Falabella Interview Questions and Answers

Updated 25 May 2025
Popular Designations

10 Interview questions

A Senior Android Developer was asked
Q. How would you handle production defects?
Ans. 

Prod defects are handled by identifying, prioritizing, and resolving them in a systematic manner.

  • Create a process for reporting and tracking defects

  • Prioritize defects based on impact and severity

  • Assign resources to investigate and fix defects

  • Perform root cause analysis to identify the underlying issues

  • Implement fixes and thoroughly test them before deploying

  • Communicate with stakeholders about the status and resolu...

View all Senior Android Developer interview questions
A Senior Android Developer was asked
Q. What is a suspend function?
Ans. 

A suspend function is a function that can be paused and resumed later without blocking the main thread.

  • Suspend functions are used in Kotlin coroutines to perform asynchronous operations.

  • They are defined using the 'suspend' keyword.

  • Suspend functions can only be called from other suspend functions or from coroutine scopes.

  • They can be used to perform network requests, database operations, or any other long-running ta...

View all Senior Android Developer interview questions
A Senior Android Developer was asked
Q. What is the difference between an activity and a fragment?
Ans. 

Activity is a single screen with a user interface, while Fragment is a modular section of an activity.

  • Activity represents a single screen with a user interface.

  • Fragment is a modular section of an activity that can be combined with other fragments to create a multi-pane UI.

  • Activities are used to handle user interactions and manage the lifecycle of an app.

  • Fragments are reusable components that can be added or remove...

View all Senior Android Developer interview questions
A Senior Android Developer was asked
Q. What are coroutines, and how do they work internally?
Ans. 

Coroutines are a concurrency design pattern in Kotlin that allow for asynchronous programming.

  • Coroutines are lightweight threads that can be used to perform non-blocking operations.

  • They are based on the concept of suspending functions, which can be paused and resumed.

  • Coroutines use a dispatcher to determine which thread or thread pool to run on.

  • They can be used to simplify asynchronous code and avoid callback hell...

View all Senior Android Developer interview questions
A Software Engineer was asked
Q. Design a tiny URL service that is scalable up to 10 million requests per year. Describe the algorithm used to ensure that every generated request is unique and that read operations are very efficient.
Ans. 

Design a scalable tiny URL service with unique requests and efficient read operation.

  • Use a hashing algorithm to generate unique short URLs from long URLs

  • Store the mappings in a distributed key-value store like Redis or Cassandra

  • Use a load balancer to distribute requests across multiple servers

  • Implement caching to improve read performance

  • Consider using a CDN to serve frequently accessed URLs

  • Implement rate limiting ...

View all Software Engineer interview questions
A Senior Leader Engineer was asked
Q. What is Multithreading What is a Load Balancer What is OS Scheduler, LRU cache, etc.?
Ans. 

Multithreading is the ability of a CPU to execute multiple threads concurrently. Load balancer distributes incoming network traffic across multiple servers. OS Scheduler manages the execution of processes. LRU cache is a cache eviction policy.

  • Multithreading allows multiple threads to run concurrently on a single CPU core.

  • Load balancer evenly distributes incoming network traffic across multiple servers to optimize ...

View all Senior Leader Engineer interview questions
A Senior Engineer was asked
Q. Garbage collection with example, Problem solving
Ans. 

Garbage collection is an automatic memory management process. It frees up memory occupied by objects that are no longer in use.

  • Garbage collection is used in programming languages like Java, Python, and C#.

  • It helps prevent memory leaks and improves program efficiency.

  • For example, in Java, the garbage collector runs periodically to identify and remove objects that are no longer referenced by the program.

  • Garbage coll...

View all Senior Engineer interview questions
Are these interview questions helpful?
A Senior Engineer was asked
Q. Java 8 features with code, Spring Boot, and Microservices in depth, was asked to write SQL queries.
Ans. 

Interview question on Java 8 features, Spring Boot, Microservices, and SQL queries for Senior Engineer role.

  • Java 8 features include lambda expressions, functional interfaces, streams, and default methods.

  • Spring Boot is a framework for building microservices with minimal configuration.

  • Microservices architecture involves breaking down a large application into smaller, independent services.

  • SQL queries are used to ret...

View all Senior Engineer interview questions
A Senior Engineer was asked
Q. Core concepts of JS
Ans. 

Core concepts of JavaScript include variables, data types, functions, objects, and control flow.

  • Variables are used to store data values.

  • Data types include strings, numbers, booleans, arrays, and objects.

  • Functions are blocks of code that can be called and executed.

  • Objects are collections of key-value pairs.

  • Control flow includes if statements, loops, and switch statements.

View all Senior Engineer interview questions
A Senior Android Developer was asked
Q. RxJava vs coroutines
Ans. 

RxJava is a library for composing asynchronous and event-based programs using observable sequences. Coroutines are a new way of writing asynchronous code in a sequential manner.

  • RxJava is based on the Observer pattern and uses operators to transform and combine observable sequences.

  • Coroutines are lightweight threads that can be suspended and resumed, allowing for sequential and structured concurrency.

  • RxJava is wide...

View all Senior Android Developer interview questions

Falabella Interview Experiences

15 interviews found

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Basic DSA questions
  • Q2. Basic framework questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good 2 set of problems

Round 2 - Aptitude Test 

Elitmus test in second round

Round 3 - Technical 

(2 Questions)

  • Q1. Basic string questions
  • Q2. Sub array question , easy in leetcode
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Related to Js topics
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Nov 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is Multithreading What is a Load Balancer What is OS Scheduler, LRU cache, etc.?
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently. Load balancer distributes incoming network traffic across multiple servers. OS Scheduler manages the execution of processes. LRU cache is a cache eviction policy.

    • Multithreading allows multiple threads to run concurrently on a single CPU core.

    • Load balancer evenly distributes incoming network traffic across multiple servers to optimize resou...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jan 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Hackerrank coding test, depending on domain. Around 15 MCQ and two coding questions.

Round 2 - Technical 

(3 Questions)

  • Q1. What is activity vs fragment
  • Ans. 

    Activity is a single screen with a user interface, while Fragment is a modular section of an activity.

    • Activity represents a single screen with a user interface.

    • Fragment is a modular section of an activity that can be combined with other fragments to create a multi-pane UI.

    • Activities are used to handle user interactions and manage the lifecycle of an app.

    • Fragments are reusable components that can be added or removed fro...

  • Answered by AI
  • Q2. What are coroutines, how do they work internally
  • Ans. 

    Coroutines are a concurrency design pattern in Kotlin that allow for asynchronous programming.

    • Coroutines are lightweight threads that can be used to perform non-blocking operations.

    • They are based on the concept of suspending functions, which can be paused and resumed.

    • Coroutines use a dispatcher to determine which thread or thread pool to run on.

    • They can be used to simplify asynchronous code and avoid callback hell.

    • Coro...

  • Answered by AI
  • Q3. What is suspend function
  • Ans. 

    A suspend function is a function that can be paused and resumed later without blocking the main thread.

    • Suspend functions are used in Kotlin coroutines to perform asynchronous operations.

    • They are defined using the 'suspend' keyword.

    • Suspend functions can only be called from other suspend functions or from coroutine scopes.

    • They can be used to perform network requests, database operations, or any other long-running tasks w...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. RxJava vs coroutines
  • Ans. 

    RxJava is a library for composing asynchronous and event-based programs using observable sequences. Coroutines are a new way of writing asynchronous code in a sequential manner.

    • RxJava is based on the Observer pattern and uses operators to transform and combine observable sequences.

    • Coroutines are lightweight threads that can be suspended and resumed, allowing for sequential and structured concurrency.

    • RxJava is widely us...

  • Answered by AI
  • Q2. Fragment lifecycle
Round 4 - One-on-one 

(1 Question)

  • Q1. How will you handle prod defects
  • Ans. 

    Prod defects are handled by identifying, prioritizing, and resolving them in a systematic manner.

    • Create a process for reporting and tracking defects

    • Prioritize defects based on impact and severity

    • Assign resources to investigate and fix defects

    • Perform root cause analysis to identify the underlying issues

    • Implement fixes and thoroughly test them before deploying

    • Communicate with stakeholders about the status and resolution ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Js concepts & internals, predict the o/p
  • Q2. Coding Question based on hashmap
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Related to Encapsulation in JS
  • Q2. Core concepts of JS
  • Ans. 

    Core concepts of JavaScript include variables, data types, functions, objects, and control flow.

    • Variables are used to store data values.

    • Data types include strings, numbers, booleans, arrays, and objects.

    • Functions are blocks of code that can be called and executed.

    • Objects are collections of key-value pairs.

    • Control flow includes if statements, loops, and switch statements.

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Coding Test 

It was mix up of technical and cognitive questions

Round 2 - Technical 

(1 Question)

  • Q1. Questions on java 8, Spring Boot, Microservices, Restful Webservices, With 2 coding questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical round 2 had questions regarding project, coding to be written for problem statement, garbage collection, exception. It was like a positive discussion than an interview.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion. Got offer letter within 2 working day.

Interview Preparation Tips

Topics to prepare for Falabella Senior Engineer interview:
  • Java
  • Java 8
Interview preparation tips for other job seekers - Brush up with core concepts of java and code well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. 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 - HR 

(1 Question)

  • Q1. Basic HR questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Tech question mostly related to projects
Round 4 - Group Discussion 

Ask question from the Director

I applied via Recruitment Consultant and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to JavaScript and react

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was good.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Falabella?
Ask anonymously on communities.

Falabella Interview FAQs

How many rounds are there in Falabella interview?
Falabella interview process usually has 2-3 rounds. The most common rounds in the Falabella interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Falabella 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 Falabella. The most common topics and skills that interviewers at Falabella expect are Agile Development, Continuous Integration, Javascript, Software Development and Analytical skills.
What are the top questions asked in Falabella interview?

Some of the top questions asked at the Falabella interview -

  1. Design tiny url service which should be scalable up to 10m requests a year. Der...read more
  2. Java 8 features with code, Spring Boot, and Microservices in depth, was asked t...read more
  3. What are coroutines, how do they work interna...read more
How long is the Falabella interview process?

The duration of Falabella 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

3.5/5

based on 10 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

MR.DIY Interview Questions
3.4
 • 37 Interviews
Inorbit Mall Interview Questions
4.2
 • 15 Interviews
Bazar India Interview Questions
3.7
 • 14 Interviews
JK Files Interview Questions
3.6
 • 10 Interviews
Tresor Systems Interview Questions
4.1
 • 10 Interviews
Kloud 9 Interview Questions
4.0
 • 10 Interviews
Osia Hypermart Interview Questions
3.4
 • 9 Interviews
View all

Falabella Reviews and Ratings

based on 105 reviews

3.2/5

Rating in categories

3.1

Skill development

3.4

Work-life balance

3.1

Salary

2.8

Job security

3.2

Company culture

2.5

Promotions

2.9

Work satisfaction

Explore 105 Reviews and Ratings
Senior Engineer
99 salaries
unlock blur

₹15.1 L/yr - ₹32.3 L/yr

Senior Software Engineer
81 salaries
unlock blur

₹12 L/yr - ₹35 L/yr

Software Engineer
47 salaries
unlock blur

₹10 L/yr - ₹24 L/yr

Lead Engineer
37 salaries
unlock blur

₹23 L/yr - ₹41 L/yr

Engineer
19 salaries
unlock blur

₹9 L/yr - ₹20.2 L/yr

Explore more salaries
Compare Falabella with

MR.DIY

3.4
Compare

Karuna Management Services

4.0
Compare

Bazar India

3.7
Compare

Citylife Retail

3.9
Compare
write
Share an Interview