Upload Button Icon Add office photos

Fidelity International

Compare button icon Compare button icon Compare

Filter interviews by

Fidelity International Software Engineer Level 1 Interview Questions and Answers

Updated 13 Jan 2025

Interview questions from similar companies

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

I applied via campus placement at VNR Vignan Jyothi Institute of Engineering and Technology, Hyderabad

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 

Data Structures and Algorithms

Round 3 - One-on-one 

(1 Question)

  • Q1. Data structures and Algorithms
Round 4 - One-on-one 

(1 Question)

  • Q1. Data Structures And Algorithms
Round 5 - Behavioral 

(1 Question)

  • Q1. Basic understanding of the resume, resume based question, web based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focused, positive minded be interactive with the interviwer
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(6 Questions)

  • Q1. Solid principles
  • Q2. OOPS concepts in c++
  • Ans. 

    OOPS concepts in C++ include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class)

    • Inheritance: creating new classes based on existing classes, allowing for code reuse

    • Polymorphism: ability for objects of different classes to be treated as objects of a common superclass

    • Abstraction: hiding complex implementation details and sh

  • Answered by AI
  • Q3. Multi threading and its implementation
  • Ans. 

    Multi threading is a programming concept where multiple threads run concurrently within a single process.

    • Multi threading allows for better utilization of CPU resources by running multiple tasks simultaneously.

    • Threads share the same memory space, which can lead to synchronization issues if not handled properly.

    • Examples of multi threading implementations include Java's Thread class, C#'s Task Parallel Library, and Python

  • Answered by AI
  • Q4. Diamond problem in c++
  • Ans. 

    Diamond problem occurs in multiple inheritance when a class inherits from two classes that have a common base class.

    • Diamond problem can be resolved using virtual inheritance in C++.

    • Virtual inheritance ensures that only one instance of the common base class is inherited by the derived class.

    • Example: class A is inherited by classes B and C, then class D inherits from both B and C. Using virtual inheritance for class A re

  • Answered by AI
  • Q5. Types of inheritance and examples
  • Ans. 

    Types of inheritance include single, multiple, multilevel, hierarchical, hybrid, and multipath inheritance.

    • Single inheritance: a class inherits from only one base class.

    • Multiple inheritance: a class inherits from more than one base class.

    • Multilevel inheritance: a class inherits from a class which in turn inherits from another class.

    • Hierarchical inheritance: multiple classes inherit from a single base class.

    • Hybrid inher...

  • Answered by AI
  • Q6. Runtime and compile time polymorphism

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basic C++ comcepts.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Implement some LLD and use clean code formulas

Round 2 - Group Discussion 

Better be prepared for all deep dive questions about tech and project you worked

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 - hirevue 

(2 Questions)

  • Q1. On demand video assessment that include questions to answer.
  • Q2. Games designed to test different ability.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Sona College of Technology, Salem and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Round 1
Aptitude
DSA
OOPs
SQL
MCQ's were asked
3 short coding questions
On hacker earth platform

Round 2 - Coding Test 

Long coding Round

1. ER diagram for given use case (30 mins)
2. System Architecture diagram (15mins)
3. Long coding oops simple console application for given use case (python,java, c++)
4. SQL query for given case

Interview Preparation Tips

Topics to prepare for Mr Cooper Full Stack Developer interview:
  • OOPs
  • Python
  • Java
  • React.Js
  • Node.Js
  • Oracle
  • SQL
  • Ruby
  • SCALA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

It continues for 15 mins

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

I applied via Naukri.com and was interviewed in Apr 2023. 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 - Technical 

(2 Questions)

  • Q1. Basic core Java question
  • Q2. Sql query based question
Round 3 - Technical 

(1 Question)

  • Q1. Normal coding question and work experience based question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sort the array in a efficient manner
  • Ans. 

    Use quicksort algorithm to efficiently sort the array of strings.

    • Implement the quicksort algorithm to sort the array in-place.

    • Choose a pivot element and partition the array around it.

    • Recursively apply quicksort to the sub-arrays on both sides of the pivot.

    • Repeat until the array is sorted.

    • Consider using a comparison function to handle string sorting.

  • Answered by AI

Skills evaluated in this interview

Fidelity International Interview FAQs

How many rounds are there in Fidelity International Software Engineer Level 1 interview?
Fidelity International interview process usually has 1 rounds. The most common rounds in the Fidelity International interview process are HR.

Tell us how to improve this page.

Fidelity International Software Engineer Level 1 Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.5
 • 408 Interviews
Morgan Stanley Interview Questions
3.7
 • 309 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
Apex Group Interview Questions
2.7
 • 132 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
Blackrock Interview Questions
3.8
 • 100 Interviews
Mr Cooper Interview Questions
4.1
 • 81 Interviews
View all
Fidelity International Software Engineer Level 1 Salary
based on 5 salaries
₹9.7 L/yr - ₹11 L/yr
At par with the average Software Engineer Level 1 Salary in India
View more details

Fidelity International Software Engineer Level 1 Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Programmer Analyst
456 salaries
unlock blur

₹9 L/yr - ₹28.5 L/yr

Programmer Analyst
301 salaries
unlock blur

₹7 L/yr - ₹18.5 L/yr

Technical Specialist
211 salaries
unlock blur

₹16.8 L/yr - ₹42 L/yr

Associate
184 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Senior Test Analyst
157 salaries
unlock blur

₹8.6 L/yr - ₹26.5 L/yr

Explore more salaries
Compare Fidelity International with

Fidelity Investments

4.1
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