Upload Button Icon Add office photos

Falabella

Compare button icon Compare button icon Compare

Filter interviews by

Falabella Software Engineer Interview Questions and Answers

Updated 6 May 2022

Falabella Software Engineer Interview Experiences

2 interviews found

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Design tiny url service which should be scalable up to 10m requests a year. Derive the algorithm such as every request that the system generates is unique and read operation should be very efficient for ob...
  • 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 and t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DS, Algo and system designing.

Skills evaluated in this interview

I applied via Approached by company and was interviewed in May 2021. There were 2 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 

They shared me link for Hacker rank assessment with 2 coding questions

Interview Preparation Tips

Topics to prepare for Falabella Software Engineer interview:
  • Java
  • REST API
  • Coding
  • Selenium
  • Github
Interview preparation tips for other job seekers - Practice Hacker rank questions to get through coding round.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

- write code for permutations & combination out of n numbers with k possibilities

Round 2 - Technical 

(3 Questions)

  • Q1. - diff between generator & decorator - write code for recursive decorator
  • Ans. 

    Generator produces a sequence of values while decorator adds functionality to an existing function. Recursive decorator calls itself within the decorator function.

    • Generator produces values lazily while decorator enhances functionality of a function.

    • Generators use 'yield' keyword to yield values one at a time.

    • Decorators use '@' symbol to apply additional functionality to a function.

    • Example of recursive decorator: def re...

  • Answered by AI
  • Q2. Explain generators
  • Ans. 

    Generators are functions in Python that allow you to pause and resume execution, yielding multiple values over time.

    • Generators are defined using a function with 'yield' statements instead of 'return'.

    • They can be iterated over using a for loop or by calling the next() function.

    • Generators are memory efficient as they do not store all values in memory at once.

    • They are useful for generating large sequences of values or pro...

  • Answered by AI
  • Q3. Sample application using flask
  • Ans. 

    A sample application using Flask, a Python web framework

    • Create a virtual environment for the project

    • Install Flask using pip

    • Create routes and views for different pages

    • Use templates to render HTML pages

    • Connect to a database using Flask-SQLAlchemy

  • Answered by AI

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: It was allowed for all the students even thought after keeping the cut off as 6.5. There was a less turnout to the company. There was an aptitude test for ece/eee ( there was java test for cse/mca). There was sectional cutoff. For aptitude they gave 50 questions for 1:10 min. The cutoff is 60% in aptitude. It is quite easier and a little grip on aptitude will do the trick (aptitude includes verbal too). There was only 7 students who got shortlisted from ece/eee.

Round: HR Interview
Experience: The main criteria for this company is your 10th and 12th maths marks. They asked me to explain my summer and final year project. Some basic HR questions like What motivates you, How do u see yourself in this company. It is so simple that you need not fear at all.

General Tips: If your 10th and 12th standard maths grades are superb then you are almost in to the company. They wont ask anything on core and software. They just ask projects. Its the simplest interview i have ever faced. So keep calm and be confident.
The overall experience was quite easy. It selection process started at 11am and i got offer at 4 pm. The interviewer was friendly.
Skill Tips: It was not aiming at all for this company. A firm grip on aptitude skills is enough if you are from ece/eee. If you are from cse/mca your java skills should be good to cross the cutoff. Just practice aptitude from any book you find.
Don't panic at all. As this was my 7th interview i was not at all nervous. Every one in the campus will get placed for sure. Just wait for the time to come. Keep preparing for the companies daily and always have a good grip on your projects. It will be asked in every company all most.
Skills:
College Name: NIT Surathkal

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a resume as per the standards laid down by our placement cell. The company did not look at the resume I had with me and it was just a formality.

Round: Test
Experience: The written test had questions on C programming. The topics from C were basically related to pointers, operators and functions. The paper also had questions from Digital Electronics. These were mostly from chips and registers. There was another section for Aptitude also in the test. There were questions from simple electronics as well but I had no idea about them. The duration of the test was around 1 hour.
Tips: For Written test i would recommend ‘C by Yashwant Kanetkar’ and the book by Salle Mahanand for Digital Electronics.

Round: Technical Interview
Experience: The first interview was a technical interview. The whole interview revolved around the concept of Bit wise operator which is a concept in C. They also asked me questions on Digital electronics which were mainly based on the layout of NAND, AND, OR Gates. They were not sure about my proficiency in C so they also asked me to code some simple problems in C. The technical interview lasted pretty long.

Round: HR Interview
Experience: The second round was an HR Interview. It was simply a formality for those who had performed well in the technical interview. They asked me general questions about the talk they had given as well as they enquired about me and my family background.
Tips: The company looks for people who are proficient in C. So, in depth knowledge of the language is needed before the interview.

College Name: SGSITS INDORE
Motivation: For ITTIAM solutions I read about the technology it works in which is embedded software, Smart Phones and Protection of IC. I also consulted my seniors and people who work in ITTIAM solution to get more insight about the company profile.

Interview Questionnaire 

12 Questions

  • Q1. Reverse an array inplace. -4 input AND gate using 2 input AND gates.give 2 ways and compare both.how will you identify which is better if both are given in a black box. -swap elements without using temp,in...
  • Ans. 

    Questions on array manipulation and logic gates.

    • To reverse an array inplace, swap the first and last elements and continue swapping towards the middle.

    • To implement a -4 input AND gate using 2 input AND gates, use two 2-input AND gates and connect their outputs to a third 2-input AND gate.

    • To compare two black box implementations of an AND gate, test their output for all possible input combinations and compare the result...

  • Answered by AI
  • Q2. -AND gate using multiplexer
  • Ans. 

    AND gate can be implemented using a 2:1 multiplexer.

    • Connect both inputs of the AND gate to the select line of the multiplexer.

    • Connect one input of the multiplexer to 0 and the other input to the second input of the AND gate.

    • The output of the multiplexer is the output of the AND gate.

  • Answered by AI
  • Q3. -calculation of stack space used by a combination of functions and which used for storage of different data types
  • Ans. 

    To calculate stack space used by functions and data types, we need to consider their sizes and memory allocation.

    • Calculate the size of each data type used in the functions

    • Determine the number of variables declared in each function

    • Multiply the size of each variable by the number of times it is declared

    • Add up the total size of all variables in each function

    • Add the sizes of all functions together to get the total stack sp

  • Answered by AI
  • Q4. Threads and processes
  • Q5. Copyfunc(char* source,char* destination,int length) - write a copy function...give test cases
  • Q6. -if you have to AND n inputs,how many AND gates will be required? (I said n-1 and he asked me to prove it mathematically)
  • Ans. 

    To AND n inputs, n-1 AND gates are required.

    • Each input needs to be connected to an AND gate except for the last input which is connected to the output.

    • The output of each AND gate is connected to the input of the next AND gate.

    • This results in n-1 AND gates being required for n inputs.

  • Answered by AI
  • Q7. Func(char a,int bit_postion) - func shud reset the bit at position bit_position in char a and return character
  • Q8. What is stack? Where is it used? (i said function calls) What exactly happens in function calls?
  • Ans. 

    Stack is a data structure used to store and manage function calls.

    • Stack is a LIFO (Last In First Out) data structure.

    • It is used to store function calls, local variables, and return addresses.

    • Pushing onto the stack adds a new element to the top, popping removes the top element.

    • Stack overflow occurs when the stack size exceeds its limit.

    • Example: recursive function calls use the stack to store return addresses and local v

  • Answered by AI
  • Q9. Where do local variables go? Why is stack used for function calls? Can you perform arithmetic operations directly on data stored in stacks?
  • Ans. 

    Local variables go on the stack. Stack is used for function calls due to its LIFO nature. Arithmetic operations can be performed on stack data.

    • Local variables are stored on the stack frame of the function they are declared in.

    • Stack is used for function calls because it allows for easy management of function call frames in a LIFO manner.

    • Arithmetic operations can be performed on data stored in the stack by first popping ...

  • Answered by AI
  • Q10. You are given a 32 bit no. two bit positions say m and n are given. extract the pattern between m and n. e.g. 01100111110001011100100101011111 m=10,n=20; from m to n i have "...
  • Ans. 

    Extract a pattern between two given bit positions in a 32-bit number.

    • Convert the number to binary string.

    • Extract the substring between the given positions.

    • Convert the substring back to decimal if needed.

    • Handle edge cases like invalid positions or overlapping positions.

  • Answered by AI
  • Q11. Find the transpose of a 2*2 square matrix(in place)
  • Ans. 

    Transpose a 2*2 square matrix in place

    • Swap the elements at (0,1) and (1,0) indices

    • No need to swap elements at (0,0) and (1,1) indices

    • Example: [[1,2],[3,4]] -> [[1,3],[2,4]]

  • Answered by AI
  • Q12. -ittiam is just 10-11 yrs old,what do you know about it and why do you want to join it?
  • Ans. 

    Ittiam is a 10-11 year old software company.

    • Ittiam specializes in video and audio codecs.

    • It has a strong presence in the semiconductor industry.

    • It has partnerships with major players like Intel, Qualcomm, and Sony.

    • I want to join Ittiam because of its innovative work and growth potential.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience:
c,dlda,dsp......unsigned characters,function pointers,time and space used by different functions performing the same task and several unconventional things were asked.
:14 shortlisted after apti

Round: Technical Interview
Experience: a few questions to check your creativity(only 30 sec given to solve)viz...convert roman 9(IX) to six.
-mostly he spoke on what should i do......i came across as a very strong person who is very insecured and wants to do everything better than others...he made me realise that its not possible.no one has enough skills for that....enjoy your life.dont sulk and take too much pressure
do something because you like to do it and not for any competition(not even with yourself).
-
Tips: (dos and donts)
-common interview related questions definitely help.find them on internet.
-only c is sufficient but not the marks oriented c that we did in 1st sem.
-a completely different side of c where things we generally dont use or bother about is asked.
like unsigned nos,program stack space,function ptrs,etc.
its very important to clear apti first,which is COMPLETELY different from interviews and definitely more difficult.
do try to think loud during interviews and make them stop you if you r thinking in wrong direction.
-at the end,IT HAS TO BE YOUR DAY

College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

Skills evaluated in this interview

I appeared for an interview before Aug 2016.

Interview Questionnaire 

1 Question

  • Q1. Why you selected our company to grow up your IT career?
  • Ans. 

    I selected your company for its reputation in the industry, opportunities for growth, and innovative projects.

    • Reputation in the industry - Your company is known for its cutting-edge technology and successful projects.

    • Opportunities for growth - I see potential for career advancement and skill development within your organization.

    • Innovative projects - I am excited about the chance to work on challenging and innovative pr...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Duration: 30 minutes

College Name: Gandhi Institute Of Engineering And Technology

I applied via Recruitment Consultant and was interviewed before Apr 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. All technical questions based on topics what we mentioned in resume
  • Q2. Oops concepts, Abstraction, Collections
  • Q3. They will go through company norms and about bond
  • Q4. Will forwarded to Manager, he will check analytical skills and our thinking towards an problem

Interview Preparation Tips

Round: Test
Experience: Program execution round like one page we have to enter two names in input fields and when click on submit it should show some success response in one more new page

General Tips: My interview was quite easy and simple
Skills: Algorithmic Approach To Problem Solving, Technical Skill, Java Programming, Communication
Duration: <1 week

Software Engineer Interview Questions & Answers

American Megatrends user image R. Arockia Ratheesh Sahayaraj

posted on 6 Nov 2015

Interview Preparation Tips

Round: Test
Experience: Only 24 people from my campus attended the placement process of this company.The experience wasn't really good.I wasn't 
short-listed for next round as my CGPA was 7.5 and need was of above 7.5 ,as they were maintaining standards.

Round: Test
Experience: 1.C aps was really tough.
2.Section 2 we had to choose either Microprocessor or Java,I preferred microprocessor . 3.Simple Questions on 8085 and 8086 instruction set was asked.
4.How much memory are there are 20 address lines,
5.Difference between SRAM and DRAM.
6.ROM is used for stack or not.
7.What are contents of Stack Pointer after PUSH and POP operation.
8.What happens after RET instruction?
9.What is CMC equivalent instruction?

Round: Test
Experience: 16 questions on Quant which are :-
Odd number in a series, Area and Volume, Games of Skill, Time and Work, Average, Trains, Boats 
and Streams, Profit and Gain were asked.
If no. of handshakes is 66,find total number of People.?
A lotus in a pond doubles in size everyday,if it fills the pond on 20th day,when will be the pond would be half?
LOGICAL REASONING-
4 men are on the side of a bridge.One torch light is with them and without it they cannot cross 
the bridge.The bridge can withstand only 2 people at a time.The time required by the persons are 1 
min,2 mins,7 mins,10 mins respectively.Find the shortest time required by all of em to cross the
bridge.
(Answer: 17 minutes)

Round: SOFT SKILLS
Experience: scenario based questions were asked:-
1.working on a project in your company and your brother is in urgent need of a project.What will you do?
2.Your friend mails the project details to some other company.what will be you reaction?
3.Your boss allows to take your team members for a treat.Whether you choose costly one or within budget?
4.Your favorite subject in your curriculum and Why?
5.Where you would view yourself in 5 years?
6.What is a dream company in your terms?
7.Any situation were your work was criticized and what was your reaction?

Skills:
College Name: Anna University Chennai

Interview Preparation Tips

Round: Resume Shortlist
Experience: Assignment submission. Prelimnary process was an assignment to be submitted in java.

Round: Test
Duration: 60 minutes

Round: Interview
Experience: Live coding Interview 1 (1:30)

Live coding Interview 2 (1:30)

Technical interview was 2 part. 1 part dealt with knowledge of algorithms. Basis algo problems were to be coded and run. 2 part dealt with questions about the submitted assignment.

Round: Interview
Experience: HR Interview (1 hr)

In HR, the HR just hands the job offer and talks of life, universe and everything. It will be the best moment of your life in case u reach here.

Skill Tips: Study java from deitel and online course of Algorithms1 from stanford university on courser. This would definitely do.
Skills: Java, Algorithms
College Name: IIT Roorkee

Falabella Interview FAQs

How many rounds are there in Falabella Software Engineer interview?
Falabella interview process usually has 2 rounds. The most common rounds in the Falabella interview process are Resume Shortlist and Coding Test.

Tell us how to improve this page.

Falabella Software Engineer Salary
based on 35 salaries
₹10 L/yr - ₹24 L/yr
85% more than the average Software Engineer Salary in India
View more details

Falabella Software Engineer Reviews and Ratings

based on 6 reviews

3.8/5

Rating in categories

3.1

Skill development

3.7

Work-life balance

2.6

Salary

3.6

Job security

3.8

Company culture

2.9

Promotions

3.9

Work satisfaction

Explore 6 Reviews and Ratings
Senior Engineer
96 salaries
unlock blur

₹14.2 L/yr - ₹32 L/yr

Senior Software Engineer
44 salaries
unlock blur

₹13.9 L/yr - ₹31.8 L/yr

Software Engineer
35 salaries
unlock blur

₹10 L/yr - ₹24 L/yr

Lead Engineer
35 salaries
unlock blur

₹22 L/yr - ₹41 L/yr

Engineer
20 salaries
unlock blur

₹6 L/yr - ₹20.2 L/yr

Explore more salaries
Compare Falabella with

MR.DIY

3.3
Compare

Karuna Management Services

4.1
Compare

Bazar India

3.7
Compare

Citylife Retail

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