• Home
  • Subscribe
  • Contribute Us
    • Share Your Interview Experience
  • Contact Us
  • About
    • About CSEstack
    • Campus Ambassador
  • Forum & Discus
  • Tools for Geek
  • LeaderBoard
CSEstack

What do you want to Learn Today?

  • Programming
    • Tutorial- C/C++
    • Tutorial- Django
    • Tutorial- Git
    • Tutorial- HTML & CSS
    • Tutorial- Java
    • Tutorial- MySQL
    • Tutorial- Python
    • Competitive Coding Challenges
  • CSE Subject
    • (CD) Compiler Design
    • (CN) Computer Network
    • (COA) Computer Organization & Architecture
    • (DBMS) Database Management System
    • (DS) Data Structure
    • (OS) Operating System
    • (ToA) Theory of Automata
    • (WT) Web Technology
  • Interview Questions
    • Interview Questions- Company Wise
    • Interview Questions- Coding Round
    • Interview Questions- Python
    • Interview Questions- REST API
    • Interview Questions- Web Scraping
    • Interview Questions- HR Round
    • Aptitude Preparation Guide
  • GATE 2022
  • Linux
  • Trend
    • Full Stack Development
    • Artificial Intelligence (AI)
    • BigData
    • Cloud Computing
    • Machine Learning (ML)
  • Write for Us
    • Submit Article
    • Submit Source Code or Program
    • Share Your Interview Experience
  • Tools
    • IDE
    • CV Builder
    • Other Tools …
  • Jobs

Cohesity Coding Questions and Online MCQ Test Experience

Want to Share your Interview Experience?/12597/0
Placement Interview

I got a call from Cohesity. They viewed my profile and finds it matching their requirement.

They explained to me the complete process. There is coding round first hosted on Hackerearth followed by the interview rounds.

It was a one-hour online coding test.

To solve these coding questions you can choose any programming language whichever you feel comfortable with.

Once the test starts, you can not pause it.

There were three MCQ questions from computer science and two coding questions.

Cohesity MCQ Questions:

Each question carries 5 marks. They are pretty easy to answer if you know the computer science basics.

1. Which of the following is a language processor in the operating system?

  • Assemblers
  • Compilers
  • Interpreters
  • All of the above.

The answer is all of the above. You can read about Compiler vs Interpreter.

2. Which of the statement given below is true regarding threading in the operating system?

There were four options related to memory utilization by threading.

You have to understand the difference between thread and process to answer this question.

3. In networking, which of the following is not a client-server application?

  • Email
  • Ping
  • Web browsing
  • Internet chat application

The answer is Ping. All others are client-server applications, we use almost every day.

Cohesity Coding Questions

4.  User registration System: Suppose you have given names all the employees of an organization and one empty database. Write a program based on the following condition.

  • If the employee name is already present in the database, print NO.
  • If the employee name is not present, add it in the database and print ‘YES’.

This is a very simple program.

Python Code:

myList = []

def Solve(S):
  if S in myList:
    return('YES')
  else:
    myList.append(S)
    return('NO')

N = int(input())
for _ in range(N):
  S = input()
  out_ = Solve(S)
  print(out_)

2. Sum of the sub-array:

Cohesity coding question

Python solution:

Cohesity Python coding question

Even solving all the coding questions they did not ask for the interview.

After waiting for a few days, I sent an email to Cohesity HR and they said: “Requirement is on freeze”. This is really pathetic.

Anyway, there is nothing to lose.  I consider these experience as competitive coding questions for practice.

If you are preparing for competitive programming, learn Python. It is very easy to write a program in Python as compare to other programming languages like C and Java.

All the Best!


Editor’s Note: This experience is shared by the candidate Mrunmay Deb. We wish him all the best for his future.

Python Interview Questions eBook

Cohesityinterview
Want to Share your Interview Experience?
This interview questions and experience are shared by one of the readers like you. You can share your interview experience as well. If you want to help new job aspirants to get their dream job, kindly share your experience on CSEstack Portal, by filling this simple form. It will be published on our portal. Thank You!

Your name can also be listed here. Got a tip? Submit it here to become an CSEstack author.

Leave a Reply Cancel reply

100+ Company’s Interview Questions



You can share your interview experience.

Job Preparation Stack

03 Types of IT Engineers in Demand

05 Programming Skills for Jobs

05 Programming for High Paying Jobs

11 Software Developer Skills for Jobs

07 Tips for Standard CV Format

05 Guidelines for Writing Best SoP

13 Aptitude Preparation Tips

07 Steps for Effective Job Search

07 HR Interview Questions

57 Coding Interview Questions

57 Python Interview Questions

Summer Internships 2022

Why Internship?

Apply Internships in IIT, NIT, IIIT

Programming Tutorials

C/C++ Programming

Python Programming

Java Programming

© 2022 – CSEstack.org. All Rights Reserved.

  • Home
  • Subscribe
  • Contribute Us
    • Share Your Interview Experience
  • Contact Us
  • About
    • About CSEstack
    • Campus Ambassador
  • Forum & Discus
  • Tools for Geek
  • LeaderBoard