Upload Button Icon Add office photos

Filter interviews by

CommVault Sdet Engineer Interview Questions and Answers

Updated 5 Sep 2024

CommVault Sdet Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

90 ques all basics of engineering

Round 2 - Coding Test 

3 questions but in python only .. very slow Compiler

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. In first round you will be asked about the projects and then followed by a debugging round where you have to find out the bugs in the given program
  • Q2. Given a program and its expected functionality asked to find the bugs in that program
Round 2 - Coding Test 

You will be given a coding problem and 1 hour of time to solve it end to end

Round 3 - HR 

(2 Questions)

  • Q1. Basic hr questions
  • Q2. Where do you see yourself in 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa, and core cs subjects

Sdet Engineer Interview Questions Asked at Other Companies

asked in Nykaa
Q1. Tell me about the projects and knowledge on selenium api and etc?
asked in Witty Com
Q2. In this example, the internal data structure (std::vector) can be ... read more
asked in Info Edge
Q3. What do you mean by run time polymorphism and how is it achieved?
Q4. What reusable methods have been designed by you and their impact
asked in Info Edge
Q5. Explain each oops concept with clarity and write a class where yo ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Explain your project
  • Ans. 

    Developed a test automation framework for a web application using Selenium and Java.

    • Created test cases for UI and API testing

    • Implemented data-driven testing using Excel sheets

    • Integrated with Jenkins for continuous integration

    • Performed cross-browser testing on Chrome, Firefox, and Safari

  • Answered by AI
  • Q2. Write a Palindrome using C#
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Create a string variable with a word or phrase that is the same forward and backward.

    • Use a loop to compare the characters from the beginning and end of the string to check if it is a palindrome.

    • Ignore spaces and punctuation when checking for palindromes.

    • Example: 'racecar' is a palindrome.

  • Answered by AI
  • Q3. Write a code to automate a website which they gave
  • Ans. 

    Automate a website using code

    • Use Selenium WebDriver to automate interactions with the website

    • Identify elements on the website using CSS selectors or XPaths

    • Perform actions like clicking buttons, filling forms, and verifying text

    • Handle waits for elements to load properly

    • Use programming languages like Java, Python, or JavaScript for scripting

  • Answered by AI
Round 2 - One-on-one 

(4 Questions)

  • Q1. Explain Agile ceremonies
  • Ans. 

    Agile ceremonies are regular meetings or events in Agile methodology to facilitate communication, collaboration, and decision-making within the team.

    • Sprint Planning: Setting goals and planning work for the upcoming sprint.

    • Daily Stand-up: Short daily meeting to discuss progress, challenges, and plans for the day.

    • Sprint Review: Demo of completed work to stakeholders for feedback.

    • Sprint Retrospective: Reflecting on the sp...

  • Answered by AI
  • Q2. Explain an automation framework
  • Ans. 

    An automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Provides structure and organization for automated testing

    • Defines how tests are written, executed, and reported

    • Includes libraries, utilities, and templates for test automation

    • Supports integration with test management tools and version control systems

    • Examples: Selenium WebDriver, TestNG, JUnit, Cucumber

  • Answered by AI
  • Q3. One coding question for reversing strings and adding stars
  • Ans. 

    Reverses strings in an array and adds stars between characters

    • Iterate through each string in the array

    • Reverse each string using built-in functions or manual reversal

    • Add stars between characters in the reversed string

    • Return the modified array of strings

  • Answered by AI
  • Q4. Mostly questions on current project
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
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Java OOPS Questions
  • Q2. Coding Questions

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. 2 puzles, 2 coding questions and core java questions and kafka implemetation questions from my project, and SQL query questions
  • Q2. Find 2nd max num from the array
  • Ans. 

    Find the second maximum number from an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in descending order.

    • Return the second element of the sorted array.

  • Answered by AI
  • Q3. How the kafka works
  • Ans. 

    Kafka is a distributed streaming platform that allows publishing and subscribing to streams of records.

    • Kafka is designed to handle high volume data streams in real-time.

    • It uses a publish-subscribe model where producers write data to topics and consumers read from those topics.

    • Kafka stores data in partitions and replicates them across a cluster for fault tolerance.

    • It provides features like message retention, compression...

  • Answered by AI
  • Q4. Core java questions
  • Q5. Sort the given array using only O(n) solution [0,1,1,1,0,0,0,1,0,1,0,1,1,0,0]
  • Ans. 

    Sort an array of 0s and 1s using O(n) solution.

    • Use two pointers, one at the beginning and one at the end of the array.

    • Swap the elements at the pointers if they are not in the correct order.

    • Move the pointers towards each other until they meet in the middle.

    • Time complexity is O(n) and space complexity is O(1).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - it went good, worth to get interviewed at paychex.
it was first round and it was for SDE1 (backend).

Skills evaluated in this interview

Sdet Interview Questions & Answers

Entrata user image Ganesh Thutte

posted on 18 Aug 2022

I applied via Company Website and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

First round was aptitude test which contains 50 MCQ's which candiate has to answer within 15 min. It includes quantative apti, reasoning ability, general intelligence, Verbal ability

Round 2 - Technical 

(1 Question)

  • Q1. All basic questions respective to the job profile being applied taken by team lead most of the time.
Round 3 - Technical 

(1 Question)

  • Q1. This is also technical round taken by manager. Here manager mostly measures your confidence & knowledge.
Round 4 - One-on-one 

(1 Question)

  • Q1. Then this is last round with HR.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare well before interview, be calm & relax while interviewing. Be honest to yourself

CommVault Interview FAQs

How many rounds are there in CommVault Sdet Engineer interview?
CommVault interview process usually has 2-3 rounds. The most common rounds in the CommVault interview process are Coding Test, Technical and HR.
What are the top questions asked in CommVault Sdet Engineer interview?

Some of the top questions asked at the CommVault Sdet Engineer interview -

  1. in first round you will be asked about the projects and then followed by a debu...read more
  2. given a program and its expected functionality asked to find the bugs in that p...read more

Tell us how to improve this page.

CommVault Sdet Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 511 Interviews
NetApp Interview Questions
3.9
 • 62 Interviews
Veritas Interview Questions
4.0
 • 61 Interviews
Mobileum Interview Questions
3.3
 • 36 Interviews
Entrata Interview Questions
4.4
 • 34 Interviews
Druva Interview Questions
3.6
 • 25 Interviews
Twilio Interview Questions
4.0
 • 23 Interviews
View all

CommVault Sdet Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Technical Specialist
67 salaries
unlock blur

₹11 L/yr - ₹30 L/yr

Software Engineer
48 salaries
unlock blur

₹12 L/yr - ₹28 L/yr

Senior Engineer
34 salaries
unlock blur

₹11 L/yr - ₹32.5 L/yr

Engineer
22 salaries
unlock blur

₹12.1 L/yr - ₹31 L/yr

Software Developer
18 salaries
unlock blur

₹15 L/yr - ₹36 L/yr

Explore more salaries
Compare CommVault with

Veritas

4.0
Compare

Veeam Software

4.0
Compare

NetApp

3.9
Compare

Druva

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