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

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
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Assignment 

Was an intern at jpmc

Round 2 - One-on-one 

(2 Questions)

  • Q1. About the work I did at jpmc
  • Q2. Automation anywhere, python general questions
Round 3 - HR 

(1 Question)

  • Q1. General discussion and my willingness to accept the offered pay

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Explain SCD Type 2 Implementation in Informatica
  • Ans. 

    SCD Type 2 is a technique used to track historical changes in data over time in a data warehouse.

    • SCD Type 2 maintains a separate row for each change in data, with a start and end date.

    • It requires a surrogate key to uniquely identify each row.

    • Informatica provides a built-in SCD Type 2 transformation to implement this technique.

    • Example: tracking changes in customer addresses over time.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly focus on basic BI terminologies, common to trivial scenarios and introductory information on latest trending tools and technologies.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jan 2021. 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 - One-on-one 

(1 Question)

  • Q1. Most of the questions were centred around Derivatives and Fixed Income Securities

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a sound knowledge in Financial and Economics oriented topics.

I applied via Referral and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to Python, my former organisation, why do you want to shift, questions related to different types of risk

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be on time and well dressed
Communication must be good
Answer questions if you can, if you don’t know just accept you don’t know

I applied via Naukri.com and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic accounting questions, knowledge testing of Finance and Financial Statements.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't speak lie.

I applied via Campus Placement and was interviewed before Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Have you ever worked in a team and how did you manage conflicts?
  • Ans. Gave an example of an academic group project and explained in detail the conflict or clash of ideas and how we approached towards an agreement
  • Answered Anonymously
  • Q2. Why finance?
  • Ans. Natural skills of analysis and interest towards numbers. Love to deal anything involving money or resource management
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be natural and your own true self. If your natural skills are inclined towards the requirements, you will be hired or you will know where you have to improve.

I applied via Naukri.com and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Question realted to final year project
  • Q3. Why Morgan Stanley and what do you know about our company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the job description and know the job role as the interview questions are related to it.

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

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, Resume Shortlist and Coding Test.
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.8
 • 580 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
HSBC Group Interview Questions
3.9
 • 489 Interviews
American Express Interview Questions
4.2
 • 366 Interviews
BNY Interview Questions
3.8
 • 351 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
View all
FactSet Software Engineer Level 1 Salary
based on 36 salaries
₹8.9 L/yr - ₹13.6 L/yr
12% 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.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 - ₹4.8 L/yr

Software Engineer
257 salaries
unlock blur

₹6.6 L/yr - ₹26 L/yr

Software Engineer III
249 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