Upload Button Icon Add office photos

Druva

Compare button icon Compare button icon Compare

Filter interviews by

Druva Sdet Interview Questions and Answers

Updated 8 Nov 2023

Druva Sdet Interview Experiences

2 interviews found

Sdet Interview Questions & Answers

user image Rohan Shirude

posted on 8 Nov 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 5 interview rounds.

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 

(2 Questions)

  • Q1. Managerial Round: Why do you want to switch? what is your main motive? what drives you do be an SDET? How is learning aligned with SDET role? what are the new skills you acquired? Where do you want to be a...
  • Ans. 

    I want to switch to SDET role to challenge myself, learn new skills, and contribute to the development of high-quality software.

    • I am motivated to switch to an SDET role because I enjoy problem-solving and have a passion for ensuring software quality.

    • Being an SDET allows me to work closely with developers, testers, and other stakeholders to create efficient and reliable software.

    • Learning is a key aspect of the SDET role...

  • Answered by AI
  • Q2. What is your notice period?
Round 3 - Technical 

(4 Questions)

  • Q1. Some networking related questions?
  • Q2. How would you test Google Search bar? NAS Storage? SAN storage? e-commerce webisite etc..
  • Q3. Two Python Questions; "aabbccrrra" => "a3b2c2r3"
  • Ans. 

    Count consecutive characters in a string and return the count next to the character.

    • Iterate through the string and keep track of consecutive characters and their counts.

    • Use a dictionary to store the characters and their counts.

    • Return the characters and their counts in the desired format.

  • Answered by AI
  • Q4. Second Max in the list of repeated integers.
  • Ans. 

    Find the second highest repeated integer in a list.

    • Iterate through the list and count the frequency of each integer.

    • Sort the frequencies in descending order and return the second highest frequency.

    • Handle edge cases like when there is no second highest frequency.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Similar questions and Similar Answers. But all from Senior Member.
Round 5 - HR 

(2 Questions)

  • Q1. Salary Discussion..
  • Q2. Joining Date, Salary Negotiation etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on NAS Storage, AWS, Python, Pytest, SQL.

Skills evaluated in this interview

Sdet Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2022

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 - Coding Test 

2 easy 1 medium coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. About operating system, python modules , libraries.etc
  • Q2. A code to write for some tasks using linked list
  • Ans. 

    Linked list code for tasks

    • Create a linked list class

    • Implement add, remove, and search methods

    • Use the linked list to perform the tasks

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study well and be confident,
Have good grasp over second year subjects

Skills evaluated in this interview

Sdet Interview Questions Asked at Other Companies

Q1. Given a M x N 2D array containing random alphabets and a function ... read more
asked in Amazon
Q2. what happen between, when you enter a URL into a browser address ... read more
asked in InMobi
Q3. In a line where words are separated by spaces, , and capitalize f ... read more
Q4. Given a circular linked list containing sorted elements (int valu ... read more
asked in Amazon
Q5. how will you check that each page of amazon.com is having its log ... read more

Interview questions from similar companies

Sdet Interview Questions & Answers

InMobi user image Anonymous

posted on 3 Apr 2015

Interview Questionnaire 

3 Questions

  • Q1. In a line where words are separated by spaces, , and capitalize first letter of the reversed word. Other letters of the word should be in small. Input : “how are you?” → Output: “Woh Era ?uoy”
  • Ans. 

    The program takes a string as input and capitalizes the first letter of each reversed word while keeping the rest of the letters in lowercase.

    • Split the input string into an array of words using the space as a delimiter

    • Iterate through each word in the array

    • Reverse the word and capitalize the first letter

    • Join the modified words back into a single string with spaces in between

  • Answered by AI
  • Q2. The second question reduced to finding maximum weight matching in a bipartite graph. Not many people would have done this (maybe none)
  • Q3. There are 2 sets of countries. One set will donate clothes (something of this sort) and anotherset will accept clothes. A country can be in only 1 of the sets. The amount of clothes donated is also given. ...

Interview Preparation Tips

Round: Test
Experience: There were about 20 MCQs (30 minutes) to be done after the coding section. MCQs were totally nonsense. Can be done in 10 mins.
Duration: 30 minutes
Total Questions: 20

Round: Technical Interview
Experience: CODING SECTION 60 MINS.  IT WAS HOSTED BY HACKERANK. the above questions wer asked.After this, selected candidates were interviewed that consists of 4 rounds and discussion was mostly on your CV and data structure problems.

Skill Tips: Tips: Be honest with your interviewer. If you are not comfortable in 1 topic, tell your interviewer honestly. Do well in other areas. Look for hints from the interviewer if you get stuck. They want to see how you approach a problem.
College Name: IIT DELHI

Sdet Interview Questions & Answers

Infosys user image Anonymous

posted on 9 Jul 2021

Interview Questionnaire 

2 Questions

  • Q1. Standard Selenium questions
  • Q2. Pay is less
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Explain framework used for selenium
  • Ans. 

    Selenium is an open-source automation testing framework used for web applications.

    • Selenium supports multiple programming languages like Java, Python, C#, etc.

    • It consists of Selenium WebDriver, Selenium IDE, and Selenium Grid.

    • Selenium WebDriver is used for automating web applications by interacting with the web elements.

    • Selenium IDE is a record and playback tool for creating test cases.

    • Selenium Grid is used for parallel...

  • Answered by AI
  • Q2. Checked and unchecked exceptions.
  • Ans. 

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

    • Checked exceptions must be either caught or declared in the method signature using 'throws' keyword.

    • Unchecked exceptions do not need to be explicitly handled.

    • Examples of checked exceptions include IOException, ClassNotFoundException.

    • Examples of unchecked exceptions include NullPointerException, ArrayIndexOutOfBoundsException.

  • Answered by AI
  • Q3. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, such as ElementNotVisibleException or TimeoutException.

    • Selenium WebDriver throws exceptions when it encounters errors during test execution.

    • Common exceptions include NoSuchElementException, ElementNotVisibleException, TimeoutException, StaleElementReferenceException, and WebDriverException.

    • Handling exceptions in Selenium can be done using try-catch blo...

  • Answered by AI
  • Q4. Waits in selenium
  • Ans. 

    Waits in Selenium are used to synchronize tests with the browser's state.

    • Waits help to handle synchronization issues in Selenium tests

    • There are two types of waits in Selenium - Implicit Wait and Explicit Wait

    • Implicit Wait sets a default waiting time for the entire test script

    • Explicit Wait allows the test to wait for a certain condition to be met before proceeding

  • Answered by AI
  • Q5. Frames handling

Skills evaluated in this interview

Sdet Interview Questions & Answers

Infosys user image Anonymous

posted on 11 May 2022

Round 1 - Technical 

(1 Question)

  • Q1. Project related questions only and basic question
Round 2 - HR 

(1 Question)

  • Q1. Ctc discussion, expected ctc and doj

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well before interview round and be confident

Sdet Interview Questions & Answers

TCS user image Anonymous

posted on 30 Sep 2022

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

(2 Questions)

  • Q1. Basic question on corenjava
  • Q2. Basic question on selenium

Interview Preparation Tips

Interview preparation tips for other job seekers - Never join this pathetic organization. People are rude and have slave mentality.

Sdet Interview Questions & Answers

TCS user image Kranthi B. Irlapati

posted on 16 Jan 2025

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

(1 Question)

  • Q1. Palindrome with dynamic programming
  • Ans. 

    Using dynamic programming to check if a string is a palindrome.

    • Create a 2D array to store the results of subproblems

    • Iterate through the string and fill the array based on whether substrings are palindromes

    • Check the array to determine if the entire string is a palindrome

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Function declaration reverse word in a string copy array without direct assignment equality operator vs strict equal post vs put success code of patch what is 403 status code

Interview Preparation Tips

Interview preparation tips for other job seekers - basic logical understanding of javascript ant apis
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Reverse String without using loop
  • Ans. 

    Reverse string without using loop

    • Use recursion to reverse the string

    • Base case: if string length is 0 or 1, return the string

    • Recursive case: return the last character + reverse(rest of the string)

  • Answered by AI
  • Q2. Parenthesis Balancing using stack
  • Ans. 

    Implement a parenthesis balancing algorithm using a stack

    • Use a stack to keep track of opening parentheses

    • When encountering a closing parenthesis, pop from stack and check if it matches the closing parenthesis

    • If stack is empty or mismatched parentheses, return false

    • If all parentheses are balanced, return true

  • Answered by AI

Skills evaluated in this interview

Druva Interview FAQs

How many rounds are there in Druva Sdet interview?
Druva interview process usually has 4 rounds. The most common rounds in the Druva interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Druva Sdet 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 Druva. The most common topics and skills that interviewers at Druva expect are Python, Automation Framework, HP Data Protector, Linux and MySQL.
What are the top questions asked in Druva Sdet interview?

Some of the top questions asked at the Druva Sdet interview -

  1. Two Python Questions; "aabbccrrra" => "a3b2c2...read more
  2. Second Max in the list of repeated intege...read more
  3. A code to write for some tasks using linked l...read more

Tell us how to improve this page.

Druva Sdet Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Zoho Interview Questions
4.3
 • 516 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
MAQ Software Interview Questions
1.9
 • 98 Interviews
View all
Staff Software Engineer
104 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Staff Software Engineer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Druva with

Zoho

4.3
Compare

Freshworks

3.5
Compare

InMobi

3.5
Compare

LTIMindtree

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