Upload Button Icon Add office photos

Filter interviews by

Cohesity BI Developer Interview Questions and Answers

Updated 1 Jun 2024

Cohesity BI Developer Interview Experiences

1 interview found

BI Developer Interview Questions & Answers

user image Anonymous

posted on 1 Jun 2024

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

I applied via Referral and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1.Introduce urself ? 2.Question on SQL JOINS asked 3.Questions on SQL keys wore asked 4.question on Pandas wore there regarding the statistical analysis

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Focus more on SQL
2. Self projects and Work ex will put the interview questions around them

Interview questions from similar companies

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

I applied via Company Website and was interviewed before Feb 2022. There were 4 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 

Aptitude questions,2 Java codes and 2 SQL codes

Round 3 - Technical 

(2 Questions)

  • Q1. What is OOPs Concepts? Code for Function overloading and functions overriding?
  • Ans. 

    OOPs Concepts include encapsulation, inheritance, polymorphism, and abstraction. Function overloading is having multiple functions with the same name but different parameters. Function overriding is having a derived class redefine a function from its base class.

    • Encapsulation: bundling data and methods together

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent differe...

  • Answered by AI
  • Q2. Explain Views in SQL
  • Ans. 

    Views are virtual tables that display data from one or more tables in a database.

    • Views are created using SELECT statements.

    • They can be used to simplify complex queries.

    • They can also be used to restrict access to sensitive data.

    • Views do not store data themselves, but rather display data from underlying tables.

    • They can be updated just like regular tables, but with some limitations.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What is your strength?
  • Q2. Tell me about your Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - They are observing your confidence and technical knowledge. They are confusing us about topic and want to give your answer . You have to listen proper questions and then give your answer.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Java basic questions.
  • Q2. Rest basics methods like get, post, put, delete etc
  • Q3. Given a directory name, write a program to return a list of all .tst files present in the directory and its sub directories.
  • Ans. 

    Program to return list of .tst files in given directory and subdirectories

    • Use recursion to traverse through all directories and subdirectories

    • Check if each file has .tst extension and add to list if true

    • Use built-in functions like os.listdir() and os.path.splitext() in Python

  • Answered by AI
Round 2 - One-on-one 

(4 Questions)

  • Q1. Difference between == and equals
  • Ans. 

    The '==' operator is used for comparing values of primitive data types, while the 'equals' method is used for comparing objects in Java.

    • Use '==' to compare primitive data types like int, char, boolean, etc.

    • Use 'equals' method to compare objects like Strings, Lists, etc.

    • Example: int a = 5; int b = 5; if(a == b) { // true }

    • Example: String str1 = 'hello'; String str2 = 'hello'; if(str1.equals(str2)) { // true }

  • Answered by AI
  • Q2. Use case of abstract class and interfaces
  • Ans. 

    Abstract classes are used to provide a common base for multiple classes, while interfaces define a contract for classes to implement.

    • Abstract classes can contain both abstract and concrete methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, while interfaces cannot.

    • Interfaces allow for multiple inheritance, while classes can only inherit from one abstract class.

    • Abstract class...

  • Answered by AI
  • Q3. Singleton design pattern. Explain and implement (thread safe)
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Ensure a private static instance variable in the class.

    • Provide a public static method to access the instance, creating it if necessary.

    • Use synchronized keyword or double-checked locking to make it thread-safe.

  • Answered by AI
  • Q4. Merge sort. Explain and implement.
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts each half, and then merges the sorted halves.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Oracle Full Stack Software Developer interview:
  • Java
  • Spring
  • DSA
  • REST API
  • SOAP

Skills evaluated in this interview

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

2 medium leetcode questions were asked

Round 2 - One-on-one 

(2 Questions)

  • Q1. Difference between polymorphism and inheritance
  • Q2. Dsa question related to array
Round 3 - One-on-one 

(2 Questions)

  • Q1. Explain about project
  • Q2. What did you do in you internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic Questions, Data types, Promises
  • Q2. Event loop, and other js concepts

Web Developer Interview Questions & Answers

Zoho user image bharath Boopathi

posted on 3 Dec 2024

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

I applied via Job Fair and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Array, math, sort, string javascript qutions

Round 2 - Coding Test 

Simple coding qution

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Dsa mostly from arrays,trees.

Round 2 - HR 

(2 Questions)

  • Q1. Intro of the candidate
  • Q2. What Do iKnow that is not written in my resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and be confident.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

Promise-based JS coding question

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

Data structure and algorithms

Cohesity Interview FAQs

How many rounds are there in Cohesity BI Developer interview?
Cohesity interview process usually has 1 rounds. The most common rounds in the Cohesity interview process are Technical.

Tell us how to improve this page.

Cohesity BI Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 846 Interviews
Google Interview Questions
4.4
 • 822 Interviews
Amdocs Interview Questions
3.7
 • 512 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
KPIT Technologies Interview Questions
3.4
 • 279 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
Salesforce Interview Questions
4.0
 • 221 Interviews
View all
Software Engineer
434 salaries
unlock blur

₹7.3 L/yr - ₹21.3 L/yr

Senior Software Engineer
289 salaries
unlock blur

₹12.9 L/yr - ₹33.5 L/yr

Technical Support Engineer
272 salaries
unlock blur

₹7 L/yr - ₹19 L/yr

Senior Technical Support Engineer
139 salaries
unlock blur

₹10 L/yr - ₹20.8 L/yr

Principal Software Engineer
132 salaries
unlock blur

₹22 L/yr - ₹46 L/yr

Explore more salaries
Compare Cohesity with

RUBRIK INDIA

3.6
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