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

Updated 29 Jul 2024

Furlenco Senior Software Engineer Interview Experiences

2 interviews found

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

(2 Questions)

  • Q1. Delete nth node from end in linked list
  • 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.

  • Answered by AI
  • 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

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 Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Program for a palindrome Number.
  • Ans. 

    Program to check if a number is a palindrome.

    • Convert the number to a string to easily check for palindrome

    • Reverse the string and compare it with the original string

    • If they are the same, the number is a palindrome

  • Answered by AI
  • Q2. React Lifecycle methods
  • Q3. Hooks in react?
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components.

    • Hooks were introduced in React 16.8.

    • They allow you to use state and other React features without writing a class.

    • Commonly used hooks include useState, useEffect, useContext, and useReducer.

    • Hooks must be used at the top level of your functional component.

    • Example: const [count, setCount] = useState(0);

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Create a High-level design
  • Ans. 

    Design a high-level architecture for a software system

    • Identify the main components of the system

    • Define the interactions between the components

    • Consider scalability, security, and performance

    • Choose appropriate technologies and frameworks

    • Create a diagram to visualize the architecture

  • Answered by AI
  • Q2. Questions on the design you created

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more

Top trending discussions

View All
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about Furlenco?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Design Facebook
  • Ans. 

    Designing Facebook involves creating a social networking platform with features like user profiles, news feed, messaging, and more.

    • Create a user registration and login system

    • Develop a news feed algorithm to display relevant content

    • Implement a messaging system for users to communicate

    • Design a user profile page with customizable options

    • Incorporate features like groups, events, and pages

    • Ensure scalability and security of ...

  • Answered by AI
  • Q2. Reverse the linked list
  • Ans. 

    Reverse a linked list

    • Iterative approach using three pointers

    • Recursive approach with base case and recursive call

    • In-place reversal using stack

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare system design fhf rhf rhd r rhrhf rhfbt rhrif jdbtj djht jdbbtb fjjt

Skills evaluated in this interview

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Ds algo questions
  • Q2. Js basics
  • Q3. React.js

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good you should mainly focus on Ds algo part and basics of Js or other technology for which you are applying .

Interview Questionnaire 

1 Question

  • Q1. Three 2d matrix questions in first round from leetcode. One was simple dp question. Two questions in second round one questions was on trees. One questions was of strings. In third round which was engineer...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DSA medium leetcode questions - easy to solve

Round 2 - Coding Test 

DSA medium 2 questions and core questions 1.5 hrs

Round 3 - HR 

(5 Questions)

  • Q1. Managerial round and company fit check
  • Q2. Tell about company
  • Q3. Why should we hire you?
  • Q4. Tell something not in your resume
  • Q5. How would you handle deadlines?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA and core concepts and be confident
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Increasing triple subsequence, rest is easy hashmap

Are these interview questions helpful?
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql join questions
  • Q2. Python decorartors
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Class vs struct
  • Ans. 

    Classes are reference types; structs are value types. Classes support inheritance, while structs are more lightweight and efficient.

    • Classes support inheritance, allowing for polymorphism.

    • Structs are value types, meaning they are copied on assignment.

    • Classes are reference types, meaning they are accessed via references.

    • Structs are generally more memory efficient for small data structures.

    • Example: class Person { string N...

  • Answered by AI
  • Q2. Thread question

Interview Preparation Tips

Interview preparation tips for other job seekers - Not well
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops Inheritance and Incapsulation

Furlenco Interview FAQs

How many rounds are there in Furlenco Senior Software Engineer interview?
Furlenco interview process usually has 1-2 rounds. The most common rounds in the Furlenco interview process are Technical.
How to prepare for Furlenco Senior 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 Mining and Data Structures.
What are the top questions asked in Furlenco Senior Software Engineer interview?

Some of the top questions asked at the Furlenco Senior Software Engineer interview -

  1. Program for a palindrome Numb...read more
  2. delete nth node from end in linked l...read more
  3. create a High-level des...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Furlenco Senior Software Engineer Salary
based on 26 salaries
₹12 L/yr - ₹30 L/yr
42% more than the average Senior Software Engineer Salary in India
View more details

Furlenco Senior Software Engineer Reviews and Ratings

based on 4 reviews

2.5/5

Rating in categories

3.1

Skill development

2.2

Work-life balance

2.8

Salary

2.2

Job security

2.5

Company culture

2.8

Promotions

2.5

Work satisfaction

Explore 4 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
26 salaries
unlock blur

₹12 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 L/yr - ₹24 L/yr

Explore more salaries
Compare Furlenco with

MagicPin

2.5
Compare

Awign Enterprises

3.8
Compare

Nestaway

3.8
Compare

Ketto

4.0
Compare
write
Share an Interview