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 Engineer2 Interview Questions and Answers

Updated 15 Apr 2024

FactSet Software Engineer2 Interview Experiences

3 interviews found

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

(1 Question)

  • Q1. List and tuple difference
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List is defined using square brackets [], tuple using parentheses ().

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion and hybrid model discussion

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Apr 2023. There were 5 interview rounds.

Round 1 - Coding Test 

Hackerrank Test with 2 coding questions with 1 hour time period

Round 2 - Technical 

(1 Question)

  • Q1. Questions on Angular basics to intermediate concepts which lasted about 1 hour
Round 3 - Technical 

(1 Question)

  • Q1. Questions on JavaScript concepts from basic to medium like Closures, Temporal Dead Zone, Call, Bind methods etc... for 1 hour
Round 4 - Behavioral 

(1 Question)

  • Q1. About personal match with the company along with some questions on full stack development and a kind of System Design for 45minutes
Round 5 - Team Matching 

(1 Question)

  • Q1. Matching round with one of the Engineer from the Team that I'm going to join, some general development conceptual questions were asked along with System design concepts by asking end to end development of ...

Interview Preparation Tips

Topics to prepare for FactSet Software Engineer2 interview:
  • Javascript Frameworks

Software Engineer2 Interview Questions Asked at Other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a po ... read more
asked in Wayfair
Q2. Design a Order and Cart Page in iOS. The user should be able to o ... read more
Q3. How to process large amount of data? Which tool would you prefer?
asked in PayPal
Q4. Can you describe the system design for the checkout feature on Am ... read more
Q5. Given an integer array , and a target k , we need to find the pai ... read more
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2022. There were 4 interview rounds.

Round 1 - Coding Test 

Online one and one session for me it as 3 Rounds

1) one and one approx 1 Hour, this round is Technical, we need to share the screen and we need to say our overall experience and products involved and roles and responsibilities, They will ask the practical questions how we need to solve questions ( like I am from .Net technology) so they asked for .Net related technical questions, After that answer also will ask for any other possible ways we can write the code in different formats, This process will go until an Hour.

2) Same as Technical as Point 1 and this round will taken by manager and this is also 1 Hour, No changes as per about point.

3) This round also Technical, But this will took by the Senior manager, But it is just 20 minutes, The senior manager will just touch’s the technical part and they will check the your behaviour , English skills and they will ask the CEO of the company 😜.

4) HR round.

Round 2 - Coding Test 

Check the above round 1

Round 3 - Coding Test 

Check the above round 1

Round 4 - HR 

(1 Question)

  • Q1. Salary discussions

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is the difference between var let and const?
  • Ans. 

    var, let, and const are all used for variable declaration in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on core concepts of the technologies and easy to medium problem solving questions. I interviewed for frontend developer so most of my questions were around Reactjs and Javascript. I was asked about arrays and variable scoping etc. Core Javascripts and ReactJS concepts are a must.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Introduce yourself
  • Q2. What has been your experience with framework design and implementation?
  • Ans. 

    I have extensive experience in designing and implementing frameworks for various software projects.

    • Designed and implemented a custom testing framework for automated testing of web applications.

    • Utilized Spring framework for developing enterprise applications, including dependency injection and aspect-oriented programming.

    • Contributed to the design and implementation of a microservices architecture using Netflix OSS frame

  • Answered by AI
  • Q3. What is the tech and languages you are comfortable with? Rate yourself on each.
  • Ans. 

    I am comfortable with Java, Python, and SQL. I rate myself 8/10 in Java, 7/10 in Python, and 9/10 in SQL.

    • Java - 8/10

    • Python - 7/10

    • SQL - 9/10

  • Answered by AI
  • Q4. What is your experience with finance?
  • Ans. 

    I have experience working on financial software applications and projects.

    • Developed financial software applications for tracking expenses and budgeting

    • Worked on projects involving payment processing and transaction management

    • Familiar with financial data analysis and reporting tools

    • Collaborated with finance teams to understand requirements and implement solutions

  • Answered by AI
  • Q5. What is TDD and BDD? What are the differences and which one do you prefer?
  • Ans. 

    TDD stands for Test-Driven Development and BDD stands for Behavior-Driven Development. TDD focuses on writing tests before writing code, while BDD focuses on the behavior of the system.

    • TDD involves writing a failing test, writing code to make the test pass, and then refactoring the code.

    • BDD focuses on defining the behavior of the system through examples written in a specific format like Given-When-Then.

    • TDD is more deve...

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. Write a program to find the frequency of word in a sentence
  • Ans. 

    Program to find frequency of words in a sentence

    • Split the sentence into words using space as delimiter

    • Create a map to store word frequencies

    • Iterate through the words and update the map accordingly

    • Handle case sensitivity and punctuation if needed

  • Answered by AI
  • Q2. Write a program to check if the sum of digits of.the given number is a prime number
  • Ans. 

    Program to check if sum of digits of a number is prime

    • Convert the number to a string to iterate through each digit

    • Calculate the sum of digits

    • Check if the sum is a prime number

  • Answered by AI
  • Q3. Write an SQL query to get the second highest salary in the table
  • Ans. 

    SQL query to get the second highest salary in a table

    • Use the MAX() function to find the highest salary

    • Use the WHERE clause to exclude the highest salary

    • Order the salaries in descending order and limit the result to 1

  • Answered by AI
  • Q4. What is the difference between abstract class and interface? Give a use case for both.
  • Ans. 

    Abstract class allows partial implementation while interface allows full abstraction.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract class is used when some common functionality needs to be shared among subclasses, while interface is used to define a contract for clas...

  • Answered by AI
  • Q5. Explain static and give it's use case.
  • Ans. 

    Static keyword is used in programming to declare variables or methods that belong to the class itself, rather than instances of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an instance of the class.

    • Static keyword is used to define constants in a class.

    • Static keyword is used in Java, C++, and other programming languages.

  • Answered by AI
  • Q6. Where are objects stored in memory?
  • Ans. 

    Objects are stored in memory in the heap or stack depending on their scope and lifetime.

    • Objects with local scope are stored on the stack, while objects with dynamic memory allocation are stored on the heap.

    • Primitive data types like int, float are stored on the stack, while complex objects like arrays, classes are stored on the heap.

    • Objects stored on the stack have faster access but limited size, while objects on the he

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thoroughly practice and study language of your choice
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 5 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked about my work experience and questions based on the resume points
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked java programs, SQL questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. With Manager, asked few technical questions based on resume points
Round 4 - Behavioral 

(1 Question)

  • Q1. It was casual discussion
Round 5 - HR 

(1 Question)

  • Q1. It was mainly salary discussion and joining date related
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Dsa questions- medium level
  • Q2. Dsa questions - medium level

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

Interview Questionnaire 

1 Question

  • Q1. Linear Regression, Market Basket Analysis, Time Series Analysis

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your CV simple. Dont put random concepts on your CV that you have no idea of just to make your CV attractive. Always remember, if you are shortlisted for interviews, the recruiters have a good feel about you. Your CV should be crisp and simple and put/write concepts you are thorough with and have a detailed idea in. Prepare well. Prepare smart.

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Check palindrome , anagram of string with O(n)
  • Ans. 

    To check palindrome and anagram of a string with O(n), use a hash table to store character frequencies.

    • Create a hash table to store the frequency of each character in the string.

    • For palindrome, check that no more than one character has an odd frequency.

    • For anagram, compare the hash tables of the two strings.

    • If the hash tables are equal, the strings are anagrams.

    • If the hash tables differ by only one character, the strin...

  • Answered by AI
  • Q2. Optimized solutions and core principles applied in OOPS
  • Ans. 

    Optimized solutions and core principles applied in OOPS

    • Encapsulation, Inheritance, Polymorphism, Abstraction are core principles of OOPS

    • Optimized solutions can be achieved through efficient algorithms and data structures

    • Design patterns like Singleton, Factory, Observer can also be used for optimized solutions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for best possible solutions. and they are not using that in project then also they ask

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an integer array containing numbers from 0 to (N - 2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number that appears twice in the array.

    • The duplicate number is always present in the given array.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Bubble Sort Problem Statement

    Sort an unsorted array of non-negative integers using the Bubble Sort algorithm, which swaps adjacent elements if they are not in the correct order to sort the array in non-d...

  • Ans. 

    Bubble Sort is used to sort an array of non-negative integers in non-decreasing order by swapping adjacent elements if they are not in the correct order.

    • Iterate through the array and compare adjacent elements, swapping them if they are in the wrong order.

    • Repeat this process until the array is sorted in non-decreasing order.

    • Time complexity of Bubble Sort is O(n^2) in worst case.

    • Example: For input [6, 2, 8, 4, 10], the o

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    Find the shortest path between two houses in a city represented as an unweighted graph.

    • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Start BFS from the source house and keep track of the shortest path to each house.

    • Once the destination house is reached, backtrack to find the shortest path.

    • Consider using a queue data structure to implement BFS efficiently.

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria7Morgan Stanley interview preparation:Topics to prepare for the interview - Java , spring, aws,azure, Algorithm, computer Architecture, compiler designTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : online resources
Tip 2 : cracking the coding interview by Gayle laykemann this is one of the best book for learning the concept at the initial level. Start practicing the approaches mention in the book once done apply the same to similar level pattern questions.
Tip 3 : geeks for geeks start from school level and then move towards easy medium and hard once done practice the previous year questions

Application resume tips for other job seekers

Tip 1 : precise clear concise and well written 
Tip 2 : mentions the skills sets along with the projects

Final outcome of the interviewSelected

Skills evaluated in this interview

FactSet Interview FAQs

How many rounds are there in FactSet Software Engineer2 interview?
FactSet interview process usually has 4 rounds. The most common rounds in the FactSet interview process are Coding Test, Technical and HR.
What are the top questions asked in FactSet Software Engineer2 interview?

Some of the top questions asked at the FactSet Software Engineer2 interview -

  1. List and tuple differe...read more
  2. Matching round with one of the Engineer from the Team that I'm going to join, s...read more
  3. Questions on Angular basics to intermediate concepts which lasted about 1 h...read more

Tell us how to improve this page.

FactSet Software Engineer2 Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 575 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
HSBC Group Interview Questions
3.9
 • 487 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
BNY Interview Questions
3.9
 • 347 Interviews
UBS Interview Questions
3.9
 • 338 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
View all
FactSet Software Engineer2 Salary
based on 161 salaries
₹8 L/yr - ₹17 L/yr
27% less than the average Software Engineer2 Salary in India
View more details

FactSet Software Engineer2 Reviews and Ratings

based on 23 reviews

4.1/5

Rating in categories

3.5

Skill development

4.6

Work-life balance

3.6

Salary

4.1

Job security

4.0

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 23 Reviews and Ratings
Research Analyst
2.9k salaries
unlock blur

₹1.8 L/yr - ₹5.2 L/yr

Senior Research Analyst
742 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Equity Research Analyst
358 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Software Engineer
257 salaries
unlock blur

₹6.6 L/yr - ₹26 L/yr

Software Engineer III
256 salaries
unlock blur

₹9 L/yr - ₹23.4 L/yr

Explore more salaries
Compare FactSet with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

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