Upload Button Icon Add office photos

Filter interviews by

Random Trees Sdet Engineer Interview Questions and Answers

Updated 16 Oct 2023

Random Trees Sdet Engineer Interview Experiences

1 interview found

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. Explain what is hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store key-value pairs in an array.

    • It allows for quick retrieval of values based on keys.

    • HashMap does not maintain insertion order of elements.

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
  • Q2. Explain c++ vs java
  • Ans. 

    C++ is a statically typed language with a focus on performance and low-level programming, while Java is a high-level, object-oriented language with automatic memory management.

    • C++ is closer to the hardware and allows for more control over memory management.

    • Java is platform-independent due to its bytecode compilation and virtual machine execution.

    • C++ supports multiple inheritance, while Java only supports single inherit...

  • Answered by AI
  • Q3. Explain your day.
  • Q4. Explain what is BST
  • Ans. 

    BST stands for Binary Search Tree, a data structure where each node has at most two children, with left child nodes being smaller and right child nodes being larger.

    • BST is a hierarchical data structure where each node has at most two children.

    • The left child node of a parent node contains a value smaller than the parent node's value.

    • The right child node of a parent node contains a value larger than the parent node's val...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the missing number in a permutation array
  • Ans. 

    Find the missing number in a permutation array

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of all numbers from 1 to n (where n is the length of the array)

    • Subtract the sum of the array from the sum of all numbers to find the missing number

  • Answered by AI
  • Q2. Find if there is a loop in linked list
  • Ans. 

    To find a loop in a linked list, use Floyd's Cycle Detection Algorithm.

    • Use two pointers - slow and fast, where slow moves one step at a time and fast moves two steps at a time.

    • If there is a loop, the two pointers will eventually meet at some point within the loop.

    • To find the starting point of the loop, reset one pointer to the head and move both pointers one step at a time until they meet again.

  • Answered by AI
Round 2 - Coding Test 

Leetcode medium level questions, sql query, puzzle, test writing for api

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There were questions from medium to hard level

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to SQL basic programming and DSA were asked
Round 3 - HR 

(1 Question)

  • Q1. It was basically a personality test round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Whatis javascript
  • Ans. 

    JavaScript is a programming language commonly used for creating interactive websites.

    • JavaScript is a high-level, interpreted programming language.

    • It is used to make web pages interactive and dynamic.

    • JavaScript can be used for client-side and server-side development.

    • Commonly used frameworks/libraries include React, Angular, and Node.js.

  • Answered by AI
  • Q2. Whatis automation

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Graph, DP, array, Stack

Round 2 - Technical 

(1 Question)

  • Q1. Implementation of OOPS, Project, C++, To write the SQL query, Puzzle, real life questions, string question

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong command in any one language

I applied via Campus Placement and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Coding Test 

15 mcq of cs fundamentals 2 coding questions
it was 1 hour round

Round 2 - One-on-one 

(2 Questions)

  • Q1. Mostly dsa questions were asked you can reffer leetcode
  • Q2. Leetcode easy-medium questions were asked

Interview Preparation Tips

Topics to prepare for PlaySimple Games Sde1 interview:
  • DSA
Interview preparation tips for other job seekers - prepare dsa well because in interview their major focus is on your coding skills
Round 1 - Aptitude Test 

2 coding questions, and other quantitative, logical and verbal

Round 2 - Group Discussion 

A group of 7 and topic was "local for vocal"

Interview Preparation Tips

Interview preparation tips for other job seekers - confidence and knowledge and nlfnai nfia fawni fwia vaib afw v viviwn
Interview experience
4
Good
Difficulty level
Hard
Process Duration
-
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Medium level questions
Round 2 - Technical 

(1 Question)

  • Q1. Good DS algos questions metrix
Round 3 - Technical 

(1 Question)

  • Q1. System understanding, server client
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Moderate level coding question

Round 2 - Technical 

(1 Question)

  • Q1. Ques on java appium framework ci / cd

Sde1 Interview Questions & Answers

Arcesium user image Anonymous

posted on 29 Apr 2022

I applied via Referral

Round 1 - Coding Test 

Coding test consisting of MCQs and a couple of coding questions based on data structures.

Round 2 - Technical 

(3 Questions)

  • Q1. Thorough examination of advanced Java concepts
  • Q2. Synchronized vs ReentrantLock
  • Ans. 

    Synchronized and ReentrantLock are both used for thread synchronization in Java.

    • Synchronized is a keyword in Java and is used to lock an object for exclusive use by a single thread.

    • ReentrantLock is a class in Java and provides more advanced features than Synchronized, such as fairness and interruptibility.

    • Synchronized is easier to use and requires less code, but ReentrantLock provides more control and flexibility.

    • Synch...

  • Answered by AI
  • Q3. Checked vs unchecked exceptions
  • Ans. 

    Checked exceptions are checked at compile-time while unchecked exceptions are not.

    • Checked exceptions are declared in the method signature or caught in a try-catch block

    • Unchecked exceptions are not declared in the method signature and can occur at runtime

    • Examples of checked exceptions include IOException and ClassNotFoundException

    • Examples of unchecked exceptions include NullPointerException and ArrayIndexOutOfBoundsExce

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay confident and be clear about the advanced concepts of Java

Skills evaluated in this interview

Random Trees Interview FAQs

How many rounds are there in Random Trees Sdet Engineer interview?
Random Trees interview process usually has 2 rounds. The most common rounds in the Random Trees interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in Random Trees Sdet Engineer interview?

Some of the top questions asked at the Random Trees Sdet Engineer interview -

  1. explain what is hash...read more
  2. explain what is ...read more
  3. explain c++ vs j...read more

Tell us how to improve this page.

Random Trees Sdet Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Asian Paints Interview Questions
4.0
 • 639 Interviews
Dabur Interview Questions
4.0
 • 269 Interviews
Berger Paints Interview Questions
3.7
 • 257 Interviews
Brillio Interview Questions
3.4
 • 131 Interviews
CMS IT Services Interview Questions
3.1
 • 130 Interviews
iMerit Interview Questions
3.5
 • 92 Interviews
Marico Interview Questions
4.0
 • 85 Interviews
View all
Data Engineer
29 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Data Scientist
17 salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Software Developer
6 salaries
unlock blur

₹4 L/yr - ₹10.6 L/yr

Associate Software Engineer
6 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Senior Data Engineer
5 salaries
unlock blur

₹12.3 L/yr - ₹34 L/yr

Explore more salaries
Compare Random Trees with

Greenply

3.9
Compare

CenturyPly

3.8
Compare

Kajaria Ceramics

4.1
Compare

Somany Ceramics

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