Upload Button Icon Add office photos

CommVault

Compare button icon Compare button icon Compare

Filter interviews by

CommVault Interview Questions, Process, and Tips

Updated 22 Jan 2025

Top CommVault Interview Questions and Answers

View all 15 questions

CommVault Interview Experiences

Popular Designations

27 interviews found

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

I applied via LinkedIn and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basics of OS, Commcell architecture......
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Four sections were there including aptitiude, basic input output and Core CSE Questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic CN questions and OS

Junior Engineer - Quality Assurance Interview Questions asked at other Companies

Q1. How do you automate filtering and validate it's been filtered as desired?
View answer (1)
CommVault Interview Questions and Answers for Freshers
illustration image

Software Developer Interview Questions & Answers

user image Mohammed Farhan

posted on 17 Apr 2024

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

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Data structures were there for both the questions. Linked list and tree questions where asked

Round 2 - Coding Test 

Long coding high level

Round 3 - HR 

(1 Question)

  • Q1. Benefits and all only about the company

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is DNS and HTTPS?
  • Ans. 

    DNS is a system that translates domain names to IP addresses, while HTTPS is a secure protocol for transferring data over the internet.

    • DNS stands for Domain Name System and is used to translate domain names to IP addresses.

    • HTTPS stands for Hypertext Transfer Protocol Secure and is a secure version of HTTP.

    • DNS helps users access websites by translating human-readable domain names (e.g. www.google.com) to machine-readabl...

  • Answered by AI

Skills evaluated in this interview

Customer Support Interview Questions asked at other Companies

Q1. What? Jobs Rules And How Customer Support
View answer (30)

CommVault interview questions for popular designations

 Software Engineer

 (4)

 Software Developer

 (2)

 Sdet Engineer

 (2)

 Quality Analyst

 (1)

 Senior Software Developer

 (1)

 Senior Software Engineer

 (1)

 Web Developer

 (1)

 Intern

 (1)

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

I was interviewed in May 2023.

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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions on JavaScript and React
Round 3 - Coding Test 

Problem solving and JavaScript conceptual implementation

Round 4 - One-on-one 

(1 Question)

  • Q1. Coding with behavior

Principal User Interface Engineer Interview Questions asked at other Companies

Q1. Technical system design technology and design
View answer (1)

Get interview-ready with Top CommVault Interview Questions

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

I applied via Approached by Company and was interviewed in Mar 2023. There were 2 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Design a multithreaded logger system
  • Ans. 

    A multithreaded logger system allows multiple threads to log messages concurrently without blocking each other.

    • Use a thread-safe data structure like a concurrent queue to store log messages.

    • Implement a logging class with methods for adding log messages and writing them to a file.

    • Use synchronization mechanisms like locks or semaphores to ensure thread safety.

    • Consider using a separate thread for writing log messages to t...

  • Answered by AI
  • Q2. How virtual pointers work?
  • Ans. 

    Virtual pointers are used in C++ to implement polymorphism by allowing objects to be accessed through a base class pointer.

    • Virtual pointers are used in C++ to achieve runtime polymorphism.

    • They are created by adding virtual keyword to a function in a base class.

    • Virtual pointers allow objects of derived classes to be accessed through a base class pointer.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for CommVault Senior Software Developer interview:
  • C++
Interview preparation tips for other job seekers - Read all concepts of C++.

Skills evaluated in this interview

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)

Jobs at CommVault

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

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Standard question on linked list and tres

Round 2 - Coding Test 

Long coding test for system test lld

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

I was interviewed in Feb 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 65 Minutes
Round difficulty - Hard

There were 15 MCQS you have to do in 25 Minutes and 3 Coding questions you have to do in 40 minutes. They also give a demo test link to get you use to the environment.

  • Q1. 

    Sliding Maximum Problem Statement

    Given an array of integers ARR of length 'N' and a positive integer 'K', find the maximum elements for each contiguous subarray of size K.

    Example:

    Input:
    ARR = [3, 4,...
  • Ans. 

    Find maximum elements for each subarray of size K in a given array of integers.

    • Iterate through the array and maintain a deque to store the indices of elements in decreasing order.

    • Pop elements from the deque if they are out of the current window.

    • Keep track of the maximum element in each subarray of size K.

  • Answered by AI
  • Q2. 

    Jump Game Problem Statement

    In this problem, you are given an array ARR consisting of N integers. Your task is to determine the minimum number of jumps required to reach the last index of the array N - 1....

  • Ans. 

    The problem involves finding the minimum number of jumps required to reach the last index of an array, where each element represents the maximum distance that can be jumped from that index.

    • Start from index 0 and keep track of the farthest index that can be reached from each position.

    • Update the current farthest index as the maximum of current farthest index and i + ARR[i].

    • Increment the jump count when the current index ...

  • Answered by AI
  • Q3. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Given a string, find the longest palindromic substring, prioritizing the one with the smallest start index.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found and its starting index

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
Round 2 - Video Call 

Round duration - 180 Minutes
Round difficulty - Hard

It was more of Design + Data structure round. They give access to their server and ask us to do code there.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Galgotias College of Engineering and Technology, Greater Noida. I applied for the job as SDE - Intern in DelhiEligibility criteriaAbove 7 CGPACommvault interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, DBMS, OS, DPTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Do as much as coding question you can do.
Tip 2 : Do some projects also.
Tip 3 : Revise and clear your basic concepts too.

Application resume tips for other job seekers

Tip 1 : Mention only things related to job profile only.
Tip 2 : Make it page pager.

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

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

Q1. Tell me about the projects and knowledge on selenium api and etc?
View answer (2)

Web Developer Interview Questions & Answers

user image Anonymous

posted on 10 Aug 2024

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

I applied via Company Website and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Assignment 

Build a slider fuctinality

Web Developer Interview Questions asked at other Companies

Q1. Last Index of Element The task is to determine the index of the last occurrence of a specified element x within an array that may contain duplicate elements. If the element is not present, return -1. Input: The first line contains an intege... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

CommVault Interview FAQs

How many rounds are there in CommVault interview?
CommVault interview process usually has 1-2 rounds. The most common rounds in the CommVault interview process are Coding Test, Technical and HR.
How to prepare for CommVault 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 CommVault. The most common topics and skills that interviewers at CommVault expect are Networking, Linux, Troubleshooting, Azure and Technical Support.
What are the top questions asked in CommVault interview?

Some of the top questions asked at the CommVault interview -

  1. Given a table, tell the normal form it is in and normalise ...read more
  2. Who has the right to decide the termination clause in an contra...read more
  3. How backup process go...read more
How long is the CommVault interview process?

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

Recently Viewed

JOBS

CommVault

No Jobs

JOBS

CommVault

No Jobs

INTERVIEWS

CommVault

No Interviews

SALARIES

NLC India Limited

SALARIES

Dar Group

LIST OF COMPANIES

NLC India Limited

Locations

SALARIES

Dar Group

SALARIES

FieldAssist

LIST OF COMPANIES

Force Motors

Overview

SALARIES

Dar Group

Tell us how to improve this page.

CommVault Interview Process

based on 23 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 505 Interviews
Cohesity Interview Questions
3.9
 • 81 Interviews
NetApp Interview Questions
3.9
 • 65 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
Entrata Interview Questions
4.3
 • 34 Interviews
Druva Interview Questions
3.7
 • 25 Interviews
RUBRIK INDIA Interview Questions
3.6
 • 13 Interviews
Arcserve Interview Questions
3.3
 • 9 Interviews
Veeam Software Interview Questions
4.0
 • 5 Interviews
View all

CommVault Reviews and Ratings

based on 104 reviews

3.9/5

Rating in categories

3.6

Skill development

4.1

Work-life balance

3.9

Salary

3.9

Job security

4.0

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 104 Reviews and Ratings
Principal Engineer - C++ and SQL

Bangalore / Bengaluru

8-10 Yrs

Not Disclosed

Implementation Specialist

Bangalore / Bengaluru

7-9 Yrs

Not Disclosed

Senior Analyst - Business Operations

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Explore more jobs
Technical Specialist
67 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
48 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CommVault with

Veeam Software

4.0
Compare

NetApp

3.9
Compare

Druva

3.7
Compare

RUBRIK INDIA

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