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 18 Jun 2024

FE fundinfo Senior Software Developer Interview Experiences

1 interview 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 questions from similar companies

I applied via Approached by Company and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How would you write a REST API from scratch? Explain your role in the project.
  • Ans. 

    To write a REST API from scratch, I would follow these steps:

    • Define the resources and endpoints

    • Choose a programming language and framework

    • Implement CRUD operations for each resource

    • Use HTTP methods and status codes correctly

    • Add authentication and authorization

    • Test the API using tools like Postman

    • Document the API using tools like Swagger

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There are two rounds of technical and one hr.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Overall on SQL interview questions.
  • Q2. Triiggers, sp, function , some queries to build

Interview Preparation Tips

Interview preparation tips for other job seekers - Good SQL knowledge is required

Interview Questionnaire 

1 Question

  • Q1. Core Java and aws

Interview Questionnaire 

1 Question

  • Q1. Basic Questions of Oops and MVC

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Web Api, authentication

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview
Prepare and be procise
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2023. 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 

(5 Questions)

  • Q1. Pagination in SQL
  • Ans. 

    Pagination in SQL allows for displaying a subset of query results at a time.

    • Use LIMIT and OFFSET clauses in SQL queries to implement pagination.

    • LIMIT specifies the maximum number of rows to return.

    • OFFSET specifies the number of rows to skip before starting to return rows.

  • Answered by AI
  • Q2. OOPS concepts.. SOILD design principles
  • Q3. Thread vs task in multiprocessing.. explain with examples
  • Ans. 

    Threads and tasks are both used in multiprocessing, but have different characteristics and use cases.

    • Threads are lightweight processes within a single process, sharing memory space. They are managed by the operating system.

    • Tasks are units of work that can be executed asynchronously. They are typically managed by a task scheduler.

    • Threads are suitable for parallel processing and improving performance, while tasks are use...

  • Answered by AI
  • Q4. ViewBag vs Tempdata in MVC
  • Ans. 

    ViewBag is used to pass data from controller to view, while TempData is used to pass data between controller actions.

    • ViewBag is a dynamic property that allows you to pass data from controller to view

    • TempData is a dictionary object that allows you to pass data between controller actions

    • ViewBag is not type-safe and requires typecasting, while TempData is type-safe

    • ViewBag data is lost if redirection occurs, while TempData

  • Answered by AI
  • Q5. Abstract vs Interface
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and non-abstract methods.

    • Interfaces can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of OOPS concepts, SQL joins

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 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 - Coding Test 

Basic concepts of programming

Round 3 - One-on-one 

(1 Question)

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Core java concepts,Sql queries,2 coding question based on arrays and string
  • Q2. Reverse the string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end to reverse the string

    • Return the reversed string

  • Answered by AI
  • Q3. Find third highest salary from a employee table
Round 2 - Technical 

(4 Questions)

  • Q1. Advance java and project related
  • Q2. Springboot and spring diff
  • Q3. Springboot annotations used in your project
  • Ans. 

    Some common Springboot annotations used in projects are @RestController, @Autowired, @RequestMapping, @Service, @Component, @Repository.

    • @RestController - Used to define RESTful web services.

    • @Autowired - Used for automatic dependency injection.

    • @RequestMapping - Used to map web requests to specific handler methods.

    • @Service - Used to indicate that a class is a service.

    • @Component - Used to indicate that a class is a Spring...

  • Answered by AI
  • Q4. Springboot dependencies

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. In How many ways we can create objects in Java
  • Ans. 

    Objects in Java can be created in multiple ways, including using new keyword, cloning, deserialization, and reflection.

    • Using the 'new' keyword

    • Cloning an existing object

    • Deserialization from a file or network

    • Using reflection to create objects dynamically

  • Answered by AI
  • Q2. Difference between Interface and Abstract Class
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while abstract class can have both implemented and abstract methods.

    • Interface methods are public and abstract by default, while abstract class can have abstract and non-abstract methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java, while abstract ...

  • Answered by AI
  • Q3. What is Serialization
  • Ans. 

    Serialization is the process of converting an object into a format that can be easily stored or transmitted.

    • Serialization is used to convert complex data structures or objects into a stream of bytes.

    • Serialized data can be stored in files, databases, or sent over a network.

    • Common serialization formats include JSON, XML, and Protocol Buffers.

  • Answered by AI

Skills evaluated in this interview

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. Benefits and Organisation i...read more
  2. Behavioural Questi...read more
  3. Design patte...read more

Tell us how to improve this page.

FE fundinfo Senior Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 482 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
Crisil Interview Questions
3.6
 • 188 Interviews
HighRadius Interview Questions
2.9
 • 182 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
View all
Data Analyst
149 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Data Analyst
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Support Analyst
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Team Leader
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare FE fundinfo with

Morningstar

3.9
Compare

Value Research

4.6
Compare

ICRA

3.3
Compare

Crisil

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