Upload Button Icon Add office photos

Filter interviews by

Cohesity Software Developer Interview Questions and Answers

Updated 20 Mar 2024

Cohesity Software Developer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

The duration of the test was one hour and there were two questions in it.

Round 3 - Technical 

(2 Questions)

  • Q1. The question was based on two pointers technique.
  • Q2. The answer was based on two pointers technique.

Interview Preparation Tips

Interview preparation tips for other job seekers - The most important thing is to be good at DSA and problem solving on different coding platforms.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Online assessment - hackerrank round

Round 2 - Technical 

(1 Question)

  • Q1. DSA Round - Level order based question
Round 3 - Technical 

(1 Question)

  • Q1. Resume based - core CS subjects

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Three question on coding medium to hard level

Round 2 - Technical 

(1 Question)

  • Q1. Technical interview one coding question you have to solve

Interview questions from similar companies

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

Basic DSA questions, best time to buy and sell stock and its variation

Round 2 - Technical 

(2 Questions)

  • Q1. Basic nosql vs sql questions
  • Q2. Designing system for google playstore
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions were completely based on data structures and algorithm
  • Q2. SQL based questions were also asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour , dsa, hackerearth, medim to hard

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa question was asked in it
  • Q2. Questions related to resume was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - study
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Internal working of Hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hashed a...

  • Answered by AI
  • Q2. Memory management in java
  • Ans. 

    Java uses automatic memory management through garbage collection to allocate and deallocate memory.

    • Java uses garbage collection to automatically manage memory allocation and deallocation.

    • Garbage collection runs in the background to reclaim memory from objects that are no longer in use.

    • Java provides the 'finalize()' method to allow objects to perform cleanup before being garbage collected.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Sep 2023. 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 

Programming assessment tools used to objectively evaluate a candidates programing skills across parameters such as problem solving, coding aptitude and debugging

Round 3 - One-on-one 

(2 Questions)

  • Q1. 1. Do you prefer working independently or as a part of a team
  • Ans. I'm prefer working as a part of a team
  • Answered Anonymously
  • Q2. As a part of an

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi, I'm anjali devi maddu and I'm writing about the position of employ with your company . I'm submitted my resume.I think you'll find that my brief personal details could be a good fit for the job and I'd love to discuss my qualifications in more details
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Find out a string is palindrome or not

Round 3 - One-on-one 

(8 Questions)

  • Q1. ACID properties
  • Ans. 

    ACID properties are a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all

    • Consistency ensures that the database remains in a consistent state before and after the transaction

    • Isolation ensures that transactions are executed independently of...

  • Answered by AI
  • Q2. Event loop in node js
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js

    • It allows Node.js to perform non-blocking operations efficiently

    • Event loop continuously checks the event queue and executes callback functions when events are triggered

  • Answered by AI
  • Q3. Trigger and cursor
  • Q4. Primary vs foreign vs unique key
  • Ans. 

    Primary key uniquely identifies a record, foreign key links to a primary key in another table, unique key ensures uniqueness of a column or set of columns.

    • Primary key: uniquely identifies each record in a table (e.g. employee_id in an employees table)

    • Foreign key: links to a primary key in another table to establish a relationship (e.g. department_id in an employees table linking to department_id in a departments table)

    • ...

  • Answered by AI
  • Q5. Project related Questions and whats your job role in that project
  • Q6. Variable hoisting in js
  • Ans. 

    Variable hoisting is a behavior in JavaScript where variable declarations are moved to the top of their scope during compilation.

    • Variable declarations are hoisted to the top of their function or global scope.

    • Only the declarations are hoisted, not the initializations.

    • Hoisting allows you to use a variable before it is declared, but it is best practice to declare variables at the top of the scope.

    • Example: console.log(myV

  • Answered by AI
  • Q7. Function closure in js
  • Ans. 

    Function closure in JavaScript allows a function to access variables from its outer scope even after the outer function has finished executing.

    • Function closures occur when a function is defined within another function and the inner function has access to the outer function's variables.

    • Closures are commonly used to create private variables and functions in JavaScript.

    • Example: function outerFunction() { let outerVar = 'I...

  • Answered by AI
  • Q8. Shallow vs deep copy in js
  • Ans. 

    Shallow copy creates a new object but references the same nested objects, while deep copy creates a new object with copies of all nested objects.

    • Shallow copy only copies the top-level object, not the nested objects.

    • Deep copy creates new copies of all nested objects, ensuring they are independent.

    • In JavaScript, shallow copy can be achieved using Object.assign or spread operator, while deep copy can be achieved using JSO

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on database levels.
They are using some what old technologies so prepare like that way

Skills evaluated in this interview

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

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. -SQL basics , HTML and basic javascript

Cohesity Interview FAQs

How many rounds are there in Cohesity Software Developer interview?
Cohesity interview process usually has 2-3 rounds. The most common rounds in the Cohesity interview process are Technical, Coding Test and Resume Shortlist.
What are the top questions asked in Cohesity Software Developer interview?

Some of the top questions asked at the Cohesity Software Developer interview -

  1. Technical interview one coding question you have to so...read more
  2. The question was based on two pointers techniq...read more
  3. The answer was based on two pointers techniq...read more

Tell us how to improve this page.

Cohesity Software Developer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more
Cohesity Software Developer Salary
based on 4 salaries
₹24 L/yr - ₹45.7 L/yr
344% more than the average Software Developer Salary in India
View more details
Site Reliability Engineer
29 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Member Technical Staff
29 salaries
unlock blur

₹15 L/yr - ₹62.4 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

Technical Staff Member 3
10 salaries
unlock blur

₹22 L/yr - ₹55 L/yr

Explore more salaries
Compare Cohesity with

RUBRIK INDIA

3.7
Compare

Druva

3.6
Compare

Veeam Software

4.0
Compare

CommVault

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