Upload Button Icon Add office photos

Filter interviews by

DE Shaw Sdet Automation Test Engineer Interview Questions and Answers

Updated 8 Jan 2025

DE Shaw Sdet Automation Test Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test on hackerrank. Solve 30 day code challange on haackerrank and you will be able to clear it.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a code to find vowel in given string.
  • Ans. 

    Code to find vowels in a given string

    • Iterate through each character in the string

    • Check if the character is a vowel (a, e, i, o, u)

    • Count the number of vowels found in the string

  • Answered by AI
  • Q2. Explain your framework
  • Ans. 

    My framework is a data-driven framework using Selenium WebDriver and TestNG for automated testing.

    • Data-driven approach for test data separation

    • Utilizes Selenium WebDriver for browser automation

    • Integration with TestNG for test execution and reporting

    • Modular design for easy maintenance and scalability

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - mostly they focus on java programs related to string

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Frequency array, java collection, missing number

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Marathwada Mitra Mandal's College of Engineering, Pune and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General apptitude and 2 easy coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. What polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Animal class with methods eat() and sleep(). Dog and Cat classes can override these methods to have t

  • Answered by AI
  • Q2. What is virtualization
  • Ans. 

    Virtualization is the process of creating a virtual version of a device or resource, such as a server, storage device, network or operating system.

    • Virtualization allows multiple virtual instances to run on a single physical machine

    • It helps in optimizing resources and increasing efficiency

    • Examples include VMware, VirtualBox, and Hyper-V

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on interview

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I was interviewed before May 2023.

Round 1 - Technical 

(4 Questions)

  • Q1. Telecom basics on current work experience
  • Q2. Telecom billing related understanding
  • Q3. Technology of your interview
  • Q4. Mostly in your resume
Round 1 - Technical 

(4 Questions)

  • Q1. What is React Context?
  • Ans. 

    React Context is a feature in React that allows data to be passed down the component tree without having to pass props manually.

    • Context provides a way to share values like themes, user data, etc. across the component tree.

    • It avoids prop drilling, where props are passed down multiple levels to reach a component that needs them.

    • Context consists of two parts: a Provider component that provides the data and a Consumer comp...

  • Answered by AI
  • Q2. What is meant by closure in javascript?
  • Ans. 

    Closure is a function that has access to its parent scope, even after the parent function has closed.

    • Closure is created when a function is defined inside another function.

    • The inner function has access to the outer function's variables and parameters.

    • The outer function returns the inner function, which can be called later with the parent scope still accessible.

    • Closures are used for data privacy, event handlers, and call

  • Answered by AI
  • Q3. What are the complicated tasks you've done exceeding everyone's expectation?
  • Q4. Algorithm to convert roman numeral to numbers?
  • Ans. 

    Algorithm to convert roman numeral to numbers

    • Create a dictionary to map roman numerals to their corresponding values

    • Iterate through the roman numeral string from right to left

    • If the current value is less than the previous value, subtract it from the total

    • If the current value is greater than or equal to the previous value, add it to the total

    • Return the total

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. What is React context?
  • Ans. 

    React context is a way to pass data through the component tree without having to pass props down manually at every level.

    • Context provides a way to share values like a theme or user data across the component tree.

    • It avoids prop drilling and makes the code cleaner and more maintainable.

    • Context consists of two parts: a Provider component that provides the data and a Consumer component that consumes the data.

    • Context can be...

  • Answered by AI
  • Q2. What is abstract class in javascript?
  • Ans. 

    There is no abstract class in JavaScript.

    • JavaScript does not have a built-in abstract class concept.

    • However, it is possible to create abstract classes using functions and prototypes.

    • Abstract classes are used as blueprints for other classes to inherit from.

    • They cannot be instantiated on their own and must be extended by a subclass.

    • Abstract methods can be defined in the abstract class and must be implemented in the subcl

  • Answered by AI
  • Q3. What is meant by function overloading and function overriding?
  • Ans. 

    Function overloading is when multiple functions have the same name but different parameters. Function overriding is when a subclass provides its own implementation of a method that is already present in the parent class.

    • Function overloading is used to provide multiple ways to call a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a subclass.

    • Function ove...

  • Answered by AI
  • Q4. Implement counter in react app
  • Ans. 

    Implement a counter in a React app

    • Create a state variable to hold the count

    • Render the count in the UI

    • Add buttons to increment and decrement the count

    • Update the state variable on button click

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concepts in js was asked. JS classes questions was also asked

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Java OOPS Questions
  • Q2. Coding Questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reverse string maintaining space
  • Ans. 

    Reverse a string while maintaining the position of spaces.

    • Iterate through the string and store the positions of spaces in an array.

    • Reverse the string without considering spaces.

    • Insert spaces back into their original positions using the array of space positions.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a code to find vowel in given string.
  • Ans. 

    Code to find vowels in a given string

    • Iterate through each character in the string

    • Check if the character is a vowel (a, e, i, o, u)

    • Count the number of vowels found in the string

  • Answered by AI
  • Q2. Explain your framework
  • Ans. 

    My framework is a data-driven framework using Selenium WebDriver and TestNG for automated testing.

    • Data-driven approach for test data separation

    • Utilizes Selenium WebDriver for browser automation

    • Integration with TestNG for test execution and reporting

    • Modular design for easy maintenance and scalability

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - mostly they focus on java programs related to string

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Frequency array, java collection, missing number

DE Shaw Interview FAQs

How many rounds are there in DE Shaw Sdet Automation Test Engineer interview?
DE Shaw interview process usually has 1 rounds. The most common rounds in the DE Shaw interview process are Coding Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.6
 • 404 Interviews
Morgan Stanley Interview Questions
3.7
 • 299 Interviews
KPIT Technologies Interview Questions
3.5
 • 284 Interviews
Globant Interview Questions
3.9
 • 164 Interviews
Chetu Interview Questions
3.3
 • 163 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
AVASOFT Interview Questions
3.0
 • 135 Interviews
Brane Enterprises Interview Questions
2.1
 • 131 Interviews
ivy Interview Questions
3.7
 • 118 Interviews
ServiceNow Interview Questions
4.2
 • 115 Interviews
View all
Analyst
163 salaries
unlock blur

₹8.4 L/yr - ₹30 L/yr

Senior Analyst
139 salaries
unlock blur

₹12 L/yr - ₹46 L/yr

Manager
68 salaries
unlock blur

₹14 L/yr - ₹60 L/yr

Project Lead
51 salaries
unlock blur

₹25 L/yr - ₹94 L/yr

Member Technical Staff
47 salaries
unlock blur

₹11.5 L/yr - ₹42.5 L/yr

Explore more salaries
Compare DE Shaw with

Goldman Sachs

3.6
Compare

Morgan Stanley

3.7
Compare

Citadel

3.9
Compare

Blackrock

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview