Upload Button Icon Add office photos

Filter interviews by

Fidelity International Interview Questions, Process, and Tips for Freshers

Updated 17 Oct 2024

Top Fidelity International Interview Questions and Answers for Freshers

View all 7 questions

Fidelity International Interview Experiences for Freshers

Popular Designations

5 interviews found

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

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Can you please introduce yourself?
  • Ans. 

    I am a motivated and detail-oriented finance student with a strong interest in investment management.

    • Currently pursuing a degree in finance

    • Completed relevant coursework in investment analysis and portfolio management

    • Previous internship experience in financial services industry

    • Strong analytical and problem-solving skills

  • Answered by AI
  • Q2. Can you describe about the last movie or web series/ book you read/ last vacation?
  • Ans. 

    I recently read the book 'The Great Gatsby' by F. Scott Fitzgerald.

    • The Great Gatsby is a classic novel set in the 1920s Jazz Age

    • The story follows the mysterious millionaire Jay Gatsby and his obsession with Daisy Buchanan

    • Themes of love, wealth, and the American Dream are explored throughout the book

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - While giving interview or answering any particular question, you must describe the things as it is without any lies. One must show confidence about the answer and without fear. And also show up you are very keen to explore about new things to do
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

The test carried 7 sections of aptitude with no negative markings and the questions were also easy with time duration of 1 hours which was to be used for the coding round also

Round 2 - Coding Test 

Basic understanding was checked, if basics are clear of DSA and computer science fundamentals then very easy to crack

Interview Preparation Tips

Interview preparation tips for other job seekers - make sure your basics and foundation of DSA is very thorough

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

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

    You have been given a string ‘A’ consisting of lower case English letters. Your task is to find the length of the longest palindromic subsequence in ‘A’.

    A subsequence is ...

  • Ans. Recursive Approach

    The main idea behind this approach is to use recursion. The idea is to compare the first character of the string A[i..j] with its last character. There are two possibilities:

    1. If the first character of the string is the same as the last character, we include first and last characters in the palindrome and do a recursive call for the remaining substring A[i + 1, j - 1].
    2. If the last character of the string...
  • Answered by CodingNinjas
  • Q2. Ways To Make Coin Change

    You are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a cha...

  • Ans. Recursion

     

    1. The idea is to use recursion.
    2. For a particular coin, we have two options either include it or exclude it.
    3. If we include that coin, then calculate the remaining number that we have to generate so recur for that remaining number.
    4. If we exclude that coin, then recur for the same amount that we have to make.
    5. Our final answer would be the total number of ways either by including or excluding.
    6. There will be two edg...
  • Answered by CodingNinjas
Round 2 - Telephonic Call 

(2 Questions)

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 nodes in a binary tree such that no two nodes are adjacent

    You have been given a binary tree with an integer value associated to each node. You are supposed to choose a subset of these nodes...

  • Ans. Using Memoization

    Keeping in mind the fact that both node and its children can not be considered for the maximum sum at the same time, we know that if we take a node into our sum, then we will directly call recursively for its grandchildren, OR if we don't take the node into our consideration, we will call for its child nodes and finally consider the maximum sum from both these results.

     

    Considering the above idea, ...

  • Answered by CodingNinjas
  • Q2. Basic Puzzles

    There are 3 mislabeled jars, with apple and oranges in the first and second jar respectively. The third jar contains a mixture of apples and oranges. You can pick as many fruits as required to...

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 Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Full Stack Engineering Intern Interview Questions & Answers

user image CodingNinjas

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

    You are given an N x N matrix 'MAT' of positive integers, where every row and column is sorted in non-decreasing order.

    Your task is to return a list containing all elements of the ...

  • Ans. Brute Force

    We have a simple brute force solution for this problem.

     

    1. Initialize a list ‘ANS’ of size N * N to store the elements of the matrix in sorted order.
    2. Store all the elements of the matrix in the list ‘ANS’.
    3. Sort the elements of the list in ascending order.
    4. Return the ‘ANS’.
    Space Complexity: O(1)Explanation:

    O(1).

     

    Constant space is used.

    Time Complexity: OtherExplanation:

    O(N ^ 2 * log(N ^ 2)), where N is t...

  • Answered by CodingNinjas
  • Q2. Longest increasing subsequence

    For a given array with N elements, you need to find the length of the longest subsequence from the array such that all the elements of the subsequence are sorted in strictly ...

  • Ans. 

    Step 1: Brute did not work for me.
    Step 2: DP solution was expected.

  • Answered by CodingNinjas
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 in the array

    You have been given an array/list 'ARR' of integers. Your task is to find the second largest element present in the 'ARR'.

    Note:
    a) Duplicate elements...
  • Ans. 

    I said that i would find the largest element using brute force, delete it and again find the largest element to find the second largest element.

  • Answered by CodingNinjas

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

Fidelity International interview questions for popular designations

 Programmer Analyst

 (6)

 Test Analyst

 (4)

 Expert Engineer

 (3)

 Associate

 (2)

 Senior Associate

 (2)

 Senior Programmer Analyst

 (2)

 Software Developer Intern

 (2)

 Assistant Manager

 (1)

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. Automation Testing QuestionWhat’s the difference between manual testing and automated testing?
View answer (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Explain your design process?
  • Ans. 

    My design process involves research, ideation, prototyping, testing, and iteration to create user-centered solutions.

    • Research: Gather information about user needs, market trends, and competition.

    • Ideation: Brainstorm and generate ideas for potential solutions.

    • Prototyping: Create low-fidelity and high-fidelity prototypes to visualize concepts.

    • Testing: Conduct user testing to gather feedback and iterate on designs.

    • Iterati...

  • Answered by AI
  • Q2. Most Interesting product you have worked on?
  • Q3. Name 2 companies/product you love to use and what/why do you love using it?
Round 2 - Assignment 

Whatever the prompt, is deliver it to perfection, everything is scrutinised.

Round 3 - Assignment Discussion 

(1 Question)

  • Q1. Assignment Related Question (Expect questions around why or what and also make sure your ideas are unique, while also delivering the essentials don't miss out on basics/fundamentals in design)

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Group Discussion 

The topics allotted for the group discussion were general enough to ensure that all contestants had the opportunity to present their thoughts.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is the relevance of Discounted Cash Flow (DCF) Modeling in the fixed income product industry?
  • Ans. 

    DCF modeling is essential in fixed income product industry for valuing bonds and other securities based on their future cash flows.

    • DCF modeling helps in determining the present value of future cash flows from fixed income securities.

    • It takes into account factors like interest rates, bond maturity, and credit risk to calculate the fair value of bonds.

    • DCF modeling is crucial for pricing bonds, assessing risk, and making ...

  • Answered by AI
  • Q2. What is the typical spread between government securities and corporate bonds?
  • Ans. 

    The spread between government securities and corporate bonds typically varies based on factors such as credit risk, maturity, and market conditions.

    • The spread between government securities and corporate bonds is influenced by the credit risk associated with the corporate bond issuer. Higher credit risk typically leads to a wider spread.

    • Maturity also plays a role in determining the spread, with longer-term bonds general...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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. Linkage between the 3 financial analysis
  • Ans. 

    The linkage between the 3 financial analysis involves understanding how the income statement, balance sheet, and cash flow statement are interconnected.

    • Income statement shows the company's profitability over a period of time.

    • Balance sheet provides a snapshot of the company's financial position at a specific point in time.

    • Cash flow statement tracks the inflow and outflow of cash within the company.

    • Changes in one stateme...

  • Answered by AI
  • Q2. What is CFO? How do you calculate it
  • Ans. 

    CFO stands for Cash Flow from Operations. It is a measure of a company's ability to generate cash from its core business activities.

    • CFO is calculated by starting with net income and adding back non-cash expenses (such as depreciation and amortization) and adjusting for changes in working capital.

    • Formula: CFO = Net Income + Non-cash Expenses + Changes in Working Capital

    • CFO is a key metric used by investors and analysts ...

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

I applied via LinkedIn and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write the test cases for a pen
  • Ans. 

    Test cases for a pen

    • Verify that the pen writes smoothly on paper

    • Check if the pen's ink is visible and does not smudge

    • Ensure that the pen's cap can be easily removed and replaced

    • Test if the pen's clip is sturdy and functional

    • Verify that the pen's grip is comfortable to hold

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tell me about your project

Skills evaluated in this interview

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

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

Round 1 - HR 

(4 Questions)

  • Q1. Introduce yourself
  • Q2. Past interview experience
  • Q3. What's your hobbies
  • Q4. What department would you like to train in

Fidelity International Interview FAQs

How many rounds are there in Fidelity International interview for freshers?
Fidelity International interview process for freshers usually has 1-2 rounds. The most common rounds in the Fidelity International interview process for freshers are Aptitude Test, Coding Test and HR.
How to prepare for Fidelity International interview for freshers?
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 for freshers?

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

  1. Behavioral and organizational awareness questions were asked. Real-life challen...read more
  2. Case study where you will be given a stock and you have to prepare financial mo...read more
  3. Explained about the fitment and in terms of Stong Areas and exposure to areas w...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.

Tell us how to improve this page.

People are getting interviews through

based on 2 Fidelity International interviews
Company Website
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.6
 • 401 Interviews
Morgan Stanley Interview Questions
3.7
 • 297 Interviews
Blackrock Interview Questions
3.8
 • 101 Interviews
MNC Group Interview Questions
4.3
 • 96 Interviews
Nomura Holdings Interview Questions
3.9
 • 66 Interviews
Invesco Interview Questions
3.9
 • 39 Interviews
Vanguard Interview Questions
4.1
 • 1 Interview
View all

Fidelity International Reviews and Ratings

based on 541 reviews

4.0/5

Rating in categories

3.7

Skill development

4.1

Work-Life balance

3.9

Salary & Benefits

3.8

Job Security

4.0

Company culture

3.4

Promotions/Appraisal

3.6

Work Satisfaction

Explore 541 Reviews and Ratings
Technical Specialist - Python Development and AWS

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

HR Officer - India HRS

Gurgaon / Gurugram

5-9 Yrs

Not Disclosed

Application Support Senior Developer - Appian Developer

Gurgaon / Gurugram,

Delhi/Ncr

4-7 Yrs

₹ 12-22 LPA

Explore more jobs
Senior Programmer Analyst
451 salaries
unlock blur

₹9 L/yr - ₹27.5 L/yr

Programmer Analyst
305 salaries
unlock blur

₹7.5 L/yr - ₹17.6 L/yr

Technical Specialist
210 salaries
unlock blur

₹16.8 L/yr - ₹39 L/yr

Associate
180 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Senior Associate
154 salaries
unlock blur

₹4.3 L/yr - ₹10.6 L/yr

Explore more salaries
Compare Fidelity International with

Fidelity Investments

4.3
Compare

Blackrock

3.8
Compare

Vanguard

4.1
Compare

State Street Global Advisors

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview