Cohesity internship interview

Here you will find details about the Cohesity internship interview experience, questions with their possible solutions are discussed here: Round 1: The first round was an online round held on Hackerearth. It had 2 questions of easy-medium level. Easliy solvable with decent coding skills. Round 2: This was a Zoom online interview round lasting for … Read more

Implementing Selection Sort in C++

In this post we will write the program to implement selection sort in C++ programming language, first lest understand how selection sort works. What is Selection Sort: Selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O(n2) time complexity, making it inefficient on large lists, and generally performs worse than the … Read more