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, Process, and Tips

Updated 22 Nov 2024

Top FactSet Software Engineer Interview Questions and Answers

  • Q1. find a number which occurs odd number of times and all number occurs even number of times
  • Q2. find total number of k element which have a given avg in a given array in minimum time complexity
  • Q3. print all elements which in not boundary element in a given binary tree
View all 11 questions

FactSet Software Engineer Interview Experiences

9 interviews found

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
  • 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.

  • Answered by AI
  • Q2. Some discussion about my minor project
  • Q3. 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

  • Answered by AI
  • Q4. Some question about os,dbms
  • Q5. Find pair which have a given sum in a given array
  • 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.

  • Answered by AI
  • Q6. Find total number of k element which have a given avg 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.

  • Answered by AI
  • Q7. Print all elements which in not boundary element 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

  • Answered by AI
  • 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

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

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
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 2 interview rounds.

Round 1 - Coding Test 

It had 3 questions, the level was medium hardish

Round 2 - 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 at Jawaharlal Nehru Technological University (JNTU) 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
  • Ans. 

    Proficient in programming languages such as Java, Python, and C++, as well as experience with databases and web development.

    • Strong knowledge of Java, Python, and C++ programming languages

    • Experience with databases such as MySQL and MongoDB

    • Familiarity with web development technologies like HTML, CSS, and JavaScript

  • Answered by AI
  • Q5. Tell me about your project

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well

FactSet interview questions for designations

 Senior Software Engineer

 (3)

 Software Engineer III

 (3)

 Software Engineer II

 (1)

 Software Engineer Level 1

 (2)

 Software Developer

 (5)

 Software Engineer2

 (3)

 Data Engineer

 (1)

 Network Engineer

 (1)

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.
  • 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
  • Ans. 

    Given an array and target, find the index pair of elements the sum becomes target.

    • Use a hash table to store the difference between target and current element

    • Check if the difference exists in the hash table

    • Return the indices of the current element and the difference

  • Answered by AI

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

Get interview-ready with Top FactSet Interview Questions

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

I applied via campus placement at VR Siddharth Engineering College, Vijayawada 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

Software Engineer Jobs at FactSet

View all
Round 1 - Coding Test 

90 minutes
hacker Rank plotform

Round 2 - Technical 

(2 Questions)

  • Q1. What is 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.

  • Answered by AI
  • Q2. What is linked list?
  • Ans. 

    A linked list is a linear data structure where each element is a separate object with a pointer to the next element.

    • Consists of nodes that contain data and a pointer to the next node

    • Can be singly or doubly linked

    • Used for dynamic memory allocation, implementing stacks and queues

    • Example: Singly linked list - 1 -> 2 -> 3 -> null

    • Example: Doubly linked list - null <- 1 <-> 2 <-> 3 -> null

  • Answered by AI
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

Auditor | Software Engineer | Team Lead interview

user image Wisdom Jobs & Tutorials

posted on 2 Feb 2022

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

During the coding round, I was asked a question about performing insertion sort using recursion. Additionally, there were theoretical questions regarding DBMS and some puzzles. The interview lasted for 45 minutes.

Round 2 - Technical 

(1 Question)

  • Q1. What questions were asked regarding your projects, particularly those that required a deep dive into the programming languages you utilized, including inquiries about how the server operates and various ap...
Round 3 - HR 

(1 Question)

  • Q1. How was your college experience? Where do you live? Your interests and hobbies?
  • Ans. 

    My college experience was enriching, I live in a bustling city, and my interests include coding, hiking, and playing the guitar.

    • College experience was enriching with challenging coursework and extracurricular activities

    • I live in a bustling city with access to diverse cultural events and opportunities

    • Interests include coding, hiking, and playing the guitar for relaxation and creativity

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I joined through campus placement. For interviews as freshers, it is important to focus on puzzles (from GFG), basic data structures and algorithms up to linked lists, and to have a thorough understanding of the skills mentioned in the resume.

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.

FactSet Software Engineer Interview Process

based on 5 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
FactSet Software Engineer Salary
based on 235 salaries
₹7.2 L/yr - ₹26 L/yr
93% more than the average Software Engineer Salary in India
View more details

FactSet Software Engineer Reviews and Ratings

based on 43 reviews

4.1/5

Rating in categories

3.3

Skill development

4.4

Work-life balance

3.4

Salary

4.2

Job security

4.0

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 43 Reviews and Ratings
Software Engineer (Dot Net + VueJs)

Hyderabad / Secunderabad

5-8 Yrs

Not Disclosed

Software Engineer - C++

Hyderabad / Secunderabad

5-10 Yrs

Not Disclosed

Explore more jobs
Research Analyst
2.8k salaries
unlock blur

₹1.8 L/yr - ₹5.2 L/yr

Senior Research Analyst
754 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
243 salaries
unlock blur

₹9 L/yr - ₹26.9 L/yr

Senior Software Engineer
239 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