Upload Button Icon Add office photos

Fidelity International

Compare button icon Compare button icon Compare

Filter interviews by

Fidelity International Interview Questions, Process, and Tips

Updated 24 Jan 2025

Top Fidelity International Interview Questions and Answers

View all 31 questions

Fidelity International Interview Experiences

Popular Designations

53 interviews found

I applied via Referral and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Describe how my hobby has created a positive impact on me.
  • Q2. Why do you want to build your career with our company
  • Q3. What all things are needed to convince a customer on call who is irated ?
  • Ans. 

    To convince an irate customer on call, empathy, active listening, problem-solving skills, and offering appropriate solutions are needed.

    • Show empathy and understanding towards the customer's frustration.

    • Listen actively to the customer's concerns and let them vent their frustrations.

    • Apologize for any inconvenience caused and take responsibility for resolving the issue.

    • Offer appropriate solutions or alternatives to addres...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Everyone should be very confident while answering their questions and they need to have a small look abouts of the company where they have been invited for the interview. Keep note if your pronunciation and sentences that you use and avoid fumbling.

Associate/Senior Associate -(Nontechnical) Interview Questions asked at other Companies

Q1. Tell about procure to pay process from MSDAX point of view
View answer (6)

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 100 minutes
Round difficulty - Easy

Test started at 04:00 PM sharp and complete the same by 06:00 PM.
The test duration is 1 hour 40 minutes.
Environment (Amcat) is user friendly.
Web cam and mic were enabled

  • Q1. 

    Longest Palindromic Subsequence Problem Statement

    Given a string A consisting of lowercase English letters, determine the length of the longest palindromic subsequence within A.

    Explanation:

    • A subsequ...
  • Ans. 

    Find the length of the longest palindromic subsequence in a given string.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of palindromic subsequences for different substrings.

    • Fill the array diagonally based on the characters of the string.

    • Consider both the cases where the characters at the start and end of the substring match or not.

    • Return the length of the longest palind

  • Answered by AI
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    Implement a function to determine the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to keep track of the number of ways to make change for each value up to the target value.

    • Iterate through each denomination and update the number of ways to make change for each value based on the current denomination.

    • Return the total number of ways to make change for the targ...

  • Answered by AI
Round 2 - Telephonic Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Hard

Interview stared at 11:00 am and went for 90 min.
Interview was held in zoom
Environment was very much user friendly

  • Q1. 

    Maximum Sum of Non-Adjacent Nodes in a Binary Tree

    Given a binary tree with integer values assigned to each node, select nodes such that their sum is maximum, ensuring no two adjacent nodes are picked.

    I...

  • Ans. 

    Find the maximum sum of non-adjacent nodes in a binary tree.

    • Use dynamic programming to keep track of the maximum sum at each node considering whether to include or exclude the current node.

    • Recursively traverse the binary tree while keeping track of the maximum sum of non-adjacent nodes.

    • Consider the scenarios where the current node is included in the sum or excluded from the sum.

    • Handle cases where the current node has c...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Civil Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in BangaloreEligibility criteriaabove 7 cgpa, all branches were allowedFidelity International interview preparation:Topics to prepare for the interview - Data Structures, hashmap, linked list, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, array, 2-pointer problemsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : practice on gfg and coding ninjas
Tip 2 : compete on codechef and codeforces
Tip 3 : learn DSA and practice regularly
 

Application resume tips for other job seekers

Tip 1 : put your entire valuable experience in brief
Tip 2 : put the handle of you competitive coding profiles
Tip 3 : try to put those things that really attracts the recruiter, will be better if your past experiences relates to the company

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Fidelity International Interview Questions and Answers for Freshers
illustration image

Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2021

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

This round consisted of 4 sections, namely,
1. English
2. Technical MCQs
3. Coding
4. Algorithms

1. English: This section consisted of 10 questions in all(Time limit was 15min). 5 questions were based on a given passage which were of moderate level. Remaining questions were on vocabulary, error correction and phrases which were easy to moderate.

2. Technical MCQs: This section consisted of 20 technical questions(Time limit was 30min). Questions were mainly on simple SQL commands, Tracing the output of recursive or iterative code snippet, basics of networking(components of IP address), Output of a given algorithm, output of a given code snippet. This round was of moderate level.

3. Coding: In this section we were supposed to solve two coding questions in 60min. First question was simple which was based on basic operations on a 2D matrix. The second question was of moderate level. It was one of the well known problems, 'The longest increasing substring'.

4. Algorithm: This section had two questions(Time limit was 15min). We were required to design a suitable algorithm and type that for the given problem statement. The questions were
a. Add two polynomials as linked lists(Problem URL: shorturl.at/dPVX5)
b. Conversion of an infix expression to postfix(Problem URL: shorturl.at/ltDG6)
we were required to write algorithms for the above problems

This online screening test was conducted on 29th of October from 4PM to 6PM. It was conducted on HirePro platform and it was audio and video proctored. Switching tabs were not allowed.

  • Q1. 

    Sorted Matrix Problem Statement

    You are provided with an N x N matrix MAT consisting of positive integers, where each row and column is sorted in a non-decreasing order.

    Your task is to return a list cont...

  • Q2. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This round was purely technical. It was scheduled for me from 9AM. Most questions focused on OOP in C++/java.
First I was asked to explain Dynamic binding in OOP with a suitable code snippet. Then a code was shown by the interviewer and i was asked to verify if it was an example of static or dynamic binding. 
Then, I was asked about synchronization in java and to explain various methods to bring in synchronization in a multi-threaded program in java.
Then i was asked about rand() function in C++. I was asked to write a suitable code to demonstrate rand() function and explain srand() too.
I was then asked to solve the problem: Find the second largest element in an unsorted array without sorting
Then i was asked to explain about a project which i had done. 
Next I was asked few questions on basics of HTML and CSS.

  • Q1. 

    Second Largest Element Problem

    You are provided with an array ARR of integers. The objective is to determine the second largest element in ARR.

    Note:

    a) Duplicate elements are allowed.
    b) If no second ...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Siddaganga Institute Of Technology, Tumakuru. I applied for the job as Full Stack Engineering Intern in BangaloreEligibility criteriaNo criteriaFidelity International interview preparation:Topics to prepare for the interview - Data structures, Algorithms, Basics of databases, Puzzles, OOPSTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Master all the OOP concepts
Tip 2 : Be very confident while giving the interview
Tip 3 : Be very true in the resume

Application resume tips for other job seekers

Tip 1 : Mention only those thing which you have done honestly in resume.
Tip 2 : Keep it simple and one paged.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Lazy initialization pom
  • Q2. Framework related

Interview Preparation Tips

Interview preparation tips for other job seekers - General coding problem

Senior Test Analyst Interview Questions asked at other Companies

Q1. What is Test Prioritization and How we apply to our Test Case?
View answer (1)

Fidelity International interview questions for popular designations

 Programmer Analyst

 (6)

 Test Analyst

 (4)

 Senior Programmer Analyst

 (3)

 Expert Engineer

 (3)

 Senior Associate

 (2)

 Software Developer Intern

 (2)

 Associate

 (2)

 Assistant Manager

 (1)

I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is your day to day activity look alike?
  • Q2. A simple question on sql regarding update query
  • Q3. What you do when a batch fails in production?
  • Ans. 

    I would investigate the cause of the failure and take appropriate actions to resolve it.

    • Check the error logs to identify the root cause of the failure

    • Determine if the issue can be resolved by restarting the batch or if a code fix is required

    • Communicate the issue and resolution plan to relevant stakeholders

    • Implement the fix and re-run the batch

    • Perform post-mortem analysis to identify ways to prevent similar failures in

  • Answered by AI
  • Q4. Tools that I have worked upon
  • Ans. 

    I have worked with various tools including Java, Python, SQL, Git, and JIRA.

    • Proficient in Java programming language

    • Experience with Python scripting

    • Skilled in writing SQL queries

    • Familiar with Git version control system

    • Knowledgeable in using JIRA for project management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your technical skills.
Ready for some situation based questions.
Communication skills are also monitored.

Skills evaluated in this interview

Top Fidelity International Programmer Analyst Interview Questions and Answers

Q1. What you do when a batch fails in production?
View answer (1)

Programmer Analyst Interview Questions asked at other Companies

Q1. 1 Tell me about your self 2 What is c# 3 What is oops concept 4 What is Delegate 5 Difference between polymorphism and what are its type 6 What is out and ref keyword 7 What is call by ref and call by value 8 What is namespace 9  What ... read more
View answer (12)

Get interview-ready with Top Fidelity International Interview Questions

Interview Questions & Answers

user image Anonymous

posted on 18 Apr 2021

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How do you analyse a stock ? Key thesis points? Pitch your favourite stock.
  • Q2. Case study where you will be given a stock and you have to prepare financial model. This will be followed by a detailed discussion on what assumptions you have taken and the rationale behind those. This is...

Interview Preparation Tips

Interview preparation tips for other job seekers - Fidelity is a very reputed buy side firm and unlike other sell side firms interview where focus is on understanding of concepts, investment mindset plays very important role here. So stock pitch at all times ( telephonic interview and case study) has to be given keeping in mind that would you invest your own money in the stock or not ? That should be the focus ( need not be lengthy but key thesis points must be backed by solid analysis). We don’t get paid here for writing lengthy reports. At the end of the day, your stock calls have to go right in the buy side.

Jobs at Fidelity International

View all

Interview Questions & Answers

user image Anonymous

posted on 9 Sep 2021

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

Interview Questionnaire 

2 Questions

  • Q1. -what do you understand by migration data analyst
  • Q2. What is data cleansing

Interview Preparation Tips

Interview preparation tips for other job seekers - Be informed of all the terms mentioned in the job description and responsibilities section

Skills evaluated in this interview

I applied via Company Website and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. OBIEE question in scenarios of RPD modelling

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know testing also if you are the developer and that too automation testing , which falls under full stack developer.

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

Interview Questionnaire 

2 Questions

  • Q1. About your previous projects and the approach you follow.
  • Q2. Testing related questions.

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 18 May 2021

Interview Questionnaire 

1 Question

  • Q1. 1.Mcq questions., Automation Testing, test cases.

Test Analyst Interview Questions asked at other Companies

Q1. Explain framework and practical uses of oops concepts in framework . explain priority and severity. defect lifecycle
View answer (2)
Contribute & help others!
anonymous
You can choose to be anonymous

Fidelity International Interview FAQs

How many rounds are there in Fidelity International interview?
Fidelity International interview process usually has 2-3 rounds. The most common rounds in the Fidelity International interview process are Technical, One-on-one Round and HR.
How to prepare for Fidelity International 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 Fidelity International. The most common topics and skills that interviewers at Fidelity International expect are Python, SQL, AWS, Java and Oracle.
What are the top questions asked in Fidelity International interview?

Some of the top questions asked at the Fidelity International interview -

  1. What all things are needed to convince a customer on call who is irated...read more
  2. 1-Diffeerence between explict wait and implicit wait 2-How to handle stale exce...read more
  3. How do you analyse a stock ? Key thesis points? Pitch your favourite sto...read more
How long is the Fidelity International interview process?

The duration of Fidelity International interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Fidelity International

No Jobs

JOBS

Fidelity International

No Jobs

INTERVIEWS

Synapse Design

No Interviews

INTERVIEWS

ABB

No Interviews

REVIEWS

Zeus Learning

No Reviews

INTERVIEWS

Next Education India

No Interviews

COMPANY BENEFITS

Kansai Nerolac Paints

No Benefits

JOBS

Next Education India

No Jobs

INTERVIEWS

Raw Materials Division | SAIL

No Interviews

Tell us how to improve this page.

Fidelity International Interview Process

based on 36 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
FactSet Interview Questions
3.9
 • 205 Interviews
Apex Group Interview Questions
2.7
 • 132 Interviews
Blackrock Interview Questions
3.8
 • 99 Interviews
Invesco Interview Questions
3.8
 • 40 Interviews
Vanguard Interview Questions
4.1
 • 1 Interview
View all

Fidelity International Reviews and Ratings

based on 577 reviews

3.9/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.7

Salary

3.6

Job security

3.9

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 577 Reviews and Ratings
Analyst Programmer

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Manager– Financial Control

Gurgaon / Gurugram

7-9 Yrs

Not Disclosed

Data Scientist - Technical Specialist

Gurgaon / Gurugram

8-12 Yrs

₹ 17.1-35.5 LPA

Explore more jobs
Senior Programmer Analyst
461 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Programmer Analyst
320 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Specialist
226 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
185 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
162 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Fidelity International with

Fidelity Investments

4.2
Compare

Blackrock

3.8
Compare

Vanguard

4.1
Compare

State Street Global Advisors

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