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

Updated 22 Nov 2024

8 Interview questions

A Software Engineer was asked 9mo ago
Q. How would you implement a hashmap using object-oriented programming (OOP) principles?
Ans. 

Implementing hashmap using OOPS involves creating a class with key-value pairs and methods for adding, retrieving, and deleting entries.

  • Create a class with private data members for storing key-value pairs

  • Implement methods for adding a key-value pair, retrieving a value by key, and deleting a key-value pair

  • Use hashing function to map keys to indices in an array for efficient retrieval

  • Handle collisions by using tech...

A Software Engineer was asked
Q. What is a data structure?
Ans. 

Data structure is a way of organizing and storing data in a computer so that it can be accessed and used efficiently.

  • Data structures are used to manage large amounts of data efficiently.

  • They provide a way to organize data in a way that makes it easy to access and manipulate.

  • Examples of data structures include arrays, linked lists, stacks, queues, trees, and graphs.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
A Software Engineer was asked
Q. Given an array, find a pair of elements that sum to a given target value.
Ans. 

Finding pairs in an array with a given sum.

  • Iterate through the array and for each element, check if the difference between the given sum and the element exists in the array.

  • Use a hash table to store the elements of the array and their indices for faster lookup.

  • If there are multiple pairs with the same sum, return any one of them.

  • If no pair is found, return null or an empty array.

A Software Engineer was asked
Q. How do you print all non-boundary elements in a given binary tree?
Ans. 

Printing non-boundary elements of a binary tree

  • Traverse the tree in any order (preorder, inorder, postorder)

  • Check if the current node is not a boundary node (not the first or last node in its level)

  • If it is not a boundary node, print its value

  • Recursively traverse its left and right subtrees

A Software Engineer was asked
Q. Given an array of integers, find the number that occurs an odd number of times, assuming all other numbers occur an even number of times.
Ans. 

Find an odd occurring number among even occurring numbers.

  • Use XOR operation to cancel out even occurring numbers and get the odd occurring number.

  • Iterate through the array and XOR each element with the result variable.

  • The final result will be the odd occurring number.

A Software Engineer was asked
Q. Find the total number of k elements which have a given average in a given array in minimum time complexity.
Ans. 

Find total number of k element with given avg in an array in minimum time complexity.

  • Use sliding window technique to traverse the array in O(n) time complexity.

  • Maintain a sum variable to keep track of the sum of elements in the window.

  • If the sum of elements in the window is equal to k times the given avg, increment the count.

  • Move the window by subtracting the first element and adding the next element in the array.

A Software Engineer was asked
Q. Spiral order of binary tree and mattrix, print it
Ans. 

Print the spiral order of a binary tree and matrix.

  • For binary tree, use level order traversal and alternate direction for each level.

  • For matrix, use four pointers to traverse in spiral order.

  • Example for binary tree: 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9

  • Example for matrix: 1 2 3 4 -> 8 7 6 5 -> 9 10 11 12 -> 16 15 14 13

Are these interview questions helpful?
A Software Engineer was asked
Q. Prototype in JavaScript
Ans. 

Prototyping in JavaScript allows for quick and easy creation of new objects and functions.

  • Prototyping allows for inheritance and sharing of properties and methods.

  • New objects can be created using the 'new' keyword and the prototype of an existing object.

  • Functions can also be prototyped to add new methods or properties.

  • Example: function Person(name) { this.name = name; } Person.prototype.greet = function() { consol...

FactSet Software Engineer Interview Experiences

8 interviews found

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

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Write code to return the maximum profit by buying and selling stocks using available money

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

I applied via Campus Placement and was interviewed in Nov 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 - Coding Test 

It had 3 questions, the level was medium hardish

Round 3 - Technical 

(1 Question)

  • Q1. There were 3 rounds of interviews, 2 technical and 1 HR, ln First round I was asked about OOPs, 2 medium level DSA questions, asked to write code on paper and explain the approach. Questions: 1. Given an ...

Software Engineer Interview Questions & Answers

user image Tharun Chowhan Mudavath

posted on 9 May 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Thirty minutes,basic aptitude concepts

Round 2 - Coding Test 

One hour and basic programmming concepts

Round 3 - HR 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Whats are your strengths
  • Q3. What are your weakness
  • Q4. Your techniclal skills
  • Q5. Tell me about your project
  • Ans. 

    Developed a web-based project management tool to enhance team collaboration and streamline task tracking.

    • Utilized React for the front-end, ensuring a responsive and user-friendly interface.

    • Implemented a RESTful API using Node.js and Express for seamless data communication.

    • Integrated a PostgreSQL database for efficient data storage and retrieval.

    • Incorporated user authentication with JWT for secure access control.

    • Conduct...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well

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

(4 Questions)

  • Q1. 1. Question on Projects, Job, Contribution.
  • Ans. ..
  • Answered Anonymously
  • Q2. Javascript : closures, promise
  • Q3. Guess Output based questions
  • Q4. Coding : Given array and target, find the index pair of elements the sum becomes target

Interview Preparation Tips

Interview preparation tips for other job seekers - Project bases questions, Core Concepts(with examples and senarios) and Coding question

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Simple coding questions for 1 hour duration

Round 2 - Technical 

(2 Questions)

  • Q1. Coding question about graph data structure
  • Q2. Implementation of hashmap using OOPS
  • Ans. 

    Implementing hashmap using OOPS involves creating a class with key-value pairs and methods for adding, retrieving, and deleting entries.

    • Create a class with private data members for storing key-value pairs

    • Implement methods for adding a key-value pair, retrieving a value by key, and deleting a key-value pair

    • Use hashing function to map keys to indices in an array for efficient retrieval

    • Handle collisions by using technique...

  • Answered by AI

Skills evaluated in this interview

Round 1 - Coding Test 

90 minutes
hacker Rank plotform

Round 2 - Technical 

(2 Questions)

  • Q1. What is data structure ?
  • Q2. What is linked list?
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me about your project

Interview Preparation Tips

Interview preparation tips for other job seekers - kdnf djfndjf jdfbdsjbfdsjb jdfbdjfd kdf

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Basic javascript.. closures,hoisting, es6 features etc
  • Q2. Prototype in JavaScript
  • Ans. 

    Prototyping in JavaScript allows for quick and easy creation of new objects and functions.

    • Prototyping allows for inheritance and sharing of properties and methods.

    • New objects can be created using the 'new' keyword and the prototype of an existing object.

    • Functions can also be prototyped to add new methods or properties.

    • Example: function Person(name) { this.name = name; } Person.prototype.greet = function() { console.log...

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image SONELAL GUPTA

posted on 11 Sep 2015

Interview Questionnaire 

8 Questions

  • Q1. Find a number which occurs odd number of times and all number occurs even number of times
  • Q2. Some discussion about my minor project
  • Q3. Spiral order of binary tree and mattrix, print it
  • Q4. Some question about os,dbms
  • Q5. Find pair which have a given sum in a given array
  • Q6. Find total number of k element which have a given avg in a given array in minimum time complexity
  • Q7. Print all elements which in not boundary element in a given binary tree
  • Q8. Then some question about process synchronisation,error vs exception,and then 2-3 hr question

Interview Preparation Tips

Round: Test
Experience: practice codes on paper
Tips:

Round: Technical Interview
Experience: very good
Tips: please try to explain each and every question in detail

Round: Technical Interview
Experience: my hr round is not taken by them,and some of face 3rd round ,which is HR
Tips: please prepare all types of problem from geeksforgeeks

Skill Tips: please try to understand every problem from geeksforgeeks
Skills: ds
College Name: NIT Bhopal
Motivation: best work culture,and a lots of learning opportunity in this company,and in every 6 month there is a appraisal

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about FactSet?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Asked many Dbsa questions. You need to be thorough about the joins in the databases.

Interview Preparation Tips

Round: Test
Experience: Practice questions on Indiabix.

Round: Technical Interview
Experience: Operating Systems basics, Dbsa basics

General Tips: 1: Be Confident.
2: Keep Smiling.
3: Do not be Panic.
4: Remember they are here to hire you but not reject you.
5: Do not loose hope.
6: Believe at yourself.
7: Start preparing early.
8: Do demo interviews with your friend.
Skill Tips: Make sure you do a course on object oriented programming
Skills: C, Sql, Java
College Name: BITS PILANI
Motivation: Every body joins a comapny for making a software or earning money. But I was always motivated to MAKE MONEY. I have taken this job because they have very extensive work in Share Market and they have lots of MBA from IIM's, Lots of CAs, CS. Thats why i have choosen Edelweiss. I have rejected epic System USA for this profile.

Interview Preparation Tips

Round: Test
Experience: The written test was quite similar to the typical CAT pattern. It contained sections on Reading Comprehension, Data Interpretation and Mathematics.

Round: Technical + HR Interview
Experience: There were 2 interviewers in the first interview, one was a technical guy and the other was from HR. They asked me a few very simple puzzles, a few basic programming questions (swapping the value of two variables etc.), questions related to the development cycle of software products. The HR guy asked stuff like what do you want to achieve in life? Strengths, weaknesses etc.

Round: Case Study Interview
Experience: The third interview was the most important one (and I guess that was the deciding interview). The interviewer started with questions like why finance? Which companies are you sitting for? Then he gave me a case study:

FactSet Interview FAQs

How many rounds are there in FactSet Software Engineer interview?
FactSet interview process usually has 2-3 rounds. The most common rounds in the FactSet interview process are Coding Test, Technical and HR.
How to prepare for FactSet Software Engineer 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 Python, Javascript, Computer science, SQL and Analytics.
What are the top questions asked in FactSet Software Engineer interview?

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

  1. find a number which occurs odd number of times and all number occurs even nu...read more
  2. find total number of k element which have a given avg in a given array in minim...read more
  3. print all elements which in not boundary element in a given binary t...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
FactSet Software Engineer Salary
based on 207 salaries
₹6.7 L/yr - ₹25 L/yr
68% more than the average Software Engineer Salary in India
View more details

FactSet Software Engineer Reviews and Ratings

based on 46 reviews

4.0/5

Rating in categories

3.2

Skill development

4.3

Work-life balance

3.3

Salary

4.0

Job security

4.0

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 46 Reviews and Ratings
Research Analyst
3k salaries
unlock blur

₹2.4 L/yr - ₹5.2 L/yr

Senior Research Analyst
794 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Equity Research Analyst
365 salaries
unlock blur

₹1.8 L/yr - ₹4.9 L/yr

Software Engineer III
277 salaries
unlock blur

₹9 L/yr - ₹23.4 L/yr

Senior Software Engineer
265 salaries
unlock blur

₹11.5 L/yr - ₹40 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
write
Share an Interview