Upload Button Icon Add office photos

Filter interviews by

Cohesity Engineering Intern Interview Questions and Answers

Updated 25 Sep 2024

Cohesity Engineering Intern Interview Experiences

1 interview found

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

I applied via campus placement at Indian Institute of Technology (IIT), Chennai and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Cant remember much of how round 1 happened

Round 2 - Technical 

(2 Questions)

  • Q1. Give a base 7 representation of a number - coding question
  • Ans. 

    Convert a number to base 7 representation

    • Divide the number by 7 and store the remainder in each step

    • Repeat until the quotient is 0

    • Reverse the remainders to get the base 7 representation

  • Answered by AI
  • Q2. Min and max in matrix calculation
  • Ans. 

    Finding the minimum and maximum values in a matrix

    • Iterate through each element in the matrix to find the minimum and maximum values

    • Initialize min and max variables with the first element in the matrix

    • Compare each element with the current min and max values and update accordingly

    • Example: For a matrix [[1, 2, 3], [4, 5, 6]], min = 1, max = 6

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on design more. Coding questions are known to be simple in cohesity rounds when compared to rubrik

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Core java based questions, followed by springboot and then sql queries
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based java and spring boot questions and more complex sql queries
Round 3 - Client Interview 

(1 Question)

  • Q1. Previous project related questions like difficulty faced in project, how you overcome that, day to day routine, discussed role in projects
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and onboarding instructions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core technology in which you are proficient and have best knowledge in your domain, if you don't know about other required technologies be clear and tell them
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 Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

45 minutes
arrays, strings,
SHL

Round 2 - Technical 

(2 Questions)

  • Q1. Find number of nodes in a tree and it's time complexity
  • Ans. 

    To find number of nodes in a tree, perform a depth-first or breadth-first traversal and count the nodes. Time complexity is O(n).

    • Perform a depth-first or breadth-first traversal of the tree

    • Count the nodes as you traverse the tree

    • Time complexity is O(n) where n is the number of nodes in the tree

  • Answered by AI
  • Q2. What is abstraction and how do you implement it ??
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information.

    • Abstraction allows developers to focus on the essential features of an object or system.

    • It helps in reducing complexity and improving efficiency in software development.

    • Implement abstraction in programming by using abstract classes and interfaces.

    • Example: In a car, we don't need to know the internal workings o...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is the minimum number of coins to reach the target with the coins 1,2,5
  • Ans. 

    The minimum number of coins to reach a target amount can be calculated using dynamic programming.

    • Use dynamic programming to calculate the minimum number of coins needed to reach the target amount.

    • Start by initializing an array to store the minimum number of coins needed for each amount from 0 to the target amount.

    • Iterate through the coin denominations and update the minimum number of coins needed for each amount based

  • Answered by AI
  • Q2. Byte stream to human readable format without using library
  • Ans. 

    Convert byte stream to human readable format without using library

    • Iterate through the byte stream and convert each byte to its ASCII character representation

    • Concatenate the ASCII characters to form the human readable format

    • Handle special characters and edge cases appropriately

  • Answered by AI

Skills evaluated in this interview

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

1hr mostly was c questions focusing on pointers, arrays and strings. Few logical questions were there too

Round 2 - Coding Test 

2hrs, 5 questions. 1 easy and 4 medium. All leetcode type problems with arrays, strings and matrix

Round 3 - Coding Test 

2hrs, simple application development like creating a backend for shopping application. Only simple functions like adding products, quantity, ordering, if quantity is not there then refuse the order and such. Was not asked for DB implementations.

Round 4 - Technical 

(2 Questions)

  • Q1. How to merge a list of sorted arrays in sorted order?
  • Ans. 

    Merge sorted arrays using a min heap to maintain sorted order.

    • Create a min heap and insert the first element from each array into the heap.

    • Pop the smallest element from the heap and add it to the result array.

    • Replace the popped element in the heap with the next element from the same array.

    • Continue this process until all elements are merged.

  • Answered by AI
  • Q2. Simple discussions about oops, project etc
Round 5 - HR 

(3 Questions)

  • Q1. Self introduction for 2 mins
  • Q2. Why do you want to join Zoho?
  • Q3. What kinda word does Zoho do
  • Ans. 

    Zoho is a software company that provides cloud-based business applications.

    • Zoho offers a suite of productivity and collaboration tools such as Zoho CRM, Zoho Books, and Zoho Projects.

    • Zoho's products are designed to help businesses manage their operations more efficiently.

    • Zoho's software is cloud-based, allowing users to access their data from anywhere with an internet connection.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Grind leetcode guys. That's the only way.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. How CAN protocol Work? What is RTR?
  • Ans. 

    CAN protocol is a communication protocol used in automotive and industrial applications. RTR stands for Remote Transmission Request.

    • CAN protocol is a message-based protocol used for communication between electronic control units in vehicles and industrial machinery.

    • It uses a two-wire differential bus to transmit data between nodes on the network.

    • RTR is a bit in the CAN message that indicates whether the message is a da...

  • Answered by AI
  • Q2. How Communication control Service work?
  • Ans. 

    Communication control service manages communication between different components in a system.

    • Communication control service coordinates the flow of information between various parts of a system.

    • It ensures that messages are sent and received correctly and in a timely manner.

    • Examples include message queues, event-driven architectures, and service-oriented architectures.

  • Answered by AI
  • Q3. Which tool use for code build?
  • Ans. 

    Jenkins is commonly used for code build.

    • Jenkins is a popular tool for continuous integration and continuous delivery (CI/CD).

    • Other tools like GitLab CI/CD, Travis CI, and CircleCI are also commonly used for code build.

    • These tools automate the process of building, testing, and deploying code changes.

  • Answered by AI

Skills evaluated in this interview

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

OnCampus Test including DSA Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. DSA Question based on Dynamic Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for DSA
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Details about experience and some OOPs questions
Round 2 - Coding Test 

OOPs, polymorphism, SOLID principle, threads, concurrency, unit tests, coverage, testing

Round 3 - Technical 

(1 Question)

  • Q1. Turn a matrix by 90 degrees.
  • Ans. 

    To turn a matrix by 90 degrees, transpose the matrix and then reverse each row.

    • Transpose the matrix by swapping elements across the diagonal

    • Reverse each row of the transposed matrix

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - refresh your basics. think out loud. they want to hear your thinking process.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Managerial standard questions
Round 2 - Technical 

(2 Questions)

  • Q1. System design and architecture
  • Q2. Propose architecture for an application
  • Ans. 

    Propose architecture for an application

    • Identify the requirements and constraints of the application

    • Choose appropriate technologies and frameworks based on requirements

    • Design a scalable and modular architecture

    • Consider security, performance, and maintainability

    • Implement microservices architecture for flexibility and scalability

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 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 - Technical 

(3 Questions)

  • Q1. I dont remember
  • Q2. Trees based question
  • Q3. Palindromic subsequence based
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Assignment 

Simple CRUD application design

Round 2 - One-on-one 

(1 Question)

  • Q1. Java, Spring,Spring boot, Microservices, etc
Round 3 - One-on-one 

(2 Questions)

  • Q1. Managerial qurstions
  • Q2. Behavioural questions
Round 4 - HR 

(1 Question)

  • Q1. Salary Negotioation

Cohesity Interview FAQs

How many rounds are there in Cohesity Engineering Intern interview?
Cohesity interview process usually has 2 rounds. The most common rounds in the Cohesity interview process are Coding Test and Technical.
What are the top questions asked in Cohesity Engineering Intern interview?

Some of the top questions asked at the Cohesity Engineering Intern interview -

  1. Give a base 7 representation of a number - coding quest...read more
  2. min and max in matrix calculat...read more

Tell us how to improve this page.

Cohesity Engineering Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 897 Interviews
Google Interview Questions
4.4
 • 871 Interviews
Amdocs Interview Questions
3.7
 • 531 Interviews
Zoho Interview Questions
4.3
 • 514 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
Salesforce Interview Questions
4.1
 • 272 Interviews
Adobe Interview Questions
3.9
 • 250 Interviews
View all

Cohesity Engineering Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Site Reliability Engineer
32 salaries
unlock blur

₹7.3 L/yr - ₹30 L/yr

Member Technical Staff
29 salaries
unlock blur

₹15 L/yr - ₹62 L/yr

Staff Engineer
19 salaries
unlock blur

₹50 L/yr - ₹98 L/yr

Senior Member of Technical Staff
15 salaries
unlock blur

₹30 L/yr - ₹67.5 L/yr

Software Engineer
12 salaries
unlock blur

₹11 L/yr - ₹33.6 L/yr

Explore more salaries
Compare Cohesity with

RUBRIK INDIA

3.7
Compare

Druva

3.7
Compare

Veeam Software

4.0
Compare

CommVault

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