Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by FE fundinfo Team. If you also belong to the team, you can get access from here

FE fundinfo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

FE fundinfo Senior Software Developer Interview Questions and Answers

Updated 17 Mar 2025

FE fundinfo Senior Software Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Design patterns
  • Q2. Azure questions
  • Q3. Technical experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Behavioural Questions
  • Q2. Technical challenges
Round 3 - HR 

(2 Questions)

  • Q1. Benefits and Organisation info
  • Q2. Basic screening
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. SOLID patterns and design
  • Q2. Explain current project and problems solved

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Freshworks
Q2. Overlapping Intervals Problem Statement You are given the start a ... read more
asked in Freshworks
Q3. Middle of Linked List Problem Statement Given the head node of a ... read more
asked in SAP
Q4. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Freshworks
Q5. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more

Top trending discussions

View All
Interview Tips & Stories
2w
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 FE fundinfo?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. SOLID Principals 2. Design Patterns 3. Oops concepts 4. WPF Interview questions.
Round 2 - Technical 

(1 Question)

  • Q1. 1. Domain related questions 2. Managerial Round and Director round.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Mostly follow agile scrum methodology as work environment.
2. Very good work culture.
3. Currently working from home.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. First round was hackerrank . with two questions medium level. second round - One leetcode style medium question third round - leetcode medium question fourth round - design LRU cache implementation Fifth r...
  • Q2. Round 3 : Trapping rain water Design round : LLD design parking lot with all classes and interface

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice data structures, algorithms, and system design.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Related to thread
  • Q2. Graph - dfs, bfs
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2022. There were 3 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. Python Basic questions
  • Q2. Diffrence Between tuple and list
  • Ans. 

    Tuple is immutable and fixed in size, while list is mutable and can change in size.

    • Tuple is defined using parentheses, while list is defined using square brackets.

    • Tuple elements can be accessed using index, while list elements can be modified using index.

    • Tuple is faster than list for iteration and accessing elements.

    • Example: tuple = (1, 2, 3), list = [1, 2, 3]

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Python Basic with some puzzles

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Project based schenario development

Round 3 - Technical 

(1 Question)

  • Q1. Java 8 interview questions Spring boot Microservices GIT and Maven REST
Round 4 - HR 

(1 Question)

  • Q1. Experience Journey CTC discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of your skills should be good
Communication should be ok
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is dependancy Injection?
  • Ans. 

    Dependency Injection is a design pattern where the dependencies of a class are provided from the outside rather than created within the class itself.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between classes

    • Improves code reusability and maintainability

    • Commonly implemented using frameworks like Spring in Java

  • Answered by AI
  • Q2. How We maintain security in Application?
  • Ans. 

    Maintaining security in applications involves implementing encryption, authentication, authorization, and regular security audits.

    • Implement encryption to protect data in transit and at rest

    • Use strong authentication mechanisms like multi-factor authentication

    • Implement proper authorization controls to restrict access to sensitive data

    • Regularly conduct security audits and penetration testing to identify vulnerabilities

  • Answered by AI

Skills evaluated in this interview

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

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

  • Q1. What are the different design patterns used in C#?
  • Q2. What are the SOLID principles in software development?
  • Q3. What is the MVVM pattern in WPF (Windows Presentation Foundation)?
  • Q4. Write a code in C# for implementing the Singleton design pattern.
  • Ans. 

    The Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • 1. A Singleton class has a private constructor to prevent instantiation from outside.

    • 2. It holds a static reference to its own instance.

    • 3. It provides a public static method to access the instance.

    • 4. Thread safety can be achieved using locking mechanisms or lazy initialization.

  • Answered by AI
  • Q5. What is the difference between an abstract class and an interface?
  • Ans. 

    Abstract classes can have implementations; interfaces cannot. Both define contracts for derived classes.

    • Abstract classes can contain both abstract methods (without implementation) and concrete methods (with implementation).

    • Interfaces can only contain method signatures (abstract methods) and properties, with no implementation.

    • A class can inherit from only one abstract class (single inheritance), but it can implement mul...

  • Answered by AI
  • Q6. What is the difference between .NET Framework and .NET Core?
  • Ans. 

    The .NET Framework is Windows-only, while .NET Core is cross-platform and modular, designed for modern app development.

    • .NET Framework is primarily for Windows applications, whereas .NET Core supports Windows, macOS, and Linux.

    • .NET Core is open-source and has a modular architecture, allowing developers to include only the necessary components.

    • .NET Framework includes Windows-specific features like Windows Forms and WPF, ...

  • Answered by AI
  • Q7. What is the concept of async and await in C#?
  • Q8. What major challenges did you faced in your previous experiences while developing application?
  • Ans. 

    Faced challenges in scalability, team collaboration, and integrating new technologies during application development.

    • Scalability issues: In a previous project, our application faced performance bottlenecks during peak usage, requiring us to refactor the architecture.

    • Team collaboration: Coordinating between remote teams led to miscommunication; we implemented daily stand-ups to improve alignment.

    • Integration of new techn...

  • Answered by AI
  • Q9. What is the purpose of using JOIN in SQL Server?
  • Q10. What is polymorphism in C#?

I applied via Naukri.com and was interviewed before Dec 2021. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

It was overall an easy test. It had Aptitude , logical reasoning and technical questions.

Round 3 - Coding Test 

It had 2 coding questions. , Both were moderate level questions

Round 4 - Technical 

(2 Questions)

  • Q1. It was overall a good technical round
  • Q2. Be clear with whatever you write in your resume.
Round 5 - One-on-one 

(1 Question)

  • Q1. Tell me something about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with whatever you say. Be clear with your programming language concepts

FE fundinfo Interview FAQs

How many rounds are there in FE fundinfo Senior Software Developer interview?
FE fundinfo interview process usually has 3 rounds. The most common rounds in the FE fundinfo interview process are Technical, One-on-one Round and HR.
What are the top questions asked in FE fundinfo Senior Software Developer interview?

Some of the top questions asked at the FE fundinfo Senior Software Developer interview -

  1. Explain current project and problems sol...read more
  2. Behavioural Questi...read more
  3. SOLID patterns and des...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
FE fundinfo Senior Software Developer Salary
based on 4 salaries
₹31.6 L/yr - ₹35 L/yr
125% more than the average Senior Software Developer Salary in India
View more details

FE fundinfo Senior Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Data Analyst
141 salaries
unlock blur

₹2.5 L/yr - ₹5.1 L/yr

Senior Data Analyst
57 salaries
unlock blur

₹3.3 L/yr - ₹7.6 L/yr

Product Support Analyst
17 salaries
unlock blur

₹5.4 L/yr - ₹8.7 L/yr

Senior Product Developer
15 salaries
unlock blur

₹10.5 L/yr - ₹33 L/yr

Deputy Team Leader
14 salaries
unlock blur

₹6.5 L/yr - ₹12 L/yr

Explore more salaries
Compare FE fundinfo with

FIS

3.9
Compare

Angel One

3.8
Compare

Broadridge Financial Solutions

3.9
Compare

AGS Transact Technologies

2.9
Compare
write
Share an Interview