Upload Button Icon Add office photos

DE Shaw

Compare button icon Compare button icon Compare

Filter interviews by

DE Shaw Software Developer Interview Questions, Process, and Tips

Updated 18 Jul 2024

Top DE Shaw Software Developer Interview Questions and Answers

  • Q1. Tower Building Problem Statement Given an array 'ARR' of 'N' cubes, you need to construct towers such that each cube can either be placed on top of an existing tower or ...read more
  • Q2. Rabbit Jumping Problem Consider 'n' carrots numbered from 1 to 'n' and 'k' rabbits. Each rabbit jumps to carrots only at multiples of its respective jumping factor A j ( ...read more
  • Q3. Coin Game Problem Statement Wong wants to borrow money from Dr. Strange, who insists Wong must win a coin game first. The game involves two players taking turns to remov ...read more
View all 76 questions

DE Shaw Software Developer Interview Experiences

15 interviews found

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. 

    Binary Tree Mirror Conversion Problem

    Given a binary tree, your task is to convert it into its mirror tree.

    A binary tree is a data structure where each parent node has at most two children.

    The mirror ...

  • Q2. 

    Maximum Sum Subarray Problem Statement

    Given an array of integers, find the maximum sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Output:
    137
    Exp...
Round 2 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Hard

Technical Interview round with questions on DSA.

  • Q1. 

    Find the Largest BST Subtree in a Given Binary Tree

    Your task is to determine the size of the largest subtree of a given binary tree which is also a Binary Search Tree (BST).

    BST Definition:

    • The left...
  • Q2. 

    Next Higher and Previous Lower Number with Same Number of Set Bits

    Given a positive integer n, the task is to find the next smallest integer and the previous largest integer that contain the exact same nu...

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 - 5 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

I was interviewed before Apr 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

The test has 3 sections :
1. Quantitative contains 20 questions. These questions are easy to me. If u practice quant, you can easily solve it.


2. Technical contains 20 questions. Some questions are on C , C++ , java outputs. Remaining are based on DSA. If u Know all the time complexities of algorithms then it is easy . In technical they gave one DSA problem.
 

3. Essay: They have given one picture and then asked to write an essay by seeing the picture.

  • Q1. 

    Dijkstra's Algorithm for Shortest Path

    Given an undirected graph with 'V' vertices labeled from 0 to V-1 and 'E' edges. Each edge has a weight that represents the distance between two nodes 'X' and 'Y'.

    ...

Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

3 persons are there in panel. They are asking questions on basic concepts in subjects and some advanced concepts.

  • Q1. What is a Daemon Process?
  • Q2. What are the advantages of system calls in operating systems?
  • Q3. Can you explain the select() system call?

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 - 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 interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview Questionnaire 

21 Questions

  • Q1. Hobbies and interests
  • Q2. Questions regarding java
  • Q3. OOP concepts in Java
  • Ans. 

    OOP concepts in Java

    • Encapsulation - hiding implementation details

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on multiple forms

    • Abstraction - focusing on essential features and ignoring the rest

    • Example: A Car class can inherit from a Vehicle class

    • Example: A Dog class can have a bark() method that overrides the Animal class's makeSound() method

    • Example: A Shape class can h...

  • Answered by AI
  • Q4. OOP Java Design problems
  • Ans. 

    Answering OOP Java design problems

    • Identify the problem domain and create a class hierarchy

    • Use encapsulation to hide implementation details

    • Apply inheritance to reuse code and create subtypes

    • Implement polymorphism to allow objects to take on multiple forms

    • Avoid tight coupling and favor composition over inheritance

    • Use design patterns to solve common problems

    • Consider SOLID principles for maintainable code

  • Answered by AI
  • Q5. C++ Virtual Functions
  • Q6. What is the difference between C and C++?
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) which C does not have.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q7. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reusability and saves time and effort in programming.

    • The existing class is called the superclass or parent class, and the new class is called the subclass or child class.

    • The subclass inherits all the properties and methods of the superclass and can also add its own...

  • Answered by AI
  • Q8. What is the difference between default and copy constructor?
  • Ans. 

    Default constructor is provided by the compiler if no constructor is defined. Copy constructor creates a new object by copying an existing object.

    • Default constructor initializes member variables to default values.

    • Copy constructor creates a new object with the same values as an existing object.

    • Default constructor is called automatically by the compiler if no constructor is defined.

    • Copy constructor is called when an obje...

  • Answered by AI
  • Q9. What are access specifiers?
  • Ans. 

    Access specifiers are keywords in object-oriented programming languages that determine the visibility and accessibility of class members.

    • Access specifiers are used to restrict access to class members.

    • There are three types of access specifiers: public, private, and protected.

    • Public members can be accessed from anywhere in the program.

    • Private members can only be accessed within the class.

    • Protected members can be accessed...

  • Answered by AI
  • Q10. What is library functions?
  • Ans. 

    Library functions are pre-written code that can be reused to perform common tasks.

    • Library functions save time and effort by providing pre-written code.

    • They are often included in programming languages or external libraries.

    • Examples include functions for string manipulation, mathematical calculations, and file input/output.

    • Library functions can be called from within a program to perform specific tasks.

    • They can also be cu

  • Answered by AI
  • Q11. What is the difference between DML and DLL?
  • Ans. 

    DML is Data Manipulation Language used to manipulate data in a database. DLL is Data Definition Language used to define database schema.

    • DML is used to insert, update, delete data in a database.

    • DLL is used to create, alter, drop database objects like tables, views, indexes.

    • DML statements include INSERT, UPDATE, DELETE.

    • DLL statements include CREATE, ALTER, DROP.

    • DML affects data in a database, DLL affects the structure of

  • Answered by AI
  • Q12. What is the difference between primary key and unique key?
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures that all values in a column are distinct.

    • Primary key can't have null values, while unique key can have one null value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key is used as a foreign key in other tables, while unique key is not.

    • Example: Primary key - employee ID, Unique key - email address.

  • Answered by AI
  • Q13. What is a stack?
  • Ans. 

    A stack is a data structure that follows the Last-In-First-Out (LIFO) principle.

    • Elements are added to the top of the stack and removed from the top.

    • Common operations include push (add element) and pop (remove element).

    • Stacks can be implemented using arrays or linked lists.

    • Examples include the call stack in programming and the undo/redo feature in text editors.

  • Answered by AI
  • Q14. What is an Assembly?
  • Ans. 

    Assembly is a low-level programming language that is used to write programs that can directly interact with computer hardware.

    • Assembly language is specific to a particular computer architecture.

    • It is a low-level language that is difficult to read and write.

    • Assembly language programs are faster and more efficient than programs written in high-level languages.

    • Examples of assembly language include x86, ARM, and MIPS.

    • Assem...

  • Answered by AI
  • Q15. What are class access modifiers?
  • Ans. 

    Class access modifiers are keywords used to control the visibility and accessibility of class members.

    • There are four access modifiers in Java: public, private, protected, and default

    • Public members can be accessed from anywhere

    • Private members can only be accessed within the same class

    • Protected members can be accessed within the same class, subclasses, and same package

    • Default members can be accessed within the same packa

  • Answered by AI
  • Q16. What is serialization?
  • Ans. 

    Serialization is the process of converting an object into a format that can be stored or transmitted.

    • Serialization is used to save the state of an object and recreate it later.

    • It is commonly used in network communication to transmit data between different systems.

    • Examples of serialization formats include JSON, XML, and binary formats like Protocol Buffers.

    • Deserialization is the opposite process of converting serialized

  • Answered by AI
  • Q17. What is the purpose of Normalisation?
  • Ans. 

    Normalisation is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalisation helps to eliminate data redundancy and inconsistencies

    • It ensures that each piece of data is stored in only one place

    • It helps to improve data integrity and accuracy

    • It makes it easier to maintain and update the database

    • There are different levels of normalisation, each with its own set of rules and g

  • Answered by AI
  • Q18. What is the difference between Truncate and Delete?
  • Ans. 

    Truncate removes all data from a table while Delete removes specific data from a table.

    • Truncate is faster than Delete as it doesn't log individual row deletions.

    • Truncate resets the identity of the table while Delete doesn't.

    • Truncate can't be rolled back while Delete can be.

    • Truncate doesn't fire triggers while Delete does.

  • Answered by AI
  • Q19. What is the difference between DBMS and RDBMs?
  • Ans. 

    DBMS is a software system to manage databases while RDBMS is a type of DBMS that uses a relational model.

    • DBMS stands for Database Management System while RDBMS stands for Relational Database Management System.

    • DBMS can manage any type of database while RDBMS uses a relational model to manage data.

    • DBMS does not enforce any specific data model while RDBMS enforces a relational data model.

    • Examples of DBMS include MongoDB, ...

  • Answered by AI
  • Q20. What is Recursion Function?
  • Ans. 

    Recursion function is a function that calls itself until a base condition is met.

    • Recursion is a technique used to solve problems by breaking them down into smaller sub-problems.

    • It involves a function calling itself with a modified input until a base case is reached.

    • Recursion can be used to solve problems such as factorial, Fibonacci series, and binary search.

    • Recursion can be implemented using loops as well, but it may ...

  • Answered by AI
  • Q21. Interview with the Director

Interview Preparation Tips

Round: Test
Experience: Initially they took an online round but due to some network problem, they had to scrap it. Next morning, they came up with a paper based round. There were 2 sections. One was aptitude and one was coding, both being objective type. The aptitude section was as lengthy as difficult. No one could have solved all 30 questions in 30 minutes time. Infact, I was only able to attempt 10. Next 40 minutes or so was reserved for the coding test. The questions they asked covered almost all the topics they mentioned in their pre-placement presentation. But the maximum number of questions were related to getting output or finding errors in C, C++ and JAVA codes. The questions they asked from theoretical subjects were more or less the basics and easy. In those questions (which were quite a few in number), you will be given a huge chunk of code with some part missing and you have to identify which snippet among the options best fits in there. Sometimes its given what the code is supposed to do, but in some questions it was also your task to find out. So I think the differentiating factor is how well your actual coding skills are. And you need to know these 3 languages atleast – C, C++ and JAVA. Again, similar to aptitude section the coding section was also very lengthy with some programs extending upto 1 or more pages. I’d recommend to skip those programs initially and jump to other easy problems first. Then if you have time, you can come back and attempt them.In the end of the coding round, they had one special subjective test in which they asked you to write the full code in any language for the give problem statement. In my case, the problem was : “Given a tree, find the depth of the largest binary search tree it contains.” I know it sounds simple enough but only until you start coding it. And while writing codes of such problems, make sure to display your data-structures and algorithmic skills and not your knowledge of STL libraries. Even if you’re not able to solve the problem and you used some complicated data structures (by using, I mean you created them from scratch without any help from STL libraries) and some good algorithms, then they are likely to appreciate your coding skills if not your problem-solving skills. And just a hint although I think you already know this – BST are the favourites of all software companies . Overall, I sat for 2 companies including Amazon and both of them had a coding problem related to BST only.
Duration: 70 minutes
Total Questions: 2

Round: HR Interview
Experience: Anyways, then there were usual HR questions like your hobbies, interests, family background, history of my town, etc. He did ask me some technical questions also like on seeing the word ‘Hacking’ in my resume, we started discussing upon hacking, its types and laws related to it.

Round: Technical Interview
Experience: They started off with puzzles, which were quite easy and common ones. Then only after 2 puzzles they started asking me about my favourite subject and language. I told them OS, Networks and C++. But instead they asked me all about Java ! I kept telling them I hadn’t revised Java but that didn’t help. They’ll ask some question and I’ll write the code in C++ and they would ask me to convert it to Java. They’d also ask the equivalents of C++ OOP concepts in Java. Its not that I know nothing of Java, I have actually done a lot of coding in it, but that day and time, I was totally unprepared. So I kept guessing a lot based on my poor memory and later to my surprise, I found I got many of them right .They also asked some design questions in which they asked me to write the class and related functions (just the prototypes) for implementing a parking lot management system. Then there were questions on hacking and security. They also asked about the network problem they faced the previous day when the online round was going on, due to which they had to scrap it. They asked what could be the reason behind it and what could be the solution. Overall, again the majority of the questions were coding type with C++ concepts like virtual functions, JAVA OOP, and design problems. This round went on for 15-20 minutes past 1 hour or so.

Round: Behavioural Interview
Experience: Finally, after few hours I was called for my last interview round. It was more like a casual round in which the D.E.Shaw associate director was taking my interview. The first thing he said was “I just wanted to meet you once myself” and he asked a few HR questions again. He asked me if I had any higher studies plan, my strengths and 2 weaknesses, why their company, etc. It was a cool round with the atmosphere also easy and it went on for just 20 minutes or so.

Skill Tips: Criteria :Cs/IT/ECE And CGPA min of 7.0[CSE] .For ECE =7.5
D. E. Shaw generally prefers computer science branch students but they’re not as strict as Amazon or Google and for for CS students it was only 7.0 . Luckily, my CGPA was above the cutoff and I was allowed to sit for the process.
Skills: C++, Java, DBMS, OOP
College Name: BITS PILANI

Skills evaluated in this interview

Interview Questionnaire 

12 Questions

  • Q1. Find maximum length BST in a given binary tree?
  • Ans. 

    To find the maximum length BST in a given binary tree.

    • Traverse the tree in post-order fashion

    • For each node, check if it satisfies the BST property

    • If it does, calculate the size of the BST rooted at that node

    • Keep track of the maximum size seen so far

  • Answered by AI
  • Q2. Write an algorithm to find the absolute max subsequence of an array containing both positive and negative numbers in O(n) time ?
  • Ans. 

    Algorithm to find absolute max subsequence of an array with positive and negative numbers in O(n) time.

    • Initialize max_so_far and max_ending_here as 0

    • Loop through the array and for each element, add it to max_ending_here

    • If max_ending_here becomes negative, reset it to 0

    • If max_ending_here is greater than max_so_far, update max_so_far

    • Return max_so_far

  • Answered by AI
  • Q3. Given an array eliminate the duplicates and print it. Linear time complexity?
  • Ans. 

    Eliminate duplicates in an array of strings and print it in linear time complexity.

    • Use a hash set to keep track of unique elements

    • Iterate through the array and add non-duplicate elements to the hash set

    • Print the hash set elements to get the final array

  • Answered by AI
  • Q4. Balancing of Btrees / AVL trees?
  • Ans. 

    Balancing of Btrees / AVL trees is important for efficient search and insertion operations.

    • Btrees and AVL trees are self-balancing binary search trees.

    • Balancing ensures that the height of the tree is minimized, leading to faster search and insertion operations.

    • Btrees are used in databases while AVL trees are used in memory.

    • Balancing is achieved by performing rotations and node splitting.

    • AVL trees have a stricter balanc...

  • Answered by AI
  • Q5. Two cops and a robber are located on opposite corners of a cube and move along its edges. They all move at the same rate. Is it possible for the cops to catch the robber. [Each of the 3 people can see each...
  • Q6. In some tournament 139 teams have participated. Tournament is knock out. what is the number of matches to choose the champion to be held?
  • Ans. 

    139 teams in a knock-out tournament, find the number of matches to choose the champion.

    • In a knock-out tournament, each team plays only one match per round.

    • The number of matches required to choose the champion is one less than the number of teams.

    • Therefore, the number of matches required is 138.

  • Answered by AI
  • Q7. OS concepts – Threading, Deadlocks, Paging etc
  • Q8. Databases Questions – Transactions, ACID etc
  • Q9. Project details in your resume?
  • Ans. 

    My resume includes projects such as a web-based inventory management system and a mobile app for tracking fitness goals.

    • Developed a web-based inventory management system using PHP and MySQL

    • Created a mobile app for tracking fitness goals using React Native

    • Implemented RESTful APIs for communication between front-end and back-end

    • Utilized version control tools such as Git for collaborative development

    • Designed and implement...

  • Answered by AI
  • Q10. Given a 7mt long gold bar , need to cut and give to worker for 7 days (1 meter long) How many min cuts?
  • Q11. Write algo to mirror a given Binary Tree?
  • Ans. 

    Algorithm to mirror a given Binary Tree

    • Create a function to swap left and right child nodes of a given node

    • Recursively call the function on left and right child nodes

    • Base case: if node is null, return

    • Call the function on the root node of the binary tree

  • Answered by AI
  • Q12. Find the next largest int of a given int such that it has same number of 1′s in binary?
  • Ans. 

    Find the next largest int with same number of 1's in binary.

    • Count the number of 1's in the binary representation of the given int.

    • Increment the given int until a number with the same number of 1's is found.

    • Return the next largest int with same number of 1's.

  • Answered by AI

Interview Preparation Tips

Skills: C,C++ , JAVA , Finding output, Basic Concepts
College Name: NA

Skills evaluated in this interview

DE Shaw interview questions for designations

 Software Developer Intern

 (10)

 Software Developer 1

 (1)

 Software Engineer

 (3)

 Software Engineer Intern

 (1)

 Software Engineering Manager

 (1)

 Senior Software Engineer

 (1)

 Software Development Engineer II

 (1)

 Technology Developer

 (1)

Interview Preparation Tips

Round: Test
Experience: The first round had two sections. First section consisted of general aptitude and technical aptitude questions. In the second section we were given one coding question, for which we had to write the code in a language of our preference (C,C++,Java). Around 20 students were selected in the first round.

Round: Technical Interview
Experience: The second round was a technical interview. Two interviewers were present and the interview duration was 1-1.5 hours. Questions on Computer Networks, Databases, Operating Systems, Algorithms were asked. But they were more concerned about coding fundamentals especially C++ and Java. 6 students were selected in the second round.

Round: Technical Interview
Experience: Third round was again a technical interview. The interview process was same as previous second round.

Round: HR Interview
Experience: All the 6 students who were selected for the third round had a HR interview.

General Tips: The technical interview process was exhausting as the interview duration was 1-1.5 hours and challenging as they asked questions from all major fields of computer science.
Skill Tips: Prepare a decent resume and have at least 3-4 hard copies of it available with you all the times.Also do carry passport size photos with you. While going for interviews wear proper formals,carry 2-3 copies of resume and a pen.
Skills: C, Basic coding questions, Database, Data structures, Computer Networks, OS, Algorithms
College Name: NIT SURATHKAL

Get interview-ready with Top DE Shaw Interview Questions

DE Shaw Interview FAQs

How many rounds are there in DE Shaw Software Developer interview?
DE Shaw interview process usually has 1-2 rounds. The most common rounds in the DE Shaw interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for DE Shaw Software Developer 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 Administration Management, Analytical Chemistry, Computer Science, Direct Marketing and IT Infrastructure.
What are the top questions asked in DE Shaw Software Developer interview?

Some of the top questions asked at the DE Shaw Software Developer 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. What is the difference between default and copy construct...read more

Tell us how to improve this page.

DE Shaw Software Developer Interview Process

based on 4 interviews

2 Interview rounds

  • Coding Test Round
  • Video Call Round
View more
DE Shaw Software Developer Salary
based on 24 salaries
₹18 L/yr - ₹68 L/yr
440% more than the average Software Developer Salary in India
View more details

DE Shaw Software Developer Reviews and Ratings

based on 5 reviews

2.8/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

3.3

Salary

3.2

Job security

3.4

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 5 Reviews and Ratings
Analyst
165 salaries
unlock blur

₹13 L/yr - ₹30.4 L/yr

Senior Analyst
146 salaries
unlock blur

₹12.9 L/yr - ₹41 L/yr

Manager
71 salaries
unlock blur

₹16.8 L/yr - ₹60.8 L/yr

Project Lead
53 salaries
unlock blur

₹25 L/yr - ₹94 L/yr

Member Technical Staff
48 salaries
unlock blur

₹11.5 L/yr - ₹42.5 L/yr

Explore more salaries
Compare DE Shaw with

Goldman Sachs

3.5
Compare

Morgan Stanley

3.7
Compare

Citadel

3.9
Compare

Blackrock

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