Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by FactSet Team. If you also belong to the team, you can get access from here

FactSet Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

FactSet Software Engineer Level 1 Interview Questions and Answers

Updated 28 Mar 2023

FactSet Software Engineer Level 1 Interview Experiences

2 interviews found

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 Questionnaire 

2 Questions

  • Q1. 1. Hacker rank test
  • Q2. 2. Interview on c++ basics, past work experience and improving the time complexities for the problems from the hacker rank test

Software Engineer Level 1 Interview Questions Asked at Other Companies

asked in PayPal
Q1. Input a file. Select first 3 lines of the file. Select the longes ... read more
asked in PayPal
Q2. But amazon can do the search in O(n). Why it has to go for O(nk)? ... read more
asked in PayPal
Q3. When you search for a particular product in amazon, it displays s ... read more
asked in PayPal
Q4. There exists a 3x3 matrix, start from the first element reach the ... read more
Q5. 1. Abstraction Vs Interface 2. Sealed class 3. why do we use a pr ... read more

Interview questions from similar companies

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

There were three coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Could you provide a thorough explanation of the project?
  • Q2. OOps Concepts and question from the technical subjects
  • Q3. Why Spring Boot
  • Q4. JWT Authentication
  • Q5. Docker and Kubernetes
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
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. They grind u in javascript,typescript
  • Q2. Html css, angular
  • Q3. Deep preparation needed

Interview Preparation Tips

Interview preparation tips for other job seekers - Not an easy interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Project Architecture
Round 2 - Technical 

(1 Question)

  • Q1. Informatica tech questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Question Related to the DP and the Graph

Round 2 - Technical 

(2 Questions)

  • Q1. Kth Max Element in a Array
  • Ans. 

    Find the Kth maximum element in an array of strings.

    • Sort the array in descending order.

    • Return the element at index K-1.

  • Answered by AI
  • Q2. Coin Change and optimization through DP
  • Ans. 

    Coin change problem can be solved using dynamic programming to find the minimum number of coins needed to make a certain amount of change.

    • Use dynamic programming to build up solutions for smaller subproblems

    • Start by initializing an array to store the minimum number of coins needed for each amount from 0 to the target amount

    • Iterate through each coin denomination and update the array with the minimum number of coins need

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Project include in your Resume
  • Q2. HR common question

Skills evaluated in this interview

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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java, lambda expressions, micro services
Round 2 - Technical 

(1 Question)

  • Q1. Microservices architecture, saga pattern
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial, how do you improve your skills etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on job description and your skills
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked about data structures

Round 2 - Coding Test 

Asked about java programmes

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a passionate software developer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Passionate about coding and problem-solving

  • Answered by AI
  • Q2. Are you ready to relocate
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am willing to relocate for the right job opportunity that aligns with my career goals.

    • I have experience moving for previous jobs and am comfortable with the process.

    • I am excited about the possibility of exploring a new city or country and experiencing a different culture.

  • Answered by AI

FactSet Interview FAQs

How many rounds are there in FactSet Software Engineer Level 1 interview?
FactSet interview process usually has 5 rounds. The most common rounds in the FactSet interview process are One-on-one Round, Behavioral and Resume Shortlist.
How to prepare for FactSet Software Engineer Level 1 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 FactSet. The most common topics and skills that interviewers at FactSet expect are C++, Operations, Perl, Python and Analytical.
What are the top questions asked in FactSet Software Engineer Level 1 interview?

Some of the top questions asked at the FactSet Software Engineer Level 1 interview -

  1. 2. Interview on c++ basics, past work experience and improving the time complex...read more
  2. Data structures and Algorit...read more
  3. 1. Hacker rank t...read more

Tell us how to improve this page.

FactSet Software Engineer Level 1 Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 567 Interviews
Citicorp Interview Questions
3.7
 • 566 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
BNY Interview Questions
3.9
 • 338 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
Morgan Stanley Interview Questions
3.7
 • 308 Interviews
S&P Global Interview Questions
4.1
 • 274 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
View all
FactSet Software Engineer Level 1 Salary
based on 36 salaries
₹8.9 L/yr - ₹12.8 L/yr
9% more than the average Software Engineer Level 1 Salary in India
View more details

FactSet Software Engineer Level 1 Reviews and Ratings

based on 6 reviews

3.5/5

Rating in categories

3.3

Skill development

4.5

Work-life balance

3.4

Salary

3.3

Job security

3.7

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 6 Reviews and Ratings
Research Analyst
2.8k salaries
unlock blur

₹1.8 L/yr - ₹5.2 L/yr

Senior Research Analyst
755 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Equity Research Analyst
345 salaries
unlock blur

₹2 L/yr - ₹4.6 L/yr

Software Engineer III
244 salaries
unlock blur

₹9 L/yr - ₹26.9 L/yr

Senior Software Engineer
238 salaries
unlock blur

₹12.8 L/yr - ₹36 L/yr

Explore more salaries
Compare FactSet with

Thomson Reuters

4.1
Compare

Bloomberg

3.4
Compare

Morningstar

3.9
Compare

S&P Global

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