Upload Button Icon Add office photos

CommVault

Compare button icon Compare button icon Compare

Filter interviews by

CommVault Software Developer Intern Interview Questions and Answers for Freshers

Updated 24 May 2022

CommVault Software Developer Intern Interview Experiences for Freshers

1 interview found

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

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I was interviewed in Jan 2024.

Round 1 - Coding Test 

Had a DSA question based on maps, CSS related MCQ and prototype related MCQ

Round 2 - One-on-one 

(1 Question)

  • Q1. Solved basic DSA question hashmap
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Copy constructor implementation it was based on
Round 2 - Technical 

(1 Question)

  • Q1. Binary search question on array
Round 3 - HR 

(1 Question)

  • Q1. Experience and expectations on salary

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

10 core subject MCQs along with 3 coding questions

1 Fizz Buzz questions
2 third largest string in array of strings
3 operation on numbers given by strings

Round 2 - Technical 

(3 Questions)

  • Q1. Almost all Basic concepts retlated to OS ie process, threads, multitasking, multiprogramming
  • Q2. Concepts related to AWS
  • Q3. Coding questions like 1. second largest element in array 2. stack implementation and its real time uses 3. frequency of characters in string
Round 3 - Technical 

(2 Questions)

  • Q1. Deep concepts related to CNS , related to your own laptop its processor , cores etc
  • Q2. Top View of binary treee
  • Ans. 

    Top view of binary tree is the nodes visible when viewed from the topmost node.

    • Top view shows the nodes visible from the root node's perspective.

    • Nodes are printed in the order of their horizontal distance from the root node.

    • If two nodes have the same horizontal distance, the node that appears first in the level order traversal is printed first.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Keep fundamentals of AWS clear it is not necessary but if you add it in resume it will be in your advantage and questions will be asked on it
2. Core subjects like CNS ,OS should be good

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Druva 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
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 3 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 - Coding Test 

Medium level leetcode questions and some apti very rare but.

Round 3 - Technical 

(3 Questions)

  • Q1. Good practice of ds algo and os
  • Ans. 

    Good practice of data structures, algorithms, and operating systems is essential for software engineers.

    • Regularly practice coding challenges to improve problem-solving skills

    • Understand the time and space complexity of algorithms

    • Learn about different data structures and when to use them

    • Familiarize yourself with operating system concepts like processes, threads, and memory management

  • Answered by AI
  • Q2. Is given tree bst or not?
  • Q3. Check whether cycle in linked list.
  • Ans. 

    Check for cycle in a linked list by using two pointers approach.

    • Use two pointers, one moving at double the speed of the other.

    • If there is a cycle, the two pointers will eventually meet.

    • Alternatively, use a hash set to keep track of visited nodes.

  • Answered by AI

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

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

I applied via Walk-in and was interviewed before Nov 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Maths, logical question & some related to programming

Round 3 - Coding Test 

One problem statement to write a program.

Round 4 - Technical 

(1 Question)

  • Q1. Technical question related PHP, SQL, etc.
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was consisted of cloud, docker related questions and some logical questions. There were 5 coding questions 3 were easy level coding questions and 2 were on sql schema realated quetions.

Round 2 - Group Discussion 

GD was good HR was too supportive everyone got chance to keep and express their points.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. Sql and some php related questions

Tell us how to improve this page.

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 516 Interviews
Veritas Interview Questions
4.0
 • 64 Interviews
NetApp Interview Questions
3.9
 • 64 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
Entrata Interview Questions
4.4
 • 34 Interviews
Druva Interview Questions
3.7
 • 25 Interviews
Twilio Interview Questions
3.9
 • 23 Interviews
View all
CommVault Software Developer Intern Salary
based on 4 salaries
₹28 L/yr - ₹34 L/yr
383% more than the average Software Developer Intern Salary in India
View more details
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