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 Receptionist cum Telephone Operator Interview Questions and Answers

Updated 24 Oct 2022

Fidelity Investments Receptionist cum Telephone Operator Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the headline of the Nation News paper today? Yours is to say the headline of tha nation newspaper on that day of interview.
  • Q2. When are you ready to start if given chance?
Round 2 - One-on-one 

(3 Questions)

  • Q1. Why did you choose this company?
  • Q2. How proficient are you to take this job?
  • Q3. Why did you choose to work with us?
Round 3 - Technical 

(2 Questions)

  • Q1. Typing test 30 Words perminute
  • Q2. Was appreciation from one of the interviewer for bieng agresieve in answering questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep on searching never loose hope with God all things are possible.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jan 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Three sections - Easy

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical interview - F2F
Round 3 - HR 

(1 Question)

  • Q1. Personality and behaviour test

Interview Preparation Tips

Interview preparation tips for other job seekers - Transparent and smooth process.

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Explain SCD Type 2 Implementation in Informatica
  • Ans. 

    SCD Type 2 is a technique used to track historical changes in data over time in a data warehouse.

    • SCD Type 2 maintains a separate row for each change in data, with a start and end date.

    • It requires a surrogate key to uniquely identify each row.

    • Informatica provides a built-in SCD Type 2 transformation to implement this technique.

    • Example: tracking changes in customer addresses over time.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly focus on basic BI terminologies, common to trivial scenarios and introductory information on latest trending tools and technologies.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jan 2021. 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 - One-on-one 

(1 Question)

  • Q1. Most of the questions were centred around Derivatives and Fixed Income Securities

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a sound knowledge in Financial and Economics oriented topics.

I applied via Referral and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to Python, my former organisation, why do you want to shift, questions related to different types of risk

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be on time and well dressed
Communication must be good
Answer questions if you can, if you don’t know just accept you don’t know

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic accounting questions, knowledge testing of Finance and Financial Statements.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't speak lie.

I appeared for an interview in Sep 2020.

Interview Questionnaire 

1 Question

  • Q1. Walk me through your CV

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 2 rounds, first was mainly technical related to my previous experience for the process and 2nd was mainly if I've faced any difficulty in the past.

Interview Experience was fine as they are particular about their timings and both rounds took 30 mins each.

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is bond?
  • Ans. 

    A bond is a debt security that represents a loan made by an investor to a borrower.

    • Bonds are issued by corporations, municipalities, and governments to raise capital.

    • They have a fixed interest rate and a maturity date when the principal is repaid.

    • Bonds are generally considered less risky than stocks but offer lower potential returns.

    • Investors can buy and sell bonds on the secondary market.

    • Examples of bonds include U.S....

  • Answered by AI
  • Q2. What is Fund Accounting?
  • Ans. 

    Fund Accounting is a specialized accounting system used by non-profit organizations and government agencies to track and manage funds.

    • It involves tracking and reporting on the financial activity of specific funds or grants.

    • It ensures that funds are used for their intended purposes and that financial reports are accurate and transparent.

    • Examples include tracking donations to a non-profit organization or managing governm...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good easy & simple, mostly the questions relate to your CV and family background some are from Financial terms

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

I appeared for an interview before Jun 2016.

Interview Preparation Tips

Round: Test
Experience: 30 questions, 30

Fidelity Investments Interview FAQs

How many rounds are there in Fidelity Investments Receptionist cum Telephone Operator interview?
Fidelity Investments interview process usually has 4 rounds. The most common rounds in the Fidelity Investments interview process are One-on-one Round, Resume Shortlist and Technical.
What are the top questions asked in Fidelity Investments Receptionist cum Telephone Operator interview?

Some of the top questions asked at the Fidelity Investments Receptionist cum Telephone Operator interview -

  1. Was appreciation from one of the interviewer for bieng agresieve in answering q...read more
  2. Typing test 30 Words permin...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 589 Interviews
Citicorp Interview Questions
3.7
 • 575 Interviews
HSBC Group Interview Questions
3.9
 • 492 Interviews
American Express Interview Questions
4.1
 • 368 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.6
 • 295 Interviews
FactSet Interview Questions
3.9
 • 211 Interviews
BNP Paribas Interview Questions
3.8
 • 183 Interviews
View all
Lead Software Engineer
982 salaries
unlock blur

₹12 L/yr - ₹35 L/yr

Software Engineer
899 salaries
unlock blur

₹7 L/yr - ₹23.5 L/yr

Process Specialist
277 salaries
unlock blur

₹3.7 L/yr - ₹7.2 L/yr

Principal Software Engineer
234 salaries
unlock blur

₹17.4 L/yr - ₹61 L/yr

Senior Process Specialist
194 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Explore more salaries
Compare Fidelity Investments with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Citicorp

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