Open In App

DE Shaw Interview Experience for Software Engineer

Improve
Improve
Like Article
Like
Save
Share
Report

Coding test (Platform: Hacker Rank/ Proctored)

3 Coding questions (1.5hr):

  • Sorting of structs based.
  • Graph (DFS and connected components based) (This was a nice one).
  • 0/1 Knapsack-based.

All questions were time-bound and if you jump ahead in sections, you can’t go back.

Interviews:

  • Total candidates: 8 (2 were already selected in Arcesium and GS, so only 6 actually)
  • Platform: Hacker Rank Code Pair

Round 1 (1 Hour Round):

  1. No Introduction (or anything).
  2. What is Class? Write a class and a constructor? Write copy constructor? Why copy constructor argument is by reference? Write templates? Static vs global variables? Can you use the global variable defined in some other CPP file in this file (how will you import the file)
  3. What is Paging? What is virtual memory? Translation of logical and physical addresses
  4. What are ACID Properties
  5. Given a linked list, change it in the form of 1->n->2->n-2->3->n-3 (in linear time and constant space).
  6. Given an array of numbers, find the max difference between two elements such that larger comes after smaller. (the question was stated differently and intimidatingly but he was the real meaning).
  7. Given a string of integers, replace all 0’s by ‘%%5’ efficiently. (No code, just approach) The answer interviewer wanted was: a. Count all zeroes.
  8. str.resize (str.length()+2*zeroes).
  9. Use two pointers one at the last of the memory space and one at end of the given string and compare characters and decrement (you got it, I believe).
  10. All other approaches were rejected.

Round 2 (2 out of 6 were rejected, 2 interviewers came):

  1. What are design patterns
  2. What are decorators in python
  3. How do events work in Tkinter? (probably asked because of my project)
  4. What is the diamond problem
  5. Full tree vs complete tree
  6. Compute the size of the complete tree better than O(n)
  7. https://leetcode.com/articles/binary-tree-cameras/
  8. What do you like in development
  9. What are datatypes in JS and routing in react (probably asked due to my project)?

Round 3 HR (on a phone call):

  1. Do you have any questions? No proper/ formal HR was taken of anyone, just a formality

Status: Rejected.


Last Updated : 25 May, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads