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 Software Development Engineer II Interview Questions and Answers

Updated 24 Jul 2024

Furlenco Software Development Engineer II Interview Experiences

1 interview 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

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.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Aug 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Questions only, Oops concept, Android basic questions, work manager related, MVVM pattern, why kotlin?

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a well-motivated place in terms of work, they are really making the best use of technology that they can. The interview can be clarified by someone who has clear basics of technology, how things are really moving in technology. They are only examining the basics of technology.

Software Development Engineer II Interview Questions Asked at Other Companies

asked in Zepto
Q1. Given two large numeric comma-separated strings, calculate their ... read more
asked in Pine Labs
Q2. Design a system like Redbus with the following functional require ... read more
asked in Zepto
Q3. Design a file system similar to Google Drive, including file uplo ... read more
asked in Porter
Q4. 1. Given an array find a subset that sums to a given sum K 2. Giv ... read more
asked in Zepto
Q5. How many microservices do you own and at what scale do they handl ... read more

I appeared for an interview in Sep 2021.

Interview Questionnaire 

2 Questions

  • Q1. Logical with array arrangements
  • Q2. OPPS, Abstraction, interface, traits...

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be logically strong.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2023.

Round 1 - Technical 

(1 Question)

  • Q1. DSA - level order traversal, sliding window.
Round 2 - One-on-one 

(1 Question)

  • Q1. Atomic transaction in distributed system
  • Ans. 

    Atomic transactions ensure that all operations in a transaction are completed successfully or none at all in a distributed system.

    • Atomic transactions guarantee that all operations within a transaction are either all successful or all rolled back.

    • In distributed systems, atomic transactions are crucial for maintaining data consistency across multiple nodes.

    • ACID properties (Atomicity, Consistency, Isolation, Durability) a...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Time Window Map
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hour duration. Sliding window problem. On hacker rank platform. Expected to write a working code and solve it optimally/scalable solution.

Round 2 - Technical 

(1 Question)

  • Q1. Again a coding test. LLD + hash map. 1 hour on hacker rank.
  • Ans. 

    Design a system to manage user sessions using a hash map for efficient access and storage.

    • Use a hash map to store user sessions with session ID as the key and user data as the value.

    • Implement methods to create, retrieve, and delete sessions efficiently.

    • Consider session expiration and implement a cleanup mechanism.

    • Example: For a session ID 'abc123', store user data like { 'userId': 1, 'lastAccess': '2023-10-01T12:00:00Z...

  • Answered by AI

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.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Techical questions and coding questions related profile.
  • Q2. Basic concepts about your programming skills.
  • Ans. 

    I possess strong programming skills in various languages, focusing on problem-solving and software design principles.

    • Proficient in languages like Java, Python, and JavaScript, enabling versatile application development.

    • Experience with object-oriented programming (OOP) principles, such as encapsulation and inheritance, to create modular code.

    • Familiar with data structures and algorithms, optimizing performance; for examp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company and positive interview response and smooth interview process and recommend to join .
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Question on dsa and string theory along with oops concepts

Round 2 - Technical 

(1 Question)

  • Q1. Question on java strings and arrays
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 May 2022. 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 - Technical 

(2 Questions)

  • Q1. How can we improve the performance of a Front End System
  • Q2. What is Event Loop and give an example on how it works.
  • Ans. 

    Event Loop is a mechanism that allows JavaScript to handle multiple tasks simultaneously.

    • Event Loop is a part of JavaScript runtime that continuously checks the call stack and the task queue.

    • It prioritizes the tasks in the queue and pushes them to the call stack when it's empty.

    • This allows JavaScript to handle I/O operations and other asynchronous tasks without blocking the main thread.

    • Example: setTimeout() function ad...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep focusing on basics, JavaScript is a must, no matter what framework you use.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
Not Selected

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

Round 1 - Coding Test 

It was a 1 hour Technical screening round, coding question in java (you cna choose your own language). They asked a difficult version of regex matching question (Leetcode medium-hard).

Furlenco Interview FAQs

How many rounds are there in Furlenco Software Development Engineer II interview?
Furlenco interview process usually has 3 rounds. The most common rounds in the Furlenco interview process are One-on-one Round.
How to prepare for Furlenco Software Development Engineer II 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 Data Structures and Algorithms, Java, Java Spring Boot, OOPS and SDLC.
What are the top questions asked in Furlenco Software Development Engineer II interview?

Some of the top questions asked at the Furlenco Software Development Engineer II 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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more
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