i
FactSet
Filter interviews by
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)
I applied via Approached by Company and was interviewed before Apr 2023. There were 5 interview rounds.
Hackerrank Test with 2 coding questions with 1 hour time period
I applied via Naukri.com and was interviewed before May 2022. There were 4 interview rounds.
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.
Check the above round 1
Check the above round 1
Top trending discussions
posted on 25 Mar 2024
I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.
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
posted on 13 Jan 2025
I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.
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
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
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
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...
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
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
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
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...
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.
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
posted on 2 Jun 2024
I applied via Naukri.com and was interviewed before Jun 2023. There were 5 interview rounds.
posted on 4 Jun 2024
I applied via LinkedIn and was interviewed in Dec 2020. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.
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...
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
I appeared for an interview before May 2021.
Round duration - 45 Minutes
Round difficulty - Hard
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...
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.
Round duration - 50 Minutes
Round difficulty - Easy
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...
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
Round duration - 60 Minutes
Round difficulty - Medium
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 ...
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.
Round duration - 60 Minutes
Round difficulty - Easy
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
Tip 1 : precise clear concise and well written
Tip 2 : mentions the skills sets along with the projects
based on 3 interviews
Interview experience
based on 23 reviews
Rating in categories
Research Analyst
2.9k
salaries
| ₹1.8 L/yr - ₹5.2 L/yr |
Senior Research Analyst
742
salaries
| ₹2.8 L/yr - ₹9 L/yr |
Equity Research Analyst
358
salaries
| ₹1.8 L/yr - ₹5 L/yr |
Software Engineer
257
salaries
| ₹6.6 L/yr - ₹26 L/yr |
Software Engineer III
256
salaries
| ₹9 L/yr - ₹23.4 L/yr |
Wells Fargo
JPMorgan Chase & Co.
HSBC Group
Cholamandalam Investment & Finance