Upload Button Icon Add office photos

Druva

Compare button icon Compare button icon Compare

Filter interviews by

Druva Interview Questions and Answers

Updated 21 Nov 2024
Popular Designations

16 Interview questions

A QA Engineer was asked 10mo ago
Q. What are some test cases for a pen?
Ans. 

Test cases for a pen to ensure functionality and quality.

  • Verify that the pen writes smoothly on different types of paper

  • Check if the pen's ink is waterproof and does not smudge

  • Test the durability of the pen by dropping it from a certain height

  • Ensure that the pen's cap can be securely attached and removed

  • Verify that the pen's clip is strong enough to hold the pen in place

  • Check if the pen's ink dries quickly to prev...

View all QA Engineer interview questions
A QA Engineer was asked 10mo ago
Q. Explain the networking layer model.
Ans. 

Networking layer model is a conceptual framework that defines the different layers of communication in a network.

  • Networking layer model is typically represented by the OSI (Open Systems Interconnection) model or the TCP/IP model.

  • The OSI model consists of 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

  • Each layer has specific functions and protocols that enable communicatio...

View all QA Engineer interview questions
A Software Engineer was asked 10mo ago
Q. What would you use to implement a playlist?
Ans. 

A playlist can be implemented using an array of strings to store the list of songs.

  • Use an array of strings to store the list of songs in the playlist

  • Implement functions to add, remove, and shuffle songs in the playlist

  • Consider using a linked list data structure for more efficient insertion and deletion operations

View all Software Engineer interview questions
A Staff Engineer was asked 12mo ago
Q. Design a parking lot system.
Ans. 

Design a parking lot system

  • Consider the size and layout of the parking lot

  • Include features like ticketing system, payment options, and security cameras

  • Implement a system for tracking available parking spaces

  • Allow for easy entry and exit for vehicles

  • Consider implementing a reservation system for premium parking spots

View all Staff Engineer interview questions
A Sdet Automation Test Engineer was asked
Q. Why Python and not other languages?
Ans. 

Python is a popular choice for automation testing due to its simplicity, readability, extensive libraries, and cross-platform compatibility.

  • Python has a simple and readable syntax, making it easy to write and understand test scripts.

  • Python has a large number of libraries and frameworks specifically designed for automation testing, such as Selenium and PyTest.

  • Python is cross-platform compatible, allowing tests to b...

View all Sdet Automation Test Engineer interview questions
A Sdet Automation Test Engineer was asked
Q. Why Robot Framework?
Ans. 

Robot Framework is a powerful open-source automation framework that offers easy-to-use syntax and supports keyword-driven testing.

  • Robot Framework provides a simple and readable syntax, making it easy to write and maintain test cases.

  • It supports keyword-driven testing, allowing for high-level test case design and reusability.

  • Robot Framework has a rich ecosystem with a wide range of libraries and tools, making it hi...

View all Sdet Automation Test Engineer interview questions
A Sdet was asked
Q. Given a list of repeated integers, how would you find the second largest number?
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.

View all Sdet interview questions
Are these interview questions helpful?
A Staff Software Engineer was asked
Q. What is Docker and how does it work?
Ans. 

Docker is a containerization platform that allows developers to package, deploy, and run applications in isolated environments.

  • Docker uses containerization technology to create isolated environments for applications to run in.

  • It allows developers to package an application and all its dependencies into a single container.

  • Containers can be easily deployed and run on any system that supports Docker.

  • Docker provides a ...

View all Staff Software Engineer interview questions
A Staff Software Engineer was asked
Q. How would you open a file whose size is double that of the RAM on your system?
Ans. 

Use memory-mapped files or stream the file in chunks.

  • Use memory-mapped files to access the file in chunks.

  • Stream the file in chunks using a buffer.

  • Use compression techniques to reduce the file size before opening.

View all Staff Software Engineer interview questions
A QA QC Engineer was asked
Q. Write a Python function to find all occurrences of a substring within a larger string.
Ans. 

Substring matching in Python involves finding a sequence of characters within a string using various methods.

  • Use the 'in' operator: 'substring' in 'string' returns True if found.

  • Utilize str.find(): returns the lowest index of the substring or -1 if not found. Example: 'hello'.find('ll') -> 2.

  • Employ str.index(): similar to find() but raises ValueError if not found. Example: 'hello'.index('o') -> 4.

  • Regular exp...

View all QA QC Engineer interview questions

Druva Interview Experiences

25 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Assignment 

Take home sql and python case study. Final deliverable was a presentation.

Round 2 - Panel interview 

(1 Question)

  • Q1. Discussion on the take home study output.
Round 3 - One-on-one 

(1 Question)

  • Q1. Describe a time when you were going to miss a timeline and how did you respond?
  • Ans. 

    I communicated with stakeholders, adjusted priorities, and worked extra hours to meet the deadline.

    • Communicated with stakeholders about the potential delay

    • Adjusted priorities and resources to expedite the project

    • Worked extra hours to ensure the deadline was met

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

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

Round 1 - Coding Test 

100 minutes, there were 3 coding questions and some easy to medium level mcq on core subjects

Round 2 - Technical 

(2 Questions)

  • Q1. Isomorphic string
  • Q2. What you'll use to implement a playlist
  • Ans. 

    A playlist can be implemented using an array of strings to store the list of songs.

    • Use an array of strings to store the list of songs in the playlist

    • Implement functions to add, remove, and shuffle songs in the playlist

    • Consider using a linked list data structure for more efficient insertion and deletion operations

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on problem solving skills and your core knowledge

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Sohom Bhattacharjee

posted on 2 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - screening 

(2 Questions)

  • Q1. Details about career goals
  • Q2. Details about expectations (in terms of role)
Round 2 - Coding Test 

DSA and lagorithmic optimizations (this is based on team you are joining so questions vary a LOT)

Round 3 - HR 

(1 Question)

  • Q1. Salary expectation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Data Base design
  • Q2. REST API design
  • Ans. 

    REST API design involves defining endpoints, methods, request/response formats, authentication, and versioning.

    • Define clear and consistent endpoint URLs

    • Use HTTP methods (GET, POST, PUT, DELETE) appropriately

    • Design request and response formats (JSON, XML)

    • Implement authentication and authorization mechanisms

    • Consider versioning for backward compatibility

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test with 3 DSA coding Questions 1 on Array 2nd on binary tree 3rd is DP question

Round 2 - Technical 

(1 Question)

  • Q1. Coding round with 2 DSA questions on binary tree 1] Spiral order traversal of binary tree 2] coin change DP problem
Round 3 - Technical 

(4 Questions)

  • Q1. 2 coding questions
  • Q2. System design questions on projects you worked on
  • Q3. Design parking lot system
  • Ans. 

    Design a parking lot system

    • Consider the size and layout of the parking lot

    • Include features like ticketing system, payment options, and security cameras

    • Implement a system for tracking available parking spaces

    • Allow for easy entry and exit for vehicles

    • Consider implementing a reservation system for premium parking spots

  • Answered by AI
  • Q4. Vertical and horizantal scaling

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare good DSA and system design questions

Skills evaluated in this interview

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

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 was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions about cloud
  • Q2. Questions about current role
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Job Portal and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy question on python

Round 2 - One-on-one 

(2 Questions)

  • Q1. Why python why not others language?
  • Ans. 

    Python is a popular choice for automation testing due to its simplicity, readability, extensive libraries, and cross-platform compatibility.

    • Python has a simple and readable syntax, making it easy to write and understand test scripts.

    • Python has a large number of libraries and frameworks specifically designed for automation testing, such as Selenium and PyTest.

    • Python is cross-platform compatible, allowing tests to be run...

  • Answered by AI
  • Q2. Why robot framework?
  • Ans. 

    Robot Framework is a powerful open-source automation framework that offers easy-to-use syntax and supports keyword-driven testing.

    • Robot Framework provides a simple and readable syntax, making it easy to write and maintain test cases.

    • It supports keyword-driven testing, allowing for high-level test case design and reusability.

    • Robot Framework has a rich ecosystem with a wide range of libraries and tools, making it highly ...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Not scheduled interview I don't why

Interview Preparation Tips

Interview preparation tips for other job seekers - I don't know but process lengthy

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Binary search tree
Linked list

Round 2 - Technical 

(2 Questions)

  • Q1. Project related
  • Q2. Technologies used
  • Ans. 

    I have experience with a variety of technologies including Java, Python, SQL, and JavaScript.

    • Java

    • Python

    • SQL

    • JavaScript

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Raid and use case
  • Q2. Networking questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Scripting knowledge
  • Q2. Behavioural Questins
Round 3 - Technical 

(2 Questions)

  • Q1. Virtualization questions
  • Q2. Cloud computing Question

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 Druva?
Ask anonymously on communities.

Druva Interview FAQs

How many rounds are there in Druva interview?
Druva interview process usually has 2-3 rounds. The most common rounds in the Druva interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Druva 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, Linux, HP Data Protector, Windows and Data Structures.
What are the top questions asked in Druva interview?

Some of the top questions asked at the Druva interview -

  1. How will you open a file whos size is double that of RAM on your syste...read more
  2. Difference between black box and white box test...read more
  3. What is docker and how it wor...read more
How long is the Druva interview process?

The duration of Druva interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 21 interview experiences

Difficulty level

Easy 14%
Moderate 86%

Duration

Less than 2 weeks 62%
2-4 weeks 8%
4-6 weeks 15%
More than 8 weeks 15%
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 104 Interviews
Webkul Software Interview Questions
4.0
 • 71 Interviews
Softenger Interview Questions
4.0
 • 59 Interviews
Tata Digital Interview Questions
2.8
 • 48 Interviews
DataMetica Interview Questions
3.5
 • 45 Interviews
View all

Druva Reviews and Ratings

based on 96 reviews

3.8/5

Rating in categories

3.8

Skill development

3.6

Work-life balance

3.8

Salary

3.3

Job security

3.7

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 96 Reviews and Ratings
Sales Engineer

Pune

3-8 Yrs

Not Disclosed

Staff Engineer, Cloud Ops

Pune

2-5 Yrs

Not Disclosed

Manager, Cloud Operations

Pune

7-12 Yrs

Not Disclosed

Explore more jobs
Staff Software Engineer
101 salaries
unlock blur

₹20.7 L/yr - ₹31.3 L/yr

Software Engineer
96 salaries
unlock blur

₹14.3 L/yr - ₹25 L/yr

Senior Software Engineer
55 salaries
unlock blur

₹21 L/yr - ₹50 L/yr

Senior Staff Software Engineer
23 salaries
unlock blur

₹35.6 L/yr - ₹52 L/yr

Staff Software Developer
20 salaries
unlock blur

₹22.5 L/yr - ₹35.7 L/yr

Explore more salaries
Compare Druva with

Tekwissen

4.8
Compare

Softenger

4.0
Compare

XcelServ Solutions

4.4
Compare

Capital Numbers Infotech

4.4
Compare
write
Share an Interview