Upload Button Icon Add office photos

DE Shaw

Compare button icon Compare button icon Compare

Filter interviews by

DE Shaw Interview Questions, Process, and Tips

Updated 22 Feb 2025

Top DE Shaw Interview Questions and Answers

View all 181 questions

DE Shaw Interview Experiences

Popular Designations

120 interviews found

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

2 coding questions

  • Q1. 

    Check if Binary Search Tree (BST)

    Given a binary tree with 'N' nodes, verify whether this tree is a Binary Search Tree (BST). Return true if it is a BST and false otherwise.

    Definition:

    A Binary Search ...

  • Ans. 

    Verify if a given binary tree is a Binary Search Tree (BST) or not.

    • Check if the left subtree of a node contains only nodes with values less than the node's value.

    • Check if the right subtree of a node contains only nodes with values greater than the node's value.

    • Ensure that both the left and right subtrees are also binary search trees.

    • Return true if the tree is a BST, false otherwise.

    • Handle cases with duplicate elements

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

  • Q1. 

    Validate BST Problem Statement

    Given a binary tree with N nodes, determine whether the tree is a Binary Search Tree (BST). If it is a BST, return true; otherwise, return false.

    A binary search tree (BST)...

  • Ans. 

    Validate if a binary tree is a Binary Search Tree (BST) or not.

    • Check if the left subtree of a node contains only nodes with data less than the node's data.

    • Check if the right subtree of a node contains only nodes with data greater than the node's data.

    • Ensure that both the left and right subtrees are also binary search trees.

    • Traverse the tree in an inorder manner and check if the elements are in sorted order.

    • Use recursio

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. I applied for the job as SDE - Intern in HyderabadEligibility criteriaAbove 7 cgpa, branch-cse or eceDE Shaw India interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, graphs, treesTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Practice more.
Tip 2 : Solve questions on Coding ninjas and Leetcode.
Tip 3 : Make good projects.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention your projects in brief.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top DE Shaw Software Developer Intern Interview Questions and Answers

Q1. K Max Sum Combinations Problem Statement Given two arrays/lists A and B, each of size N, and an integer K, you need to determine the K maximum and valid sum combinations from all possible combinations of sums generated by adding one element... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Easy

Smooth platform of Hackerrank.
Nice user interface.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node.

    • Update the head of the reversed linked list as the last node encountered.

    • Ensure to handle edge cases like empty list or single node list.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in BangaloreEligibility criteriaEligible branches- computer science and electronicsDE Shaw India interview preparation:Topics to prepare for the interview - Arrays, Linked list, Trees, Graphs, DSATime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do at-least 2 projects.
Tip 2 : Practice on coding ninjas.

Application resume tips for other job seekers

Tip 1 : Mention if you have any experience in past.
Tip 2 : Put your competitive profiles URL.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top DE Shaw Software Developer Intern Interview Questions and Answers

Q1. K Max Sum Combinations Problem Statement Given two arrays/lists A and B, each of size N, and an integer K, you need to determine the K maximum and valid sum combinations from all possible combinations of sums generated by adding one element... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
DE Shaw Interview Questions and Answers for Freshers
illustration image

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Hard

It was a coding round on Hackerrank.

  • Q1. 

    Validate BST Problem Statement

    Given a binary tree with N nodes, determine whether the tree is a Binary Search Tree (BST). If it is a BST, return true; otherwise, return false.

    A binary search tree (BST)...

  • Ans. 

    Validate if a binary tree is a Binary Search Tree (BST) based on given properties.

    • Check if the left subtree of a node contains only nodes with data less than the node's data.

    • Verify if the right subtree of a node contains only nodes with data greater than the node's data.

    • Ensure that both the left and right subtrees are also binary search trees.

    • Traverse the tree in level order form and compare the elements to validate if

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to create the reversed linked list.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

    • Ensure to update the head of the reversed linked list at the end.

    • Example: Input: 1 -> 2 -> 3 -> 4 -> NULL, Output: 4 ->

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in HyderabadEligibility criteriaAbove 7 CGPADE Shaw India interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming,array, linked list, hashmapTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice on gfg
Tip 2 : Compete on codechef
Tip 3 : Learn DSA

Application resume tips for other job seekers

Tip 1 : Mention all projects
Tip 2 : Don't write anything that you don't know

Final outcome of the interviewRejected

Skills evaluated in this interview

Top DE Shaw Software Developer Intern Interview Questions and Answers

Q1. K Max Sum Combinations Problem Statement Given two arrays/lists A and B, each of size N, and an integer K, you need to determine the K maximum and valid sum combinations from all possible combinations of sums generated by adding one element... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was conducted in the evening at around 7:00 p.m.
The hackerrank environment is clearly the best for conducting coding exams as it provides a decent interface for debugging and testing purposes.
There were 3 questions- 1 of easy level and 2 of medium level.

  • Q1. 

    Pythagorean Triplets Detection

    Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x2 + y2 = z2 within the array.

    Input:

    The first lin...
  • Ans. 

    Detect if an array contains a Pythagorean triplet by checking if x^2 + y^2 = z^2.

    • Iterate through all possible triplets of numbers in the array and check if they form a Pythagorean triplet.

    • Use a nested loop to generate all possible combinations of three numbers from the array.

    • Check if the sum of squares of two numbers is equal to the square of the third number.

  • Answered by AI
  • Q2. 

    Ways to Arrange Balls Problem

    You are given 'a' balls of type 'A', 'b' balls of type 'B', and 'c' balls of type 'C'. Determine the total number of ways to arrange these balls in a straight line so that no...

  • Ans. 

    The problem involves arranging balls of different types in a straight line without having two adjacent balls of the same type.

    • Use recursion to try all possible arrangements while keeping track of the previous ball type.

    • Handle edge cases where one or more types of balls have a count of 0.

    • Consider using dynamic programming to optimize the solution by storing intermediate results.

    • For the given example input (2 1 1), the o...

  • Answered by AI
  • Q3. 

    Longest Common Subsequence of Three Strings

    Given three strings A, B, and C, the task is to determine the length of the longest common subsequence across these three strings.

    Explanation:

    A subsequence ...

  • Ans. 

    Find the length of the longest common subsequence among three strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 3D array to store the lengths of common subsequences.

    • Iterate through the strings to fill the array and find the longest common subsequence length.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The round was conducted on CodePair platform which provides a IDE along with a video call for interviews.
There were 2 interviewers and both were friendly.
I was first asked about the various subjects I have studied in my curriculum. Then I was asked about my favourite programming language to which I answered Python.
After this, they asked various confusing questions based on function calling, argument passing and pass by object reference concept in Python. 
Then they asked about the implementation of dictionary in Python and wanted me to design one with the help of lists(arrays) and optimize its search, add and delete operations. (Could be done with hashing and probing).
Then they asked questions from subjects like Computer Architecture and Theory of Computation (Basic questions were asked so you should just remember the key topics in the subject).

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle cases where the position is at the beginning or end of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in HyderabadEligibility criteria7 CGPA for CS, 8 CGPA for ECE and EEDE Shaw India interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Object Oriented Programming, Time Complexity, Programming Language ImplementationTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : For an intern position in any big company, the most important thing is practicing data structures. Solve as many questions as you can on platforms like Coding Ninjas. First start picking up questions topic-wise and once you gain a decent confidence in every topic, start hitting harder questions randomly on various platforms. (Practice a minimum of 300 questions).
Tip 2 : If you are stuck at solving any question, instead of looking up for a code solution try to read discussions and see various approaches people are applying. This will surely make you prepared for the way in which the interviews are designed. Always keep a clock ticking while solving a problem as spending too much time while practicing surely makes you slow in the Online Tests and Interviews.
Tip 3 : Again specifically for internship preparation, focus mainly on the subjects that have been taught to you till now. As in many colleges Database Management, Operating Systems and Computer Networks are not taught till the 4th semester so you could easily focus on subjects in your curriculum. OOPS concepts are very important!

Application resume tips for other job seekers

Tip 1 : In On-Campus internship drives it is generally not required to have a very charming resume with a load of projects as the companies understand the candidate as a 4th semester student. 
Tip 2 : But still if there is even a single decent project genuinely build by the student then it is more than sufficient.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top DE Shaw Software Developer Intern Interview Questions and Answers

Q1. K Max Sum Combinations Problem Statement Given two arrays/lists A and B, each of size N, and an integer K, you need to determine the K maximum and valid sum combinations from all possible combinations of sums generated by adding one element... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

DE Shaw interview questions for popular designations

 Software Developer

 (15)

 Software Developer Intern

 (10)

 Research Associate

 (4)

 Analyst

 (4)

 Senior Analyst

 (4)

 Intern

 (4)

 Senior Specialist

 (3)

 Software Engineer

 (3)

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

This round had 3 coding questions to be solved under 90 minutes. I found the questions to be of Easy to Medium level of difficulty and anyone who has practised enough from LeetCode or CodeStudio would be able to pass this round.

  • Q1. 

    Count Ways to Reach the N-th Stair Problem Statement

    You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or tw...

  • Ans. 

    The problem involves finding the number of distinct ways to climb N stairs by taking 1 or 2 steps at a time.

    • Use dynamic programming to solve the problem efficiently.

    • The number of ways to reach the Nth stair is the sum of the number of ways to reach the (N-1)th stair and the (N-2)th stair.

    • Handle base cases for N=0 and N=1 separately.

    • Apply modulo operation to avoid overflow while calculating the result.

    • Consider using mem...

  • Answered by AI
  • Q2. 

    Water Equalization Problem Statement

    You are provided with an array ARR of positive integers. Each integer represents the number of liters of water in a bucket. The goal is to make the liters of water in ...

  • Ans. 

    Given an array of water buckets, find the minimum liters of water to remove to make all buckets equal.

    • Iterate through the array to find the maximum frequency of a water amount

    • Calculate the total liters to be removed by subtracting the maximum frequency from the total number of buckets

    • Return the total liters to be removed as the answer

  • Answered by AI
  • Q3. 

    Binary Ones Count Problem

    Develop a program to determine the number of '1's in the binary form of a given integer.

    Input:

    The input consists of a single line containing an integer N.

    Output:

    The outpu...
  • Ans. 

    Count the number of '1's in the binary form of a given integer.

    • Convert the given integer to binary representation

    • Count the number of '1's in the binary representation

    • Return the count of '1's as output

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

In this round, the interviewer asked me 2 coding questions in which I was expected to first explain my approach with proper complexity analysis and then code up the solution. These questions were then followed by 2 puzzles to check my overall aptitude.

  • Q1. 

    Candies Distribution Problem Statement

    Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...

  • Ans. 

    The task is to distribute candies to students based on their performance while minimizing the total candies distributed.

    • Create an array to store the minimum candies required for each student.

    • Iterate through the students' ratings array to determine the minimum candies needed based on the adjacent ratings.

    • Consider both left-to-right and right-to-left passes to ensure fair distribution.

    • Calculate the total candies required...

  • Answered by AI
  • Q2. 

    Validate Binary Search Tree (BST)

    You are given a binary tree with 'N' integer nodes. Your task is to determine whether this binary tree is a Binary Search Tree (BST).

    BST Definition:

    A Binary Search Tr...

  • Ans. 

    Validate if a given binary tree is a Binary Search Tree (BST) or not.

    • Check if the left subtree of a node contains only nodes with data less than the node's data

    • Check if the right subtree of a node contains only nodes with data greater than the node's data

    • Recursively check if both left and right subtrees are also binary search trees

  • Answered by AI
  • Q3. You have two wires of different lengths that are both capable of burning for exactly one hour when ignited at both ends. How can you measure a time interval of 45 minutes using these two wires?
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic SQL related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPADE Shaw India 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 interviewSelected

Skills evaluated in this interview

Top DE Shaw Software Developer Intern Interview Questions and Answers

Q1. K Max Sum Combinations Problem Statement Given two arrays/lists A and B, each of size N, and an integer K, you need to determine the K maximum and valid sum combinations from all possible combinations of sums generated by adding one element... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Get interview-ready with Top DE Shaw Interview Questions

Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2021

I appeared for an interview in Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 Minutes
Round difficulty - Medium

The round consisted of around 25 MCQs and 2 coding questions. MCQs were based on Assertion and Reasoning, Logical Reasoning, and data manipulation. The questions were of medium level and around 30-35 minutes were allotted for this section. The coding part consisted of one easy ad-hoc question and one question based on Dynamic Programming.

  • Q1. 

    Minimum Steps for a Knight to Reach Target

    Given a square chessboard of size 'N x N', determine the minimum number of moves a Knight requires to reach a specified target position from its initial position...

Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

After the coding round, around 15 candidates were selected for the process. This was a F2F interview organized by the Placement Cell of the college. The interviewers were mainly checking the problem-solving skills of the candidates.

  • Q1. 

    Find the Missing Number in an Arithmetic Progression

    You are given a sorted array consisting of ‘N’ distinct integers, forming a nearly complete Arithmetic Progression, except for one missing element. You...

Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

After the Tech-1 round, ~10 candidates were shortlisted for the HR Round. This was organized by the Placement Cell of the college, on the campus.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from National Institute of Technology, Raipur. Eligibility criteriaPointer >= 7.5DE Shaw India interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Computer Fundamentals, Dynamic Programming, PuzzlesTime required to prepare for the interview - 1 MonthsInterview preparation tips for other job seekers

Tip 1 : Focus on problem-solving rather than projects.
Tip 2 : Puzzles are often asked, prepare them well.

Application resume tips for other job seekers

Tip 1 : Include good projects 
Tip 2 : Keep the subjects you are well prepared with. They go deep into concepts.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 95 Minutes
Round difficulty - Easy

The complete test was Audio and Video Proctored. 
The test was divided into 3 sections:
1) Aptitude: (14 MCQs in 28 minutes)
2) Technical: (12 MCQs in 17 minutes) 
3) coding: (2 questions - first in 20 minutes, second in 30 minutes)

  • Q1. 

    Equalize Water in Buckets

    You are provided with an array, ARR, of positive integers. Each integer represents the number of liters of water in a bucket. The goal is to make the water volume in each bucket ...

  • Ans. 

    Find the minimum amount of water to be removed to equalize water in buckets.

    • Iterate through the array to find the average water level.

    • Calculate the total amount of water that needs to be removed to equalize the buckets.

    • Keep track of the excess water in each bucket and sum them up to get the final result.

  • Answered by AI
  • Q2. 

    Time to Burn Tree Problem

    You are given a binary tree consisting of 'N' unique nodes and a start node where the burning will commence. The task is to calculate the time in minutes required to completely b...

  • Ans. 

    Calculate the time in minutes required to completely burn a binary tree starting from a given node.

    • Start burning from the given node and spread fire to adjacent nodes each minute

    • Track the time taken for each node to burn and return the maximum time taken

    • Use a queue to keep track of nodes to be burned next

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriaAbove 7 CGPADE Shaw India interview preparation:Topics to prepare for the interview - Data structures, Algorithms, Object-oriented programming, Database management system, Python, Django, React, web technologies, Problem-solving, AptitudeTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Strengthen DSA skills initially, know the basics and understand the working of different data structures
Tip 2 : Solve atleast 300 Questions from websites like leetcode and Hackerrank
Tip 3 : Learn to implement them and enhance your coding skills. Make mistakes and learn from them instead of just cramming everything before practicing. 
Tip 4 : To enhance coding skills, try your best to crack a question instead of giving up and looking at the solution..this will improve your problem-solving skills.
Tip 5 : It's a must to do the standard coding questions under every category of data structure and algorithms
Tip 6 : To study the topics and practice coding questions refer to GeeksforGeeks and regularly take part in coding contests.
Tip 7 : Be thorough with OOPs, DBMS, and the technologies on which you have worked for the interview.
Tip 8 : Have at least 2 projects in your resume and make sure you can answer the questions related to them.
Tip 9 : For HR interviews prepare questions, prepare questions such as introduce yourself, your strengths, your weakness.
Confidence is the key you need to be an expert in. I was not aware of some things the interviewer asked during my interviews. But due to my confidence, he skipped that part.
Tip 10 : Do all the questions from the book 'cracking the coding interview'

Application resume tips for other job seekers

Tip 1 : Make sure your resume fits everything into a single page. 
Tip 2 : Have at least 2 projects on your resume. 
Tip 3 : Only Mention only those technical skills that you are confident in. Do not put false things on your resume. 
Tip 4 : Mention the work you have done during your internships. 
Tip 5 : Include an objective in your resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top DE Shaw Software Developer Intern Interview Questions and Answers

Q1. K Max Sum Combinations Problem Statement Given two arrays/lists A and B, each of size N, and an integer K, you need to determine the K maximum and valid sum combinations from all possible combinations of sums generated by adding one element... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Code for Reverse BST
  • Ans. 

    Code to reverse a binary search tree (BST)

    • Traverse the BST in post-order

    • Swap the left and right child of each node

    • Return the root node of the reversed BST

  • Answered by AI
  • Q2. Creating a pointer array
  • Ans. 

    To create a pointer array of strings:

    • Declare a pointer array variable with the desired size

    • Allocate memory for each string in the array using malloc

    • Assign the memory address of each string to the corresponding array element

  • Answered by AI
  • Q3. Logic based questions like if I have 8 ball and a weighing balance with one heavy ball, how many times will I have to use it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and try to give your concept

Skills evaluated in this interview

Technical Analyst Interview Questions asked at other Companies

Q1. Write a program to get a employee list whose salary is greater than 50k and grade is above from A, Use Java 8 stream to get the list
View answer (2)

Interview Questionnaire 

2 Questions

  • Q1. Fcff
  • Q2. Depreciation impact on Financial
  • Ans. 

    Depreciation reduces the value of assets over time, impacting financial statements.

    • Depreciation is a non-cash expense that reduces the value of assets on the balance sheet.

    • It is recorded on the income statement and reduces net income.

    • Depreciation can impact financial ratios such as return on assets and debt-to-equity.

    • Different methods of depreciation can be used, such as straight-line or accelerated.

    • Depreciation can al...

  • Answered by AI

Summer Analyst [finance/ Analytics/ Consulting] Interview Questions asked at other Companies

Q1. 50 red marbles, 50 blue marbles. 2 jars in a room. Divide the marbles into the 2 jars such that you maximise the probability that a blind man picks up a red marble
View answer (2)

Interview Questionnaire 

1 Question

  • Q1. Group discussion with 5 members in each group. Topic was What will you send to space which represents India

Operations Associate Interview Questions asked at other Companies

Q1. How do you get use to bulk of invoices comes at a time and how do you work on it
View answer (7)
Contribute & help others!
anonymous
You can choose to be anonymous

DE Shaw Interview FAQs

How many rounds are there in DE Shaw interview?
DE Shaw interview process usually has 2-3 rounds. The most common rounds in the DE Shaw interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for DE Shaw 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 DE Shaw. The most common topics and skills that interviewers at DE Shaw expect are Recruitment, Outsourcing, Direct Marketing, Analytical Chemistry and Administration Management.
What are the top questions asked in DE Shaw interview?

Some of the top questions asked at the DE Shaw interview -

  1. Two cops and a robber are located on opposite corners of a cube and move along ...read more
  2. In some tournament 139 teams have participated. Tournament is knock out. what i...read more
  3. Design a class which has director, HOD, Professor and students. They all are re...read more
How long is the DE Shaw interview process?

The duration of DE Shaw interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

ICON Plc

No Jobs

JOBS

NI India

No Jobs

INTERVIEWS

DE Shaw

No Interviews

INTERVIEWS

Dell

No Interviews

LIST OF COMPANIES

Ace Hardware

Overview

DESIGNATION

SALARIES

DE Shaw

INTERVIEWS

Dell

No Interviews

SALARIES

DE Shaw

Tell us how to improve this page.

DE Shaw Interview Process

based on 77 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
AVASOFT Interview Questions
3.6
 • 149 Interviews
ivy Interview Questions
3.6
 • 122 Interviews
Axtria Interview Questions
3.1
 • 115 Interviews
Blackrock Interview Questions
3.8
 • 99 Interviews
Citadel Interview Questions
3.9
 • 5 Interviews
View all

DE Shaw Reviews and Ratings

based on 154 reviews

3.8/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

4.5

Salary

4.1

Job security

4.0

Company culture

3.6

Promotions

3.4

Work satisfaction

Explore 154 Reviews and Ratings
Analyst
165 salaries
unlock blur

₹13 L/yr - ₹32 L/yr

Senior Analyst
127 salaries
unlock blur

₹10.1 L/yr - ₹38 L/yr

Manager
70 salaries
unlock blur

₹14 L/yr - ₹60 L/yr

Associate
56 salaries
unlock blur

₹8 L/yr - ₹28.8 L/yr

Project Lead
53 salaries
unlock blur

₹25 L/yr - ₹94 L/yr

Explore more salaries
Compare DE Shaw with

Morgan Stanley

3.7
Compare

Citadel

3.9
Compare

Blackrock

3.8
Compare

AQR Capital Management

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview