Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Clumio Team. If you also belong to the team, you can get access from here

Clumio Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clumio Interview Questions and Answers

Updated 30 Dec 2024

Clumio Interview Experiences

Popular Designations

4 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Very easy questions. Was able to solve everything.
Round 2 - One-on-one 

(1 Question)

  • Q1. Very easy questions. Was able to solve everything.
Round 3 - One-on-one 

(1 Question)

  • Q1. Very easy questions was able to solve everything

Member Technical Staff Interview Questions asked at other Companies

Q1. Next Smallest Palindrome Problem Statement Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'. Explanation: You are given a number in string format, and your task is to determine the small... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Assignment 

There are 10 problems: 2 are coding problems in the style of LeetCode, and 8 are related to computer science.

Round 2 - Coding Test 

A simple coding interview should not only focus on LeetCode-style questions; it is important to also have knowledge of multi-threading and computer science concepts.

Round 3 - Coding Test 

This interview style is the same as that of round 2.

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to study Linux and computer science.

Member Technical Staff Interview Questions asked at other Companies

Q1. Next Smallest Palindrome Problem Statement Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'. Explanation: You are given a number in string format, and your task is to determine the small... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Graph based question on MST
  • Q2. Simple sgring based question
Round 2 - Coding Test 

3D DP based question and one simple linked list

Round 3 - Coding Test 

2 question, one based on dp on tree

Interview Preparation Tips

Interview preparation tips for other job seekers - Wrong company to join now

Member Technical Staff Interview Questions asked at other Companies

Q1. Next Smallest Palindrome Problem Statement Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'. Explanation: You are given a number in string format, and your task is to determine the small... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Mostly based on hard level DP

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on DP and Graphs

Mts Software Engineer Interview Questions asked at other Companies

Q1. What are Data Structures? What is the difference between array and linked list? What is the difference between linear and non-linear data structure? What is the difference between stack and queue with examples. Give real life example of gra... read more
View answer (1)

Clumio interview questions for popular designations

 Member Technical Staff

 (3)

 Mts Software Engineer

 (1)

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Circular linked list question

Round 2 - One-on-one 

(1 Question)

  • Q1. Most graph based DSA
  • Ans. 

    Graph based data structures and algorithms are essential for solving complex problems involving relationships and connections.

    • Graphs consist of nodes and edges that represent relationships between the nodes.

    • Common graph algorithms include depth-first search (DFS) and breadth-first search (BFS).

    • Examples of graph based data structures include adjacency list and adjacency matrix.

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Jan 2016.

Interview Questionnaire 

1 Question

  • Q1. Technical interview

Interview Preparation Tips

Round: Test
Experience: techincal questions from C,C++ . mostly pointers. few ques from DB, and OS.

Duration: 1 hour 30 minutes
Total Questions: 45

Round: Test
Experience: This is a rigourous 6-8 hours coding round where you are given a problem statement to solve .
The company people are there to guide you through the process .
Duration: 6 hours
Total Questions: 1

Round: Technical Interview
Experience: A panel of 2-3 members takes your inteview on basic fundamental c++, data structures questions.
duration is mostly 45 mins to 1hr.

Skills: C++, Coding Skills And Knowledge On Data Structures, Pointers In C, Logical Puzzles, Thinking Approach
College Name: Netaji Subhas Institute Of Technology, Delhi

I applied via Company Website and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Networks based questions
  • Q2. Os based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and tough for fresher to crack, Nice package and good people who will guid u in interview process in case you are stuck at answer

I applied via Recruitment Consulltant and was interviewed before Oct 2021. 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 Resume tips
Round 2 - HR 

(3 Questions)

  • Q1. Normal introduction was asked
  • Q2. Description of the previous role
  • Q3. Roles and responsibilities
Round 3 - Aptitude Test 

Not applicable , this was final round

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard on your attitude, skills can be taught! Focus on your goal.

I was interviewed in Dec 2016.

Interview Questionnaire 

7 Questions

  • Q1. Questions on linked list
  • Q2. Implement LRU
  • Ans. 

    LRU (Least Recently Used) is a caching algorithm that removes the least recently used item when the cache is full.

    • LRU uses a combination of a doubly linked list and a hash map.

    • The doubly linked list keeps track of the order of recently used items.

    • The hash map allows for efficient lookup of items in the cache.

    • When a new item is accessed, it is moved to the front of the list.

    • If the cache is full, the item at the end of t

  • Answered by AI
  • Q3. Questions on C, c++
  • Q4. Questions on DBMS
  • Q5. Questions on Operating Systems
  • Q6. Tell all things that happen inside a system when we press 'k' on the notepad.
  • Ans. 

    Pressing 'k' on Notepad triggers a series of events including key press event, character insertion, and potential text manipulation.

    • When 'k' is pressed, a key press event is triggered

    • The key press event is captured by the Notepad application

    • The character 'k' is inserted at the current cursor position

    • If any text is selected, it may be replaced by the character 'k'

    • The cursor position is updated to the next position

    • If aut

  • Answered by AI
  • Q7. Basic HR questions

Interview Preparation Tips

Round: Technical Interview
Tips: Prepare Data Structure and Algorithms well

Round: Technical Interview
Tips: Have decent knowledge of technical subjects.

Skills: Programming, Data Structures, Algorithm, Operating System Basics, Knowledge About Database Managements Systems
College Name: IIT Roorkee

Skills evaluated in this interview

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

I was interviewed in Jan 2024.

Round 1 - Coding Test 

Had a DSA question based on maps, CSS related MCQ and prototype related MCQ

Round 2 - One-on-one 

(1 Question)

  • Q1. Solved basic DSA question hashmap
Contribute & help others!
anonymous
You can choose to be anonymous

Clumio Interview FAQs

How many rounds are there in Clumio interview?
Clumio interview process usually has 2-3 rounds. The most common rounds in the Clumio interview process are Coding Test, One-on-one Round and Technical.
What are the top questions asked in Clumio interview?

Some of the top questions asked at the Clumio interview -

  1. Very easy questions. Was able to solve everythi...read more
  2. Graph based question on ...read more
  3. simple sgring based quest...read more

Recently Viewed

LIST OF COMPANIES

Premium Transmission

Locations

SALARIES

PolicyBazaar

INTERVIEWS

Axtria

No Interviews

SALARIES

ProSIM R&D

INTERVIEWS

Premium Transmission

No Interviews

LIST OF COMPANIES

ProSIM R&D

Locations

INTERVIEWS

ProSIM R&D

No Interviews

INTERVIEWS

Clumio

No Interviews

INTERVIEWS

Premium Transmission

No Interviews

Tell us how to improve this page.

Clumio Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Cohesity Interview Questions
3.9
 • 81 Interviews
CommVault Interview Questions
3.9
 • 27 Interviews
Druva Interview Questions
3.7
 • 25 Interviews
CGS Interview Questions
3.6
 • 25 Interviews
RUBRIK INDIA Interview Questions
3.6
 • 13 Interviews
Arcserve Interview Questions
3.3
 • 9 Interviews
Veeam Software Interview Questions
4.0
 • 5 Interviews
View all

Clumio Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

4.5

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Staff Member 2
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Clumio with

Druva

3.7
Compare

Veeam Software

4.0
Compare

RUBRIK INDIA

3.6
Compare

Cohesity

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