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
3.4

based on 178 Reviews

Filter interviews by

Furlenco Software Engineer Interview Questions and Answers

Updated 10 Jul 2024

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Python Theory questions, Memory management
  • Q2. Basic Data Structures and Algorithms
Round 2 - Technical 

(2 Questions)

  • Q1. Basic data structure and algorithms
  • Q2. Development and deployment of python django projects
  • Ans. 

    Python Django is a popular web framework for developing and deploying web applications.

    • Use virtual environments to manage dependencies

    • Utilize Django's built-in admin interface for managing data

    • Deploy Django projects using platforms like Heroku or AWS

    • Consider using Docker for containerization

    • Implement continuous integration and deployment pipelines

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. High Level Design Components

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

2 dsa questions of easy/medium

Round 2 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcodeeasy/medium
Round 3 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcode easy/medium
Round 4 - Behavioral 

(1 Question)

  • Q1. Asked one dsa question on tree and discussion on resume and dbms os
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Ans. 

    Count the number of islands in a grid of '1's and '0's

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

    • Increment the island count for each new island found

    • Ensure to handle boundary cases and check for visited nodes

  • Answered by AI
  • Q2. First and last index of a particular element in an array
  • Ans. 

    Find the first and last index of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the first and last index once the iteration is complete.

    • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Oops Inheritance and Incapsulation

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Concurrency related general question

Interview Preparation Tips

Interview preparation tips for other job seekers - Concurrency related questions, prepare well on multithreading, locks.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 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 - Technical 

(2 Questions)

  • Q1. DSA round and medium level
  • Q2. Merge sort type/variation
Round 3 - Technical 

(1 Question)

  • Q1. Data Structure and Algorithms
Round 4 - Technical 

(1 Question)

  • Q1. System Design LLD round

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Merge the two list which has different intervals. So merge them on the basis where they are overlapping.
  • Ans. 

    Merge two lists with different intervals based on overlapping intervals.

    • Sort both lists based on start time.

    • Iterate through both lists and compare intervals for overlap.

    • Merge overlapping intervals and add non-overlapping intervals to the result list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more of the competitive coding interview questions, such as from the coding practice website like leetcode, careercup, geekfor geeks.

Skills evaluated in this interview

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

(5 Questions)

  • Q1. What are decorators
  • Ans. 

    Decorators are functions that modify the behavior of other functions or methods.

    • Decorators are used to add functionality to existing functions without modifying their code.

    • They are commonly used in Python to modify the behavior of functions or methods.

    • Decorators are often used for logging, authentication, caching, and more.

    • Example: @staticmethod or @classmethod decorators in Python.

  • Answered by AI
  • Q2. What is python and is application
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability, commonly used for web development, data analysis, artificial intelligence, and more.

    • Python is versatile and can be used for various applications such as web development, data analysis, artificial intelligence, scientific computing, and automation.

    • It is known for its clean syntax and readability, making it a popular choice for beginner...

  • Answered by AI
  • Q3. What oops define it with coding examples
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: creating new classes based on existing classes

    • Polymorphism: the ability for objects to be treated as instances of their parent class

    • Abstraction: hiding the complex implementation details and showing only th

  • Answered by AI
  • Q4. Write a code to print infinite fibonacci series
  • Ans. 

    Use a loop to continuously calculate and print Fibonacci numbers

    • Use a loop to calculate the next Fibonacci number by adding the previous two numbers

    • Print each Fibonacci number as it is calculated

    • Consider using a while loop to continuously calculate and print Fibonacci numbers

  • Answered by AI
  • Q5. Write a code to check palindrome using two pointer
  • Ans. 

    Code to check palindrome using two pointers in an array of strings

    • Initialize two pointers, one at the start of the string and one at the end

    • Compare characters at the two pointers, moving them towards each other until they meet or cross

    • If all characters match, the string is a palindrome

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. 2 DSA leetcode (1 medium , 1 hard)
Round 2 - Technical 

(1 Question)

  • Q1. Same round 1 2 DSA leetcode questions (1 hard , 1 medium)
Round 3 - Technical 

(1 Question)

  • Q1. It was the hiring manager round, it started with the LRU cache algorithm and went deep in the system design

Furlenco Interview FAQs

How many rounds are there in Furlenco Software Engineer interview?
Furlenco interview process usually has 1 rounds. The most common rounds in the Furlenco interview process are One-on-one Round.
How to prepare for Furlenco Software Engineer 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 Apache, Billing, Coding, Data Structures and Logistics Management.

Tell us how to improve this page.

Furlenco Software Engineer Salary
based on 22 salaries
₹9 L/yr - ₹25 L/yr
141% more than the average Software Engineer Salary in India
View more details

Furlenco Software Engineer Reviews and Ratings

based on 9 reviews

2.6/5

Rating in categories

2.8

Skill development

2.5

Work-Life balance

2.8

Salary & Benefits

1.6

Job Security

2.5

Company culture

2.6

Promotions/Appraisal

2.5

Work Satisfaction

Explore 9 Reviews and Ratings
Assistant Manager
53 salaries
unlock blur

₹4.2 L/yr - ₹9.5 L/yr

Senior Executive
45 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Software Engineer
22 salaries
unlock blur

₹9 L/yr - ₹25 L/yr

Warehouse Executive
20 salaries
unlock blur

₹3.1 L/yr - ₹4.7 L/yr

Senior Software Engineer
19 salaries
unlock blur

₹18 L/yr - ₹32 L/yr

Explore more salaries
Compare Furlenco with

RentoMojo

4.3
Compare

Cityfurnish

3.2
Compare

GrabOnRent

5.0
Compare

Guarented

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview