Upload Button Icon Add office photos

DE Shaw

Compare button icon Compare button icon Compare

Filter interviews by

DE Shaw Technology Developer Interview Questions and Answers

Updated 19 May 2022

DE Shaw Technology Developer Interview Experiences

1 interview found

I appeared for an interview in Feb 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Hard

  • Q1. 

    Number Pattern Generator

    To arrange a high-security meeting, tables are set up for delegates and security personnel. There are N rows of tables. The first row has one table, the second row has two tables,...

  • Ans. 

    Generate a pattern of guest and security personnel distributions across tables for a given number of rows.

    • Iterate through each row from 1 to N

    • For each row, print the pattern based on the number of guests and security personnel at each table

    • Tables on each end of a row are reserved for security personnel

  • Answered by AI
  • Q2. 

    Minimum Sum in Matrix Problem Statement

    You are given a 2D matrix 'ARR' of size 'N x 3' with integers, where 'N' is the number of rows. Your task is to compute the smallest sum achievable by selecting one...

  • Ans. 

    Find the smallest sum achievable by selecting one element from each row of a matrix, following certain constraints.

    • Iterate through each row and find the minimum element that can be selected without violating the constraints

    • Keep track of the selected elements to avoid selecting elements directly below them in the next row

    • Sum up the selected elements to get the smallest possible sum

  • Answered by AI
  • Q3. 

    Buy and Sell Stock Problem Statement

    Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You can perform up to two buy-and-sell ...

  • Ans. 

    The task is to determine the maximum profit that can be achieved by performing up to two buy-and-sell transactions on a given set of stock prices.

    • Iterate through the stock prices to find the maximum profit that can be achieved by buying and selling stocks at different points.

    • Keep track of the maximum profit after the first transaction and the maximum profit overall after the second transaction.

    • Consider edge cases where...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. 

    Pretty JSON Formatting Problem

    You're provided with a string 'STR' that represents a JSON object. Your task is to return an array of strings representing JSON objects, formatted with proper indentation ba...

  • Ans. 

    The task is to format a JSON object string with proper indentation based on specific rules.

    • Iterate through the string character by character and keep track of the indentation level.

    • Use a stack to keep track of opening and closing braces to determine the indentation level.

    • Insert four spaces or a tab (' ') for each level of indentation.

    • Handle commas to represent new lines in the output array of strings.

  • Answered by AI
  • Q2. 

    Peak Element Finder

    For a given array of integers arr, identify the peak element. A peak element is an element that is greater than its neighboring elements. Specifically, if arr[i] is the peak, then both...

  • Ans. 

    Find the peak element in an array of integers.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • Handle edge cases for the first and last elements of the array.

    • Return the peak element found.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Technology Developer in HyderabadEligibility criteriaNo criteriaDE Shaw India interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, OS, DBMS, CNTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : before interview, practice questions with company tag on websites like leetcode and see previous experiences
Tip 2 : even if you're able to solve the question, see approaches used by other people and try to solve the question in multiple ways

Application resume tips for other job seekers

Tip 1 : put links of your work like competitive coding profiles, hosted projects, github, etc
Tip 2 : revise everything on your resume before interview

Final outcome of the interviewRejected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about DE Shaw?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Aug 2016.

Interview Preparation Tips

Round: Test
Experience: The questions were tricky. We were given a paragraph and after reading it, a statement was given to us and we were asked to say if it is true, false or cannot say. The structure of the statement put us into a a tough place. So practice of such kind of questions is necessary.

For data interpretation questions a good hand on basic statistical mathematics is needed. One has to be quick because of the time crunch. The questions were approachable

Round: Technical Interview
Experience: In this round my resume was scanned and I was required to speak about myself, my projects and explain certain areas of my resume. The interviewer picked up one of my basic project, surprisingly, and asked me to elaborate on it. He asked me how I can improve the project. And I had to write a code to make that change. Basically, one should have a good idea about the projects they've done/ mentioned in their resume. And know it in detail.

Few questions on data structures. Prepare well for coding type questions and data structures.

Round: Puzzle Interview
Experience: The interviewer asked me two puzzles. They were moderate level. And also luckily he was helpful whenever I got stuck.

Round: HR Interview
Experience: HR round was good. Basic questions like " tell me more about yourself", brief information about my past history, college life, extra curricular activities. In the end she asked me, "should we hire you?" And I lightly answered " why not!" So it was a good interview overall.

Skills: Coding Skills, Team Working Ability, Project management
College Name: Visvesvaraya National Institute Of Technology

Technology Developer Interview Questions Asked at Other Companies

asked in DE Shaw
Q1. Pretty JSON Formatting Problem You're provided with a string 'STR ... read more
asked in DE Shaw
Q2. Number Pattern Generator To arrange a high-security meeting, tabl ... read more
asked in DE Shaw
Q3. Minimum Sum in Matrix Problem Statement You are given a 2D matrix ... read more
asked in DE Shaw
Q4. Peak Element Finder For a given array of integers arr, identify t ... read more
asked in DE Shaw
Q5. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more

I appeared for an interview in Aug 2017.

Interview Questionnaire 

3 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development

    • Passionate about coding and problem-solving

    • Strong communication and teamwork skills

    • Always eager to learn and adapt to new technologies

  • Answered by AI
  • Q2. Questions on data structures
  • Q3. Questions on algorithms

Interview Preparation Tips

Round: Technical + HR Interview
Experience: it took half-an-hour

Skills: Technical Skill, Technical Analysis, Speaking Skills
College Name: NIT Bhopal

I applied via Naukri.com and was interviewed in May 2019. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. How MVC works for data flow?
  • Ans. 

    MVC separates data flow into three components: Model, View, and Controller.

    • Model represents data and business logic

    • View displays data to the user

    • Controller handles user input and updates the model and view accordingly

    • Data flows from the model to the view through the controller

    • Changes in the view are communicated to the controller, which updates the model and view

  • Answered by AI
  • Q2. What are mvc layers
  • Ans. 

    MVC stands for Model-View-Controller. It is a software design pattern that separates an application into three interconnected components.

    • Model: Represents the data and business logic of the application

    • View: Displays the data to the user and handles user input

    • Controller: Acts as an intermediary between the Model and View, handling user input and updating the Model and View accordingly

  • Answered by AI
  • Q3. Get and post methods
  • Q4. Servlet life cycle

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your homework for string data structures problems

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were related to your technology on which you are good, it starts with basic that identifies you worked in your technology and good knowledge over workflow and your coding standard.

Interview Preparation Tips

Interview preparation tips for other job seekers - Working hard and prepare yourself to achieve your goal where you are satisfy with your job. There is no shortcut, you have to face the challenges. Be prepare yourself

I appeared for an interview in Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. One Program with c#
  • Ans. 

    A C# program to demonstrate basic concepts like variables, loops, and conditionals.

    • Use 'int' for integers: int number = 5;

    • Implement loops: for (int i = 0; i < 5; i++) { Console.WriteLine(i); }

    • Use conditionals: if (number > 0) { Console.WriteLine('Positive'); }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Wasting of time i feel when I joined interview with him. One Program he asked when i answered it properly/not he said done his interview

Skills evaluated in this interview

I applied via Referral and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. He asked about MVC and jquery.
  • Q2. He asked about triggers and SO.
  • Q3. He asked about. Net session management and stringbuilder etc.
  • Q4. Overall interview was easy.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't take panic give all answers with cool mind you will be sure select.
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. OOPS basics Sql basic Mvc && jQuery basic only

I applied via Naukri.com and was interviewed in Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I have got questions about vsam files and about SQL queries.
  • Q2. What is my previous work and project roles and responsibilities.?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basics clear with your project,your work,and your roles and responsibilities and be good to make them understand what you willing to answer.

I applied via Walk-in and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. There are 10 apples in my hand ,from these apples ,2 of them are much smaller than others .. what are the possibilities to take that smaller apples with easy method ;that means reduce the no of terms maxim...
  • Q2. If u become a software developer in this company, suppose after one year u get another job, could you still remain here or go ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be panic .think that interviewer is 3 years old child asking us their doubts . And they don't have enough knowledge....think theses things..then our answers automatically generate.

Tell us how to improve this page.

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 198 Interviews
HighRadius Interview Questions
2.8
 • 197 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
ivy Interview Questions
3.6
 • 133 Interviews
Axtria Interview Questions
2.9
 • 126 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 112 Interviews
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
View all
Analyst
203 salaries
unlock blur

₹8.8 L/yr - ₹30 L/yr

Senior Analyst
129 salaries
unlock blur

₹12.8 L/yr - ₹40.8 L/yr

Manager
74 salaries
unlock blur

₹17.2 L/yr - ₹61 L/yr

Associate
66 salaries
unlock blur

₹12.4 L/yr - ₹21 L/yr

Project Lead
58 salaries
unlock blur

₹25 L/yr - ₹94 L/yr

Explore more salaries
Compare DE Shaw with

Thomson Reuters

4.1
Compare

HighRadius

2.8
Compare

Chetu

3.3
Compare

EbixCash Limited

3.9
Compare
write
Share an Interview