Upload Button Icon Add office photos

Fidelity Investments

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Fidelity Investments Lead Developer Interview Questions, Process, and Tips

Updated 12 Apr 2023

Top Fidelity Investments Lead Developer Interview Questions and Answers

View all 12 questions

Fidelity Investments Lead Developer Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via LinkedIn and was interviewed in 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 - Coding Test 

3 hacker rank questions easy to medium level asked to solve in 60 mins.

Round 3 - Technical 

(4 Questions)

  • Q1. Design patterns java when and what to use
  • Ans. 

    Design patterns in Java are reusable solutions to common software design problems.

    • Design patterns should be used when there is a recurring problem in software design.

    • Design patterns can improve code readability, maintainability, and scalability.

    • Examples of design patterns include Singleton, Factory, Observer, and Decorator.

    • It's important to choose the right design pattern for the specific problem at hand.

    • Design pattern...

  • Answered by AI
  • Q2. OOPs concepts deep dive - scenario based questions
  • Q3. Java 8 streams - how they function internally
  • Ans. 

    Java 8 streams are functional programming constructs that allow for efficient processing of large data sets.

    • Streams are composed of a source, intermediate operations, and a terminal operation.

    • Intermediate operations include filter, map, and sorted, and are lazily evaluated.

    • Terminal operations trigger the evaluation of the stream and include forEach, reduce, and collect.

    • Streams can be parallelized for even greater perfo...

  • Answered by AI
  • Q4. Difference between fixed thread pool and cached thread pool
  • Ans. 

    Fixed thread pool has a fixed number of threads while cached thread pool creates new threads as needed.

    • Fixed thread pool is suitable for tasks with a known number of threads

    • Cached thread pool is suitable for tasks with unknown number of threads

    • Fixed thread pool can cause resource wastage if the number of threads is too high

    • Cached thread pool can cause performance issues if the number of threads is too high

    • Example: Fixe...

  • Answered by AI
Round 4 - Technical 

(11 Questions)

  • Q1. All spring boot scenario based questions
  • Q2. How to handle spring app config
  • Ans. 

    Spring app config can be handled using various methods such as XML configuration, Java configuration, and annotation-based configuration.

    • XML configuration involves creating an XML file and defining beans and their dependencies.

    • Java configuration involves creating a Java class and using annotations to define beans and their dependencies.

    • Annotation-based configuration involves using annotations to define beans and their ...

  • Answered by AI
  • Q3. How to improve application performance
  • Ans. 

    Improving application performance requires optimizing code, database queries, and server resources.

    • Identify and fix slow database queries

    • Use caching to reduce server load

    • Optimize code by reducing unnecessary loops and improving algorithms

    • Use a content delivery network (CDN) to reduce server load

    • Upgrade server hardware or use cloud-based resources

    • Minimize HTTP requests and reduce file sizes for faster page load times

  • Answered by AI
  • Q4. Microservices communication patterns
  • Ans. 

    Microservices use various communication patterns like synchronous, asynchronous, event-driven, and message-based.

    • Synchronous communication involves direct request-response interactions between services.

    • Asynchronous communication uses messaging systems like RabbitMQ or Kafka to decouple services.

    • Event-driven communication involves services publishing events to a message broker, which other services can subscribe to.

    • Mess...

  • Answered by AI
  • Q5. How to use cache with spring boot
  • Ans. 

    Using cache with Spring Boot

    • Add @EnableCaching annotation to main class

    • Add @Cacheable annotation to methods that need caching

    • Configure cache properties in application.properties file

    • Use CacheManager to manage caches

    • Example: @Cacheable(value = "users", key = "#id")

  • Answered by AI
  • Q6. How to use async in spring boot - advantages
  • Ans. 

    Async in Spring Boot allows non-blocking I/O operations, improving application performance.

    • Async enables parallel processing of requests, improving throughput.

    • It allows the application to handle more requests with the same resources.

    • It reduces the response time for long-running operations.

    • Use @Async annotation to mark methods as asynchronous.

    • Use CompletableFuture to handle async results.

    • Example: @Async public Completab...

  • Answered by AI
  • Q7. How mvc pattern works in spring mvc
  • Ans. 

    Spring MVC follows the Model-View-Controller (MVC) pattern for building web applications.

    • Model represents the data and business logic

    • View renders the model data and provides user interface

    • Controller handles user requests, updates model and selects view

    • Spring MVC provides DispatcherServlet as front controller

    • RequestMapping annotation maps URL to controller method

    • ModelAndView object returns model data and view name

  • Answered by AI
  • Q8. What is filter and why it is required
  • Ans. 

    Filter is a method used to extract specific data from a larger set based on certain criteria.

    • Filter is required to extract specific data from a larger set.

    • It is used to reduce the amount of data that needs to be processed.

    • Filter can be applied to arrays, objects, and even strings.

    • Examples include filtering out all even numbers from an array or all emails from a list that contain a specific keyword.

  • Answered by AI
  • Q9. How authentication and authorization works - oauth2 way of handling them
  • Ans. 

    OAuth2 is a protocol for authentication and authorization that allows third-party applications to access user data without sharing passwords.

    • OAuth2 provides a secure and standardized way for users to grant access to their resources to third-party applications.

    • It involves the exchange of tokens between the user, the third-party application, and the resource server.

    • Authentication is handled by the authorization server, w...

  • Answered by AI
  • Q10. Difference between jwt and oauth2, how to secure rest endpoints
  • Ans. 

    JWT is a token format while OAuth2 is a protocol. Both can be used to secure REST endpoints.

    • JWT is a self-contained token that contains user information and can be used for authentication and authorization.

    • OAuth2 is a protocol that allows third-party applications to access user data without sharing passwords.

    • To secure REST endpoints, both JWT and OAuth2 can be used depending on the use case.

    • For example, JWT can be used...

  • Answered by AI
  • Q11. Java 8 problem solving

Interview Preparation Tips

Topics to prepare for Fidelity Investments Lead Developer interview:
  • java
  • spring boot
  • microservices
  • frontend
Interview preparation tips for other job seekers - No feedback till now, it s been 1 month. Process should be improved actually

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 3 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 

Hacker rank test. Which having avg programing question

Round 3 - Technical 

(1 Question)

  • Q1. Java question with coding question . Mostly will ask from the resume the skill has mention and based on skill the hiring is happing

Lead Developer Interview Questions Asked at Other Companies

Q1. how authentication and authorization works - oauth2 way of handli ... read more
Q2. Design patterns java when and what to use
Q3. difference between jwt and oauth2, how to secure rest endpoints
Q4. Java 8 streams - how they function internally
Q5. how to use async in spring boot - advantages

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Oct 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Spring cloud gateway
  • Q2. JWT Token structure and details
  • Q3. Java 11 features
  • Q4. Stream related problems
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Indeed and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Stringbuilder and string buffer diff
  • Q2. Where we store the object of string
  • Ans. 

    Objects of String are stored in the String Pool in Java.

    • String objects are stored in the String Pool, a special memory area in Java heap memory.

    • String literals are automatically stored in the String Pool.

    • String objects created using the new keyword are not stored in the String Pool.

    • String.intern() method can be used to store a String object in the String Pool.

  • Answered by AI
  • Q3. What is bean in springboot
  • Ans. 

    A bean in Spring Boot is a Java object that is instantiated, assembled, and managed by the Spring IoC container.

    • Beans are defined in the Spring configuration file or using annotations like @Component, @Service, @Repository, etc.

    • Beans are singleton by default but can be scoped as prototype, request, session, etc.

    • Beans are injected into other beans using dependency injection.

    • Example: @Component annotation is used to defi

  • Answered by AI
  • Q4. What is query parameters and path param
  • Ans. 

    Query parameters are used to pass data to a web server through the URL, while path parameters are part of the URL itself.

    • Query parameters are key-value pairs added to the end of a URL after a '?'

    • Path parameters are variables within the URL path itself, denoted by curly braces {}

    • Example of query parameter: www.example.com/api/users?id=123

    • Example of path parameter: www.example.com/api/users/{userId}

  • Answered by AI
  • Q5. Code snippet related to exception
  • Q6. Diff between exception and error
  • Ans. 

    Exceptions are recoverable errors that can be handled in code, while errors are unrecoverable issues that usually result in program termination.

    • Exceptions are checked at compile time, while errors are unchecked.

    • Exceptions are subclasses of Throwable, while errors are subclasses of Error.

    • Examples of exceptions include FileNotFoundException, NullPointerException, while examples of errors include OutOfMemoryError, StackOv

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project questions
  • Q2. Spring related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Why do you want to switch
  • Ans. 

    I want to switch to explore new technologies and challenges in a different industry.

    • Interested in learning new skills and technologies

    • Seeking new challenges and opportunities for growth

    • Want to explore different industry perspectives

  • Answered by AI
  • Q2. Salry expectations
Round 2 - Technical 

(2 Questions)

  • Q1. Question on oop concepts
  • Q2. Coding questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Ask to write code for equal and hashcode in notepad
  • Q2. Type of Collections and its internal working
  • Ans. 

    Java collections are data structures that store and manipulate groups of objects.

    • Types of collections include List, Set, Map, Queue, etc.

    • Internal workings involve data structures like arrays, linked lists, hash tables, etc.

    • Collections framework provides interfaces and classes for working with collections.

  • Answered by AI
  • Q3. Count number of occurrence of string from Array
  • Ans. 

    Count occurrences of a specific string in an array of strings.

    • Iterate through the array and use a HashMap to store the count of each string.

    • Use the string as key and increment the count each time it is encountered.

    • Return the count of the specific string at the end.

  • Answered by AI
  • Q4. Write a code using stream
  • Ans. 

    Using stream to filter a list of strings

    • Use the filter method to apply a predicate to each element in the stream

    • Convert the stream back to a list using the collect method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Due to network and power issue interview and processed

Skills evaluated in this interview

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

(1 Question)

  • Q1. Spring java and how do you leverage in your project
  • Ans. 

    I leverage Spring Java for dependency injection, MVC framework, and transaction management in my projects.

    • Utilize Spring's dependency injection to manage object dependencies and improve code maintainability

    • Leverage Spring MVC framework for building web applications with clean separation of concerns

    • Use Spring's transaction management to ensure data integrity and consistency in database operations

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jan 2023. 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 - Aptitude Test 

It was just a typical logical reasoning and aptitude MCQ test

Round 3 - Coding Test 

There were 2 coding questions and you can select any language for solving it. The test was online

Round 4 - Technical 

(13 Questions)

  • Q1. He simply asked me which coding language I prefer and why ? (Mine was C++)
  • Q2. Difference between C and C++?
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C is a procedural programming language, while C++ supports both procedural and object-oriented programming.

    • C does not have classes and objects, while C++ does.

    • C does not support function overloading, while C++ does.

    • C does not have exception handling, while C++ does.

    • C does not have namespaces, while C++ does.

  • Answered by AI
  • Q3. What is Object oriented programming?
  • Ans. 

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

    • Objects are instances of classes, which define the structure and behavior of the objects.

    • Encapsulation, inheritance, and polymorphism are key principles of object oriented programming.

    • Example: Inheritance allows a class to inherit properties and methods from another class.

    • Example: Encapsulation hides t...

  • Answered by AI
  • Q4. What are the 4 pillars of OOPs?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

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

    • Inheritance: Ability of a class to inherit properties and behavior from another class

    • Polymorphism: Ability to present the same interface for different data types

    • Abstraction: Hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q5. Write down code implementing all 4 pillars of OOPs.
  • Ans. 

    Code implementing all 4 pillars of OOPs

    • Encapsulation: Encapsulate data within classes and provide public methods to access and modify the data.

    • Inheritance: Create a hierarchy of classes where child classes inherit attributes and methods from parent classes.

    • Polymorphism: Allow objects of different classes to be treated as objects of a common superclass through method overriding and overloading.

    • Abstraction: Hide complex ...

  • Answered by AI
  • Q6. Difference between Stacks and Queues?
  • Ans. 

    Stacks are Last In First Out (LIFO) data structures, while Queues are First In First Out (FIFO) data structures.

    • Stacks: Elements are added and removed from the same end, like a stack of plates. Example: Undo feature in text editors.

    • Queues: Elements are added at the rear and removed from the front, like a line of people waiting. Example: Print queue in a printer.

  • Answered by AI
  • Q7. Write a code to find the 2nd largest element in an array.
  • Ans. 

    Code to find the 2nd largest element in an array

    • Sort the array in descending order and return the element at index 1

    • Iterate through the array and keep track of the two largest elements

    • Handle edge cases like arrays with less than 2 elements

  • Answered by AI
  • Q8. What is merge sort and its Algorithm ?
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them recursively, and then merges them.

    • Divide the input array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
  • Q9. What is DBMS and RDBMS and difference between them?
  • Ans. 

    DBMS stands for Database Management System, while RDBMS stands for Relational Database Management System. RDBMS is a type of DBMS.

    • DBMS is a software system that allows users to define, create, maintain and control access to the database.

    • RDBMS is a type of DBMS that stores data in a structured format using tables with rows and columns.

    • RDBMS enforces a set of rules called ACID properties to ensure data integrity, while D...

  • Answered by AI
  • Q10. What is SQL and who its different from mySQL?
  • Ans. 

    SQL is a standard language for managing databases, while MySQL is a specific open-source relational database management system.

    • SQL stands for Structured Query Language and is used to communicate with databases.

    • SQL is a standard language that can be used with various database management systems.

    • MySQL is a specific open-source relational database management system that uses SQL.

    • MySQL is one of the most popular database m...

  • Answered by AI
  • Q11. Difference between Delete, Truncate and Drop?
  • Ans. 

    Delete removes specific rows from a table, Truncate removes all rows from a table, and Drop removes the table itself.

    • Delete is a DML command that removes specific rows from a table based on a condition.

    • Truncate is a DDL command that removes all rows from a table but keeps the table structure.

    • Drop is a DDL command that removes the entire table along with its structure.

  • Answered by AI
  • Q12. Different kind of Joins in DBMS ?
  • Ans. 

    Different types of joins in DBMS include inner join, outer join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Outer join: Returns all rows from one table and only matching rows from the other table.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the ...

  • Answered by AI
  • Q13. And at last 2 to 3 SQL queries. They were not that hard, Just basic queries.

Interview Preparation Tips

Interview preparation tips for other job seekers - Well be prepared with DSA,OOPs and DBMS concept. If you don't know BST or Graphs or Heaps that well, no problem just be confident. Most of the times they don't ask anything more that linked list.
If you don't know the answer of a coding question (NOTE: not a theoretical question) try for sometime to come up with the solution and while thinking keep saying your approach out loud to the interview and if after taking 1 to 2 mins you still don't know just say, Sorry I can't recall it right now but I will definitely get to it after the interview. Don't use this approach for theoretical questions, Either you have an answer to that or not.
Never Beat around the bush, be specific and to the point.

And at last, I just wanna say that passing an interview needs 40% skill, 20% communication, 20% confidence, 10% mood of the interview and 10% is luck.

Why I am saying mood of the interview and luck????
In my case, I was not selected for the final HR round. First of all, in all 137 students selected for the technical interview, my name was at 111 and randomly they called the first student for the interview and it was me. So that's luck.
OK after I entered my interviewer cabin, I saw a look of aggression on my interviewers face. We didn't smiled once during my 50min interview. He didn't even asked me to introduce myself.

He asked me 15 questions in total and I correctly answers 10 of them to the point and for the rest 5 I explained my approach to them.
Still I got rejected, and one of my friend who was answered like 2 questions out of 10 got selected because his interviewer was different. (NOTE: I am really happy for my friend, He is like my best buddy and my only well wisher that I know about).

So yeah just prepare well and be confident and even if things go south and you gave your best, just think that today was not your day and just move on.

Skills evaluated in this interview

Fidelity Investments Interview FAQs

How many rounds are there in Fidelity Investments Lead Developer interview?
Fidelity Investments interview process usually has 3-4 rounds. The most common rounds in the Fidelity Investments interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in Fidelity Investments Lead Developer interview?

Some of the top questions asked at the Fidelity Investments Lead Developer interview -

  1. how authentication and authorization works - oauth2 way of handling t...read more
  2. Design patterns java when and what to ...read more
  3. difference between jwt and oauth2, how to secure rest endpoi...read more

Tell us how to improve this page.

Fidelity Investments Lead Developer Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 564 Interviews
Wells Fargo Interview Questions
3.8
 • 563 Interviews
HSBC Group Interview Questions
4.0
 • 484 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
American Express Interview Questions
4.2
 • 358 Interviews
UBS Interview Questions
3.9
 • 331 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
Bank of America Interview Questions
4.3
 • 235 Interviews
View all
Fidelity Investments Lead Developer Salary
based on 6 salaries
₹16 L/yr - ₹28 L/yr
7% less than the average Lead Developer Salary in India
View more details
Lead Software Engineer
964 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Software Engineer
902 salaries
unlock blur

₹7 L/yr - ₹22 L/yr

Process Specialist
296 salaries
unlock blur

₹3.4 L/yr - ₹7.2 L/yr

Principal Software Engineer
227 salaries
unlock blur

₹17.4 L/yr - ₹55 L/yr

Senior Process Specialist
186 salaries
unlock blur

₹4 L/yr - ₹9.2 L/yr

Explore more salaries
Compare Fidelity Investments with

Vanguard

4.1
Compare

Blackrock

3.8
Compare

Charles Schwab

4.2
Compare

JPMorgan Chase & Co.

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