Upload Button Icon Add office photos

CommVault

Compare button icon Compare button icon Compare

Filter interviews by

CommVault Interview Questions, Process, and Tips for Freshers

Updated 24 Oct 2024

Top CommVault Interview Questions and Answers for Freshers

View all 7 questions

CommVault Interview Experiences for Freshers

Popular Designations

8 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Sep 2024

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

(2 Questions)

  • Q1. Operating System, DBMS
  • Q2. Long increasing subsequence
Round 2 - Case Study 

We have to find bugs in the virtual website in which they have given

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 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 tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. Tell me about yourself?
  • Q2. Who has the right to decide the termination clause in an contract?
  • Ans. 

    The termination clause in a contract is typically decided by both parties involved in the contract.

    • The termination clause is usually negotiated and agreed upon by both parties during the contract drafting process.

    • It is important for both parties to clearly outline the conditions under which the contract can be terminated.

    • In some cases, termination clauses may be influenced by legal requirements or industry standards.

    • Th...

  • Answered by AI
  • Q3. Do you have experience in contract management?
  • Q4. Have you ever released PO

Interview Preparation Tips

Topics to prepare for CommVault Procurement Administrator interview:
  • Contract Management
Interview preparation tips for other job seekers - Interviewer doesn't have knowledge on Procurement process. He is not even ready to listen to your past experience.
He asked me a question on 'contract termination' who has the right to decide this clause? As a procurement professional we know if at any time both the sides of a procurement contract should find there difference irreconcilable, the contract outlines term under which it will be nullified so both parties go their ways, but interviewer was arguing that only vendor's have the right to decide the contract termination, he was not even aware that procurement contract is a legally binding agreement between buyer and seller. My question is so if a buyer is not satisfied with a particular service how could he stop the service without mutually agreeing to a termination clause in a contract.
He is also asking a procurement person whether have you ever released purchase orders.
This kind of people sitting as a manager taking interview for 6+years of experience candidate.

Procurement Administrator Interview Questions asked at other Companies

Q1. Who has the right to decide the termination clause in an contract?
View answer (1)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

3 coding question easy to medium level and few easy mcqs related to oops, dbms, os, networks, etc

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

Intern Interview Questions & Answers

user image Anonymous

posted on 24 Oct 2024

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

Leetcode easy/medium

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

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)

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 (43)

I appeared for an interview 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)

Jobs at CommVault

View all

I appeared for an interview in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was a mcq+coding round. There were 2 coding questions of medium difficulty. It was around 3 P.M.

  • Q1. 

    Count Substrings with K Distinct Characters

    Given a lowercase string 'STR' and an integer K, the task is to count all possible substrings that consist of exactly K distinct characters. These substrings ar...

  • Ans. 

    Count substrings with exactly K distinct characters in a given lowercase string.

    • Iterate through all substrings of length K and count distinct characters.

    • Use a set to keep track of distinct characters in each substring.

    • Increment count if number of distinct characters equals K.

  • Answered by AI
  • Q2. 

    Collect Maximum Coins from Matrix

    You are provided with a matrix consisting of 'M' rows and 'N' columns. Each cell in this matrix either contains a coin or is empty.

    Your task is to collect the maximum n...

  • Ans. 

    Given a matrix with coins and empty cells, collect maximum coins from boundary cells and adjacent cells.

    • Iterate through the boundary cells and collect coins from them and their adjacent cells

    • Keep track of visited cells to avoid collecting the same coin multiple times

    • Use depth-first search or breadth-first search to explore adjacent cells

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

It was held after the debugging round at around 1 PM. The interviewer briefed me about the problem and then asked me to code in visual studio code.

  • Q1. 

    Optimize Memory Usage Problem Statement

    Alex wants to maximize the use of 'K' memory spaces on his computer. He has 'N' different document downloads, each with unique memory usage, and 'M' computer games,...

  • Ans. 

    Maximize memory usage by pairing downloads and games within memory limit 'K'.

    • Sort the downloads and games in descending order.

    • Iterate through the downloads and games to find the pairs within memory limit 'K'.

    • Return the pairs that maximize memory usage.

  • Answered by AI
Round 3 - Video Call 

Round duration - 45 minutes
Round difficulty - Hard

It was immediately after the second interview round. Total 6 students were shortlisted from various colleges for this round. It was at around 4 PM. There were 2 interviewers and asked questions from OS, DBMS, DS and project related questions from resume.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bhagwan Parshuram Institute of Technology. I applied for the job as Fullstack Developer in DelhiEligibility criteriaNo backlogs were allowedCommvault interview preparation:Topics to prepare for the interview - Python (as a language for data structures), Data structures, Operating system, Computer networking, Database management systemTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Only mention those things in resume that you know very well
Tip 2 : Core subjects are very important for commvault
Tip 3 : Concept of usage of data structures should be clear

Application resume tips for other job seekers

Tip 1 : Do not mention anything in resume that you are not sure about. Keep it simple
Tip 2 : You can add achievements other than technical also.

Final outcome of the interviewRejected

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

I applied via Company Website and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Networks based questions
  • Q2. Os based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and tough for fresher to crack, Nice package and good people who will guid u in interview process in case you are stuck at answer

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 (220)

Interview questions from similar companies

I appeared for an interview in Jun 2017.

Interview Questionnaire 

2 Questions

  • Q1. What is HTML, PHP and CSS
  • Ans. 

    HTML, PHP, and CSS are programming languages used for creating and designing websites.

    • HTML (Hypertext Markup Language) is used for creating the structure and content of web pages.

    • PHP (Hypertext Preprocessor) is a server-side scripting language used for creating dynamic web pages.

    • CSS (Cascading Style Sheets) is used for styling and formatting the layout of web pages.

    • Example: HTML is used to create headings, paragraphs, ...

  • Answered by AI
  • Q2. In my technical test, they asked me to replicate the privacy pages of Twitter and facebook.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was referred to by a friend so this step was comparatively easier.
Tips: Resume should be straightforward and extra and incomplete information should be avoided.

Round: Technical + HR Interview
Experience: A formal face to face interview was conducted. They tested my past knowledge about concepts related to the functioning of their company. It was a smooth interview.
Tips: Be confident, and if you are not thorough with a particular topic, be straightforward and tell the interviewer. Honesty is the best policy to crack an interview.

Round: Client interview
Experience: In this round, a conference call was held between the client in US and me. I was expected to put my exisiting knowledge in to practice to solve the problem at hand.
Tips: Be clear and concise and communicate appropriately. At this stage, a proficiency in English language and a good command over it is a must. Even if you are nervous and sweating, don't EVER show it.

Skills: Technical Analysis, Communication

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jun 2022. 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 tips
Round 2 - Technical 

(3 Questions)

  • Q1. There were two interviewers. I was interviewed in python. Two coding questions on python and one SQL question and few questions on projects and previous working experience and knowledge on linux.
  • Q2. What is your work experience
  • Q3. What are the projects you worked on

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident. Your hardwork will definitely pays off.

CommVault Interview FAQs

How many rounds are there in CommVault interview for freshers?
CommVault interview process for freshers usually has 1-2 rounds. The most common rounds in the CommVault interview process for freshers are Coding Test, Resume Shortlist and One-on-one Round.
How to prepare for CommVault interview for freshers?
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 Application Software and Software Design.
What are the top questions asked in CommVault interview for freshers?

Some of the top questions asked at the CommVault interview for freshers -

  1. Who has the right to decide the termination clause in an contra...read more
  2. Given a table, tell the normal form it is in and normalise ...read more
  3. in first round you will be asked about the projects and then followed by a debu...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.

Tell us how to improve this page.

CommVault Interview Process for Freshers

based on 5 interviews

Interview experience

3.4
  
Average
View more

Interview Questions from Similar Companies

Mobileum Interview Questions
3.3
 • 37 Interviews
Entrata Interview Questions
4.1
 • 34 Interviews
Twilio Interview Questions
3.9
 • 23 Interviews
SOTI Interview Questions
3.3
 • 23 Interviews
View all

CommVault Reviews and Ratings

based on 108 reviews

3.9/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.9

Salary

3.8

Job security

3.9

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 108 Reviews and Ratings
Principal Engineer – C++ and SQL

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Senior Implementation Specialist

Mumbai

8-13 Yrs

Not Disclosed

Business Systems Analyst (Workday HCM Analyst)

Bangalore / Bengaluru

8-12 Yrs

Not Disclosed

Explore more jobs
Technical Specialist
66 salaries
unlock blur

₹11 L/yr - ₹32 L/yr

Software Engineer
51 salaries
unlock blur

₹12 L/yr - ₹28 L/yr

Senior Engineer
37 salaries
unlock blur

₹12.2 L/yr - ₹35 L/yr

Senior Software Engineer
27 salaries
unlock blur

₹16 L/yr - ₹49 L/yr

Engineer
25 salaries
unlock blur

₹9 L/yr - ₹31 L/yr

Explore more salaries
Compare CommVault with

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

Entrata

4.1
Compare

Mobileum

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