Logo

Get AmbitionBox App

Faster and better experience!

AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Campus placements

      Interviews questions for 2K+ colleges

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

State Street Corporation

Compare button icon Compare button icon Compare
3.7

based on 3.2k Reviews

Play video Play video Video summary
  • About
  • Reviews
    3.2k
  • Salaries
    27.8k
  • Interviews
    235
  • Jobs
    1
  • Benefits
    291
  • Photos
    10

Filter interviews by

State Street Corporation Software Developer Interview Questions and Answers

Updated 1 Oct 2024

6 Interview questions

A Software Developer was asked 7mo ago
Q. Write a program to print the Fibonacci series.
Ans. 

The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

  • Start with two variables initialized to 0 and 1

  • Loop through desired number of iterations, adding the previous two numbers to get the next number

  • Print or store each number in the series

A Software Developer was asked 07 Oct 2018
Q. How does a hash map work?
Ans. 

A hash map is a data structure that uses a hash function to map keys to values.

  • Hash map stores key-value pairs

  • It uses a hash function to compute an index for each key

  • Collisions can occur when two keys hash to the same index

  • Hash maps provide fast access to values based on their keys

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
View answers (43)
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
View answers (7)
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
View answers (4)
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
View answers (5)
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
View answers (2)
View All
A Software Developer was asked 07 Oct 2018
Q. What is the difference between StringBuffer and StringBuilder?
Ans. 

StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

  • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

  • StringBuilder is not synchronized, making it faster but not thread-safe.

  • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

  • Both clas...

A Software Developer was asked 07 Oct 2018
Q. What are the implicit objects in JSP?
Ans. 

Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

  • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

  • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

  • For example, the request object allows access to HTTP request p...

A Software Developer was asked 07 Oct 2018
Q. Can the String class be extended?
Ans. 

Yes, the string class can be extended in most programming languages.

  • Inheritance can be used to extend the functionality of the string class.

  • By creating a new class that inherits from the string class, additional methods and properties can be added.

  • Extending the string class allows for customization and adding specific functionality to strings.

  • Example: In Python, the string class can be extended by creating a new c...

A Software Developer was asked 07 Oct 2018
Q. What annotations are used in RESTful web services?
Ans. 

Annotations used in RESTful web services

  • 1. @Path - Specifies the URI path for the resource

  • 2. @GET - Specifies that the method handles HTTP GET requests

  • 3. @POST - Specifies that the method handles HTTP POST requests

  • 4. @PUT - Specifies that the method handles HTTP PUT requests

  • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

  • 6. @PathParam - Binds the value of a URI template parameter to a method par...

State Street Corporation Software Developer Interview Experiences

4 interviews found

Software Developer Interview Questions & Answers

user image Anonymous

posted on 1 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
    Add your answer
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2024

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

It had medium to difficult apitude questions. Make sure to practice hard.

Round 2 - Coding Test 

It had medium .level questions in it

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2024

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 Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Two easy code ,basic array string

Round 2 - Technical 

(2 Questions)

  • Q1. Coding question
  • Add your answer
  • Q2. Oops, dbms,sql,
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 20 May 2017

I appeared for an interview in May 2017.

Interview Questionnaire 

6 Questions

  • Q1. Can string class be extended
  • Ans. 

    Yes, the string class can be extended in most programming languages.

    • Inheritance can be used to extend the functionality of the string class.

    • By creating a new class that inherits from the string class, additional methods and properties can be added.

    • Extending the string class allows for customization and adding specific functionality to strings.

    • Example: In Python, the string class can be extended by creating a new class ...

  • Answered by AI
    Add your answer
  • Q2. What are the implecit object in JSP
  • Ans. 

    Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

    • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

    • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

    • For example, the request object allows access to HTTP request parame...

  • Answered by AI
    Add your answer
  • Q3. How does hash map works
  • Ans. 

    A hash map is a data structure that uses a hash function to map keys to values.

    • Hash map stores key-value pairs

    • It uses a hash function to compute an index for each key

    • Collisions can occur when two keys hash to the same index

    • Hash maps provide fast access to values based on their keys

  • Answered by AI
    Add your answer
  • Q4. Difference between string buffer and string builder
  • Ans. 

    StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

    • StringBuilder is not synchronized, making it faster but not thread-safe.

    • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

    • Both classes p...

  • Answered by AI
    Add your answer
  • Q5. What is MVC
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and modularity in software development.

    • Example: In a web applica...

  • Answered by AI
    Add your answer
  • Q6. What are the annotation used in RESTFULL web services
  • Ans. 

    Annotations used in RESTful web services

    • 1. @Path - Specifies the URI path for the resource

    • 2. @GET - Specifies that the method handles HTTP GET requests

    • 3. @POST - Specifies that the method handles HTTP POST requests

    • 4. @PUT - Specifies that the method handles HTTP PUT requests

    • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

    • 6. @PathParam - Binds the value of a URI template parameter to a method paramete...

  • Answered by AI
    View 1 more answer

Interview Preparation Tips

Skills: Java Application Development

Skills evaluated in this interview

Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
devshacker007
·
ex -
Zizbey Consultancy
Job Chahiye Boss, Experience 3 Saal Ka — Lekin Salary Fresher Wali!
👔 HR: "Aapke paas Vue.js, React, Node.js, DevOps, AI sabka experience hai?" 👨‍💻 Main: "Haan, maine toh LinkedIn pe sabki post bhi like ki hai!😅" 🤖 Aaj kal interview mein skills se zyada "you must be available to work under pressure, weekends, and salary delay" pe focus hota hai! 💸 Salary expectation batate hi HR bolta hai — "Oh! We are looking for someone who is passionate... not someone who wants money!🏃‍♂️" 🚀 Lekin fir bhi hum apply karte ja rahe hain, kyunki ghar ke EMI aur Swiggy ke bill ne bhi promise kiya hai — "We will never leave you alone!" 📢 Dear companies, ab to job dedo — experience toh Zindagi bhi de rahi hai daily!
FeedCard Image
Got a question about State Street Corporation?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Software Developer Interview Questions & Answers

American Express user image Anonymous

posted on 16 Sep 2021

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the day time. I was asked the programming language of my choice. It was mostly focused on programming fundamentals. I was asked 2 questions based on Data Structures and Algorithms.

  • Q1. How can you detect a loop in a linked list?
  • Ans. 

    A loop in a linked list can be detected using Floyd's Cycle Detection Algorithm.

    • Use two pointers - slow and fast, where slow moves one step at a time and fast moves two steps at a time.

    • If there is a loop, the two pointers will eventually meet at some point within the loop.

    • To detect the start of the loop, reset one pointer to the head and move both pointers one step at a time until they meet again.

  • Answered by AI
    Add your answer
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This round was mostly focused on my resume and projects.

  • Q1. Tell me about your projects.
  • Add your answer
Round 3 - Face to Face 

Round duration - 30 minutes
Round difficulty - Easy

It was in the evening. I went to their office in Gurgaon. It was taken by one of the technology director who had a lot of experience. 
 

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in GurgaonAmerican Express interview preparation:Topics to prepare for the interview - Data structures and algorithms, Object-Oriented Programming System concepts, Database Management System, Operating System, Networking.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Do practice a lot of data structures questions as mostly questions in interviews are based on them. Also, do prepare for projects mentioned in your resume and skills which you have mentioned. Coding ninjas has a big hand in making my interview clear as I have taken a course from the coding Ninjas which helped me a lot to make my concepts clear.

Application resume tips for other job seekers

Keep it short and crisp. Go through it properly before the interview. Make sure that you haven't put anything in it that can cause you problems during the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous
company Logo

Software Developer Interview Questions & Answers

Morgan Stanley user image Anonymous

posted on 12 Sep 2015

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 ]
Anonymous
company Logo

Software Developer Interview Questions & Answers

Morgan Stanley user image Anonymous

posted on 11 Mar 2022

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

There were 33 questions in total. The objective questions were simple.

  • Q1. 

    Sort Big List Dates Problem Statement

    Mary is an enthusiastic party-goer who struggles with remembering event dates. Help Mary by sorting a given list of event dates in an ascending order.

    Example:

    Inpu...
  • Ans. 

    Sort a list of event dates in ascending order based on year, month, and day.

    • Sort the list of dates based on year, then month, and finally day.

    • Use a sorting algorithm to rearrange the dates in ascending order.

    • Ensure the constraints are met for each date in the list.

  • Answered by AI
    Add your answer
  • Q2. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find all pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the pairs based on the first element and then the second element.

    • Handle edge cases like duplicate elements and pairs with the same values.

    • Example...

  • Answered by AI
    Add your answer
  • Q3. 

    Maximum Sum Problem Statement

    Given an integer N, your task is to recursively break it into three integer parts: N / 2, N / 3, and N / 4. You need to compute the maximum sum possible by dividing the numbe...

  • Ans. 

    Given an integer N, recursively break it into three parts and find the maximum sum possible.

    • Recursively divide N into N/2, N/3, and N/4 to find the maximum sum

    • Compare the sum obtained by dividing N with the sum of N itself

    • Return the maximum sum for each test case

  • Answered by AI
    Add your answer

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMorgan Stanley interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more

Final outcome of the interviewRejected

Skills evaluated in this interview

Anonymous
Are these interview questions helpful?
company Logo

Software Developer Interview Questions & Answers

Morgan Stanley user image Anonymous

posted on 11 Mar 2022

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions based on DSA.

  • Q1. 

    Duplicate Integer in Array

    Given an array ARR of size N, containing each number between 1 and N-1 at least once, identify the single integer that appears twice.

    Input:

    The first line contains an integer...
  • Ans. 

    Identify the duplicate integer in an array containing numbers between 1 and N-1.

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

    • Return the element with a frequency greater than 1 as the duplicate integer.

    • Ensure the constraints are met and a duplicate number is guaranteed to be present.

  • Answered by AI
    Add your answer
  • Q2. 

    Sum Root to Leaf Numbers

    You are given an arbitrary binary tree consisting of N nodes, each associated with an integer value from 1 to 9. Each root-to-leaf path can be considered a number formed by concat...

  • Ans. 

    Calculate the total sum of all root to leaf paths in a binary tree formed by concatenating node values.

    • Traverse the binary tree from root to leaf nodes, keeping track of the current path sum

    • Add the current node value to the path sum and multiply by 10 for each level

    • When reaching a leaf node, add the final path sum to the total sum

    • Return the total sum modulo (10^9 + 7)

  • Answered by AI
    Add your answer
  • Q3. 

    Topological Sort Problem Statement

    You are given a directed acyclic graph (DAG). Your task is to perform topological sorting of the graph and return any valid ordering.

    Explanation:

    A directed acyclic g...

  • Ans. 

    Implement a function to perform topological sorting on a directed acyclic graph (DAG) and return any valid ordering.

    • Create a graph data structure to represent the DAG

    • Use depth-first search (DFS) to perform topological sorting

    • Maintain a visited array to keep track of visited nodes

    • Return the ordering of nodes after DFS traversal

  • Answered by AI
    Add your answer
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions based on DSA.

  • Q1. 

    LCA of Binary Tree Problem Statement

    You are given a binary tree consisting of distinct integers and two nodes, X and Y. Your task is to find and return the Lowest Common Ancestor (LCA) of these two nodes...

  • Ans. 

    Find the Lowest Common Ancestor (LCA) of two nodes in a binary tree.

    • Traverse the binary tree to find the paths from the root to nodes X and Y.

    • Compare the paths to find the last common node, which is the LCA.

    • Handle cases where one node is an ancestor of the other.

    • Consider edge cases like when X or Y is the root node.

    • Implement a recursive or iterative solution to find the LCA efficiently.

  • Answered by AI
    Add your answer
  • Q2. 

    Rotated Array Minimum Finder

    You are provided with a sorted array that has undergone 'K' rotations (the exact value of 'K' is unknown). A rotation involves shifting each element of the array to the right,...

  • Ans. 

    Implement a function to find the minimum number in a rotated sorted array efficiently.

    • Use binary search to find the minimum element in the rotated array.

    • Compare the mid element with the start and end elements to determine which half of the array to search next.

    • Continue the binary search until the minimum element is found.

  • Answered by AI
    Add your answer
  • Q3. 

    Maximum Binary Tree Construction Problem

    Given an array TREE of 'N' unique integers, construct a maximum binary tree using the following rules:

    1. The root of this tree is the maximum number in TREE.
    2. T...
  • Ans. 

    Construct a maximum binary tree from an array of unique integers following specific rules.

    • Find the maximum number in the array to set as the root of the tree.

    • Recursively construct the left subtree with elements before the maximum number.

    • Recursively construct the right subtree with elements after the maximum number.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMorgan Stanley interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Anonymous
company Logo

Software Developer Interview Questions & Answers

Citicorp user image Aqel Ahammad

posted on 1 Nov 2015

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. How can a chemical Engineer help citi?
  • Ans. 

    A chemical engineer can help Citi by providing expertise in process optimization, risk management, and sustainability.

    • Optimizing Citi's manufacturing processes to reduce costs and increase efficiency

    • Developing risk management strategies to ensure compliance with environmental regulations

    • Implementing sustainable practices to reduce Citi's environmental impact

    • Providing technical expertise in chemical reactions and materi...

  • Answered by AI
    Add your answer
  • Q2. He asked me about my JEE Rank, preparations
  • Add your answer

Interview Preparation Tips

Round: HR Interview
Experience: I had done many web and android apps. They asked me about my institute experience, things I have done here. It was an easy walk for me.

Skills: SQL, Java Programming
Duration: 2
College Name: IIT Madras
Anonymous
company Logo

Software Developer Interview Questions & Answers

Citicorp user image Mayank Sharma

posted on 3 Dec 2015

Interview Preparation Tips

Round: Test
Experience: Online Test (General aptitude, C aptitude ,Programming problems).

General Tips: Study basics of C and DSA well. Utilize the last summer vacations for studying for placements. Be confident and Honest.
Yes it is challenging and exhausting. It tests your patience. But final reward is also great so we must keep going toward it.
Skill Tips: Online coding sites such as Codechef, etc. Narasimha Karumanchi for data structures and algorithm will help in preparation.
Skills:
College Name: NIT Surathkal
Anonymous
More about working at State Street Corporation
  • HQ - Boston,Massachusetts, United States
  • Financial Services
  • 10k-50k Employees (India)
  • Internet

State Street Corporation Interview FAQs

How many rounds are there in State Street Corporation Software Developer interview?
State Street Corporation interview process usually has 2 rounds. The most common rounds in the State Street Corporation interview process are Coding Test, Technical and Aptitude Test.
What are the top questions asked in State Street Corporation Software Developer interview?

Some of the top questions asked at the State Street Corporation Software Developer interview -

  1. what are the annotation used in RESTFULL web servi...read more
  2. difference between string buffer and string buil...read more
  3. can string class be exten...read more

Tell us how to improve this page.

State Street Corporation Interviews By Designations

  • State Street Corporation Senior Associate Interview Questions
  • State Street Corporation Associate Interview Questions
  • State Street Corporation Associate2 Interview Questions
  • State Street Corporation Assistant Manager Interview Questions
  • State Street Corporation Team Lead Interview Questions
  • State Street Corporation Emerging Leader Interview Questions
  • State Street Corporation Manager Interview Questions
  • State Street Corporation Financial Analyst Interview Questions
  • Show more
  • State Street Corporation Analyst Interview Questions
  • State Street Corporation Team Manager Interview Questions

Interview Questions for Popular Designations

  • Senior Software Developer Interview Questions
  • Lead Software Engineer Interview Questions
  • Software Development Engineer II Interview Questions
  • Associate Software Developer Interview Questions
  • Software Development Engineer 1 Interview Questions
  • Software Engineer Level 1 Interview Questions
  • Software Engineer Interview Questions
  • Senior Software Engineer Interview Questions
  • Show more
  • Java Software Developer Interview Questions
  • Senior Software Development Engineer Interview Questions

Software Developer Interview Questions from Similar Companies

JPMorgan Chase & Co.
JPMorgan Chase & Co. Software Developer Interview Questions
3.9
 • 27 Interviews
BNY
BNY Software Developer Interview Questions
3.8
 • 17 Interviews
Morgan Stanley
Morgan Stanley Software Developer Interview Questions
3.6
 • 17 Interviews
Citicorp
Citicorp Software Developer Interview Questions
3.7
 • 12 Interviews
American Express
American Express Software Developer Interview Questions
4.1
 • 11 Interviews
HSBC Group
HSBC Group Software Developer Interview Questions
3.9
 • 10 Interviews
UBS
UBS Software Developer Interview Questions
3.9
 • 4 Interviews
FactSet
FactSet Software Developer Interview Questions
3.9
 • 4 Interviews
Wells Fargo
Wells Fargo Software Developer Interview Questions
3.8
 • 3 Interviews
Motilal Oswal Financial Services
Motilal Oswal Financial Services Software Developer Interview Questions
3.6
 • 3 Interviews
View all
State Street Corporation Software Developer Salary
based on 20 salaries
₹4.8 L/yr - ₹15 L/yr
At par with the average Software Developer Salary in India
View more details

State Street Corporation Software Developer Reviews and Ratings

based on 3 reviews

4.4/5

Rating in categories

3.9

Skill development

4.4

Work-life balance

4.4

Salary

4.4

Job security

4.4

Company culture

5.0

Promotions

4.4

Work satisfaction

Explore 3 Reviews and Ratings
State Street Corporation Salaries in India
Senior Associate
5.2k salaries
unlock blur

₹4 L/yr - ₹13.7 L/yr

Associate2
3.9k salaries
unlock blur

₹2.4 L/yr - ₹7.9 L/yr

Team Lead
2k salaries
unlock blur

₹4.6 L/yr - ₹15.9 L/yr

Assistant Manager
1.9k salaries
unlock blur

₹9.4 L/yr - ₹30 L/yr

Associate
1.5k salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Explore more salaries
Compare State Street Corporation with
Wells Fargo

Wells Fargo

3.8
Compare
JPMorgan Chase & Co.

JPMorgan Chase & Co.

3.9
Compare
HSBC Group

HSBC Group

3.9
Compare
Cholamandalam Investment & Finance

Cholamandalam Investment & Finance

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • State Street Corporation Interview Questions >
  • State Street Corporation Software Developer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Campus Placements
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter