Upload Button Icon Add office photos
Engaged Employer

i

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

Cult.fit Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cult.fit Software Developer Intern Interview Questions and Answers

Updated 20 Sep 2021

12 Interview questions

A Software Developer Intern was asked
Q. 

Pair with Given Sum in a Balanced BST Problem Statement

You are given the ‘root’ of a Balanced Binary Search Tree and an integer ‘target’. Your task is to determine if there exists any pair of nodes such t...

Ans. 

Given a Balanced BST and a target integer, determine if there exists a pair of nodes with sum equal to the target.

  • Traverse the BST in-order to get a sorted array of values.

  • Use two pointers approach to find the pair with sum equal to target.

  • Consider edge cases like negative numbers and duplicates.

  • Time complexity can be optimized to O(n) using a HashSet to store visited nodes.

A Software Developer Intern was asked
Q. 

Break The Board Problem Statement

Your task is to break a board of given dimensions 'L' by 'W' into 'L' * 'W' smaller squares, ensuring the total cost of breaking is minimized.

Input:

The first line cont...
Ans. 

The task is to minimize the cost of breaking a board into smaller squares by making horizontal and vertical cuts.

  • Iterate through all possible horizontal and vertical cuts to find the minimum cost

  • Use dynamic programming to optimize the solution by storing intermediate results

  • Calculate the total cost by summing up the costs of all cuts

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
A Software Developer Intern was asked
Q. 

Word Break Problem Statement

You are given a list of N strings called A. Your task is to determine whether you can form a given target string by combining one or more strings from A.

The strings from A ca...

Ans. 

Given a list of strings, determine if a target string can be formed by combining one or more strings from the list.

  • Iterate through all possible combinations of strings from the list to form the target string.

  • Use recursion to try different combinations of strings.

  • Check if the current combination forms the target string.

  • Return true if a valid combination is found, otherwise return false.

A Software Developer Intern was asked
Q. 

Balanced Sequence After Replacement

Given a string of length 'N' containing only the characters: '[', '{', '(', ')', '}', ']'. At certain places, the character 'X' appears in place of any bracket. Your goa...

Ans. 

Determine if a valid balanced sequence can be achieved by replacing 'X's with suitable brackets.

  • Iterate through the string and keep track of the count of opening and closing brackets.

  • If at any point the count of closing brackets exceeds the count of opening brackets, return False.

  • If all 'X's can be replaced to form a valid balanced sequence, return True.

A Software Developer Intern was asked
Q. 

Water Flow Problem Statement

Given a matrix A with dimensions 'N' x 'M', where each cell represents the height of water in that location, determine the coordinates from which water can flow to both the Pac...

Ans. 

Given a matrix representing water heights, find coordinates where water can flow to both Pacific and Atlantic oceans.

  • Create a function that performs a depth-first search to find coordinates where water can flow to both oceans.

  • Keep track of visited cells and check if a cell can flow to both oceans by comparing its height with neighboring cells.

  • Return the coordinates in lexicographical order as the output.

A Software Developer Intern was asked
Q. 

Job Scheduling Problem Statement

Given a list of ‘N’ jobs, each associated with a deadline and a profit obtainable if completed by the deadline, schedule the jobs to maximize the total profit. Each job tak...

Ans. 

The job scheduling problem involves maximizing profit by scheduling jobs with deadlines and profits optimally.

  • Sort the jobs in decreasing order of profit.

  • Iterate through the sorted jobs and schedule them based on their deadlines.

  • Keep track of the maximum profit achievable by scheduling jobs within their deadlines.

  • Example: For input Jobs: 'A'(profit=20, deadline=1), 'B'(profit=30, deadline=2), 'C'(profit=40, deadli...

A Software Developer Intern was asked
Q. What are the different types of memory in operating systems?
Ans. 

Different types of memory in operating systems include RAM, ROM, virtual memory, cache memory, and registers.

  • RAM (Random Access Memory) - volatile memory used for storing data that is actively being used by the CPU

  • ROM (Read-Only Memory) - non-volatile memory that stores firmware and boot-up instructions

  • Virtual Memory - a memory management technique that uses disk space as an extension of RAM

  • Cache Memory - high-spe...

Are these interview questions helpful?
A Software Developer Intern was asked
Q. 

Problem: Search In Rotated Sorted Array

Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must d...

Ans. 

Search for integers in a rotated sorted array efficiently using binary search.

  • Use binary search to efficiently find the index of each query integer in the rotated sorted array.

  • Handle the rotation of the array by finding the pivot point first.

  • Check which half of the array the query integer falls into based on the pivot point.

  • Return the index of the query integer if found, else return -1.

A Software Developer Intern was asked
Q. 

Boundary Traversal of a Binary Tree

Given a binary tree of integers, your task is to return the boundary nodes of the tree in Anti-Clockwise direction starting from the root node.

Input:

The first line c...
Ans. 

Return the boundary nodes of a binary tree in Anti-Clockwise direction starting from the root node.

  • Traverse the left boundary nodes in top-down order

  • Traverse the leaf nodes in left-right order

  • Traverse the right boundary nodes in bottom-up order

  • Handle duplicates by including them only once

A Software Developer Intern was asked
Q. 

Merge Intervals Problem Statement

You are provided with 'N' intervals, each containing two integers denoting the start time and end time of the interval.

Your task is to merge all overlapping intervals an...

Ans. 

Merge overlapping intervals and return sorted list of merged intervals by start time.

  • Sort the intervals based on start time.

  • Iterate through intervals and merge overlapping intervals.

  • Return the list of merged intervals sorted by start time.

Cult.fit Software Developer Intern Interview Experiences

3 interviews found

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

The first Round was held on Hackerrank and the questions were of medium difficulty based on Data Structures and Algorithms.
The time of test was 1:00 PM and it was of 45 minutes with 2 coding questions to be solved.

  • Q1. 

    Merge Intervals Problem Statement

    You are provided with 'N' intervals, each containing two integers denoting the start time and end time of the interval.

    Your task is to merge all overlapping intervals a...

  • Ans. 

    Merge overlapping intervals and return sorted list of merged intervals by start time.

    • Sort the intervals based on start time.

    • Iterate through intervals and merge overlapping intervals.

    • Return the list of merged intervals sorted by start time.

  • Answered by AI
  • Q2. 

    Josephus Problem Statement

    Consider 'N' individuals standing in a circle, numbered consecutively from 1 to N, in a clockwise direction. Initially, the person at position 1 starts counting and will skip K-...

  • Ans. 

    The Josephus problem involves eliminating every Kth person in a circle until only one person remains. Determine the position of the last person standing.

    • Use a circular linked list to simulate the circle of people.

    • Iterate through the list, skipping K-1 nodes and removing the Kth node until only one node remains.

    • Return the position of the last remaining node.

    • Example: For N=5, K=2, the last person standing is at position ...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

A google Doc was shared with us and we were supposed to write code there.
Use of IDEs was not allowed so we had to write correct code on Google Docs which was later checked by them through online IDEs.
The Interviewer were friendly and observative and helped us through code if we made some silly error.

  • Q1. 

    Largest Rectangle in Histogram Problem Statement

    You are given an array/list HEIGHTS of length N, where each element represents the height of a histogram bar. The width of each bar is considered to be 1.

    ...
  • Ans. 

    Compute the area of the largest rectangle that can be formed within the bounds of a given histogram.

    • Iterate through the histogram bars and maintain a stack to keep track of increasing heights.

    • Calculate the area of the rectangle by considering the current height and the width of the rectangle.

    • Update the maximum area found so far as you iterate through the histogram.

    • Handle edge cases like when the stack is empty or when ...

  • Answered by AI
  • Q2. 

    Boundary Traversal of a Binary Tree

    Given a binary tree of integers, your task is to return the boundary nodes of the tree in Anti-Clockwise direction starting from the root node.

    Input:

    The first line ...
  • Ans. 

    Return the boundary nodes of a binary tree in Anti-Clockwise direction starting from the root node.

    • Traverse the left boundary nodes in top-down order

    • Traverse the leaf nodes in left-right order

    • Traverse the right boundary nodes in bottom-up order

    • Handle duplicates by including them only once

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The face to face round was held on Google Meet where initially interviewer asked a DS/Algo problem. Later the manager joined and asked about our resume projects in detail.
The time was 10:00 AM.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array of numbers, the task is to find the maximum sum of any contiguous subarray of the array.

    Input:

    The first line of input contains the size of the arr...
  • Ans. 

    Find the maximum sum of any contiguous subarray in an array of numbers in O(N) time.

    • Use Kadane's algorithm to find the maximum subarray sum in O(N) time.

    • Initialize two variables: max_sum and current_sum to keep track of the maximum sum found so far and the current sum of the subarray being considered.

    • Iterate through the array and update current_sum by adding the current element or starting a new subarray if the current...

  • Answered by AI
  • Q2. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Ans. 

    Search for integers in a rotated sorted array efficiently using binary search.

    • Use binary search to efficiently find the index of each query integer in the rotated sorted array.

    • Handle the rotation of the array by finding the pivot point first.

    • Check which half of the array the query integer falls into based on the pivot point.

    • Return the index of the query integer if found, else return -1.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACurefit interview preparation:Topics to prepare for the interview - Dynamic Programming, Greedy Techniques, Data Structures, OOPs, DBMS, Graph TheoryTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare OS,DBMS,OOPs too
Tip 2 : Mention at-least one project or past work experience in your resume
Tip 3 : Try maintaining 8+ CGPA as sometimes shortlist is done based on CGPA
Tip 4 : Try past interview questions from Leetcode,Interviewbit.

Application resume tips for other job seekers

Tip 1 : Try to Keep Resume 1 Pager
Tip 2 : Have atleast one project or past work experience mentioned
Tip 3 : Don't put false things on Resume as questions are asked in detail from Resume

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was early in the morning from 8 am. It was a test from home itself. It was a conducted on HackerEarth and was of 60 minutes duration. 30 students were shortlisted. I was also shortlisted.

  • Q1. 

    Word Break Problem Statement

    You are given a list of N strings called A. Your task is to determine whether you can form a given target string by combining one or more strings from A.

    The strings from A c...

  • Ans. 

    Given a list of strings, determine if a target string can be formed by combining one or more strings from the list.

    • Iterate through all possible combinations of strings from the list to form the target string.

    • Use recursion to try different combinations of strings.

    • Check if the current combination forms the target string.

    • Return true if a valid combination is found, otherwise return false.

  • Answered by AI
  • Q2. 

    Break The Board Problem Statement

    Your task is to break a board of given dimensions 'L' by 'W' into 'L' * 'W' smaller squares, ensuring the total cost of breaking is minimized.

    Input:

    The first line con...
  • Ans. 

    The task is to minimize the cost of breaking a board into smaller squares by making horizontal and vertical cuts.

    • Iterate through all possible horizontal and vertical cuts to find the minimum cost

    • Use dynamic programming to optimize the solution by storing intermediate results

    • Calculate the total cost by summing up the costs of all cuts

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

This round was scheduled around 12 pm. It was a virtual round with one interviewer who was a Cure.Fit employee. My resume was scanned and a brief introduction was asked. After that a question was put up which I had to find solution to and code it. In the end, I asked questions regarding the type of projects they work on etc. I was selected for the next round

  • Q1. 

    Balanced Sequence After Replacement

    Given a string of length 'N' containing only the characters: '[', '{', '(', ')', '}', ']'. At certain places, the character 'X' appears in place of any bracket. Your go...

  • Ans. 

    Determine if a valid balanced sequence can be achieved by replacing 'X's with suitable brackets.

    • Iterate through the string and keep track of the count of opening and closing brackets.

    • If at any point the count of closing brackets exceeds the count of opening brackets, return False.

    • If all 'X's can be replaced to form a valid balanced sequence, return True.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

As soon as the HR round got over. I was asked to sit for my next round. It was again a problem solving round along with Data Structure questions in the end. The interviewer was an employee of Cure.Fit and after a brief introduction, I was given a question. After solving it, I was asked questions on Hashmaps, their implementation, time complexities. Finally, I was selected :)

  • Q1. 

    Pair with Given Sum in a Balanced BST Problem Statement

    You are given the ‘root’ of a Balanced Binary Search Tree and an integer ‘target’. Your task is to determine if there exists any pair of nodes such ...

  • Ans. 

    Given a Balanced BST and a target integer, determine if there exists a pair of nodes with sum equal to the target.

    • Traverse the BST in-order to get a sorted array of values.

    • Use two pointers approach to find the pair with sum equal to target.

    • Consider edge cases like negative numbers and duplicates.

    • Time complexity can be optimized to O(n) using a HashSet to store visited nodes.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BangaloreEligibility criteria8 CGPA and students from CSE, IT onlyCurefit interview preparation:Topics to prepare for the interview - Recursion, Dynamic Programming, Trees, Data Structure, Algorithms, Graphs, Binary Search, OOPS, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Do competitive programming and maintain a decent rating across platforms. This will make you comfortable with the coding rounds and thinking under pressure and in a time-bounded manner.
Tip 2 : Practice some company wise questions, especially of Google, Facebook, Amazon, Microsoft from Leetcode 1-2 months before the placement/internship season to get yourself accustomed to good interview type questions. 
Tip 3 : Practice Dynamic Programming using a top-down approach as this not only improves DP but also improves recursion thinking. Recursion in turn help you to solve questions on Trees, graphs, and backtracking.
Tip 4 : Have at least 2 good projects on your resume which is solving some real-life problems. I won't recommend making just clones, rather add more functionalities. Web Development projects are good to start with. 
Tip 5 : Study the core subjects for internships in the following priority manner: OOPS>>OS>=DBMS. Some colleges may have System Design as well. That can be studied in the same manner like OS.
Tip 6 : Get yourself a good mentor to guide yourself.

Application resume tips for other job seekers

Tip 1 : Keep your resume simple and formal. 
Tip 2 : Having a past internship opportunity is a plus.
Tip 3 : Have good projects and mention them only if you know the depth of it.
Tip 4 : List your achievements chronologically and focus on participating in various competitions and getting recognition.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Had to solve 2 easy coding problems. Could be solved in 25 minutes if you are well prepared with DS-Algo.

  • Q1. 

    Job Scheduling Problem Statement

    Given a list of ‘N’ jobs, each associated with a deadline and a profit obtainable if completed by the deadline, schedule the jobs to maximize the total profit. Each job ta...

  • Ans. 

    The job scheduling problem involves maximizing profit by scheduling jobs with deadlines and profits optimally.

    • Sort the jobs in decreasing order of profit.

    • Iterate through the sorted jobs and schedule them based on their deadlines.

    • Keep track of the maximum profit achievable by scheduling jobs within their deadlines.

    • Example: For input Jobs: 'A'(profit=20, deadline=1), 'B'(profit=30, deadline=2), 'C'(profit=40, deadline=2)...

  • Answered by AI
  • Q2. 

    Water Flow Problem Statement

    Given a matrix A with dimensions 'N' x 'M', where each cell represents the height of water in that location, determine the coordinates from which water can flow to both the Pa...

  • Ans. 

    Given a matrix representing water heights, find coordinates where water can flow to both Pacific and Atlantic oceans.

    • Create a function that performs a depth-first search to find coordinates where water can flow to both oceans.

    • Keep track of visited cells and check if a cell can flow to both oceans by comparing its height with neighboring cells.

    • Return the coordinates in lexicographical order as the output.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

Questions on Computer science subjects like OS, DBMS, OOP

  • Q1. What are the different types of memory in operating systems?
  • Ans. 

    Different types of memory in operating systems include RAM, ROM, virtual memory, cache memory, and registers.

    • RAM (Random Access Memory) - volatile memory used for storing data that is actively being used by the CPU

    • ROM (Read-Only Memory) - non-volatile memory that stores firmware and boot-up instructions

    • Virtual Memory - a memory management technique that uses disk space as an extension of RAM

    • Cache Memory - high-speed me...

  • Answered by AI
Round 3 - Video Call 

Round duration - 40 minutes
Round difficulty - Easy

General Discussion on Resume, some in depth questions on a project of interviewer's choice.

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from Delhi Technological University. I applied for the job as SDE - Intern in BangaloreEligibility criteria8.5 CGPACurefit interview preparation:Topics to prepare for the interview - Operating System, DBMS, Data Structures and Algorithms, OOPs, Computer NetworksTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Never leave any topic from any chapter or subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : At least have 4 projects in Resume

Application resume tips for other job seekers

Tip 1 : At least have 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Cult.fit?
Ask anonymously on communities.

Interview questions from similar companies

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 

Java script questions, promise, linked list

Round 3 - Technical 

(1 Question)

  • Q1. System design google calender
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

Initial will be coding test on array , loops

Round 3 - Technical 

(1 Question)

  • Q1. Questions on implementation and languages
Round 4 - One-on-one 

(1 Question)

  • Q1. Regarding implementation of some technical
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked dsa problem. It was a sliding window problem.

Round 2 - Coding Test 

This was taken by the engineering manager. asked couple of oops qns and dsa problem

Round 3 - Aptitude Test 

This was taken by the cofounder. more of a get to know

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Machine coding round
Round 2 - Technical 

(1 Question)

  • Q1. Discussion on react and js
Round 3 - Technical 

(1 Question)

  • Q1. Technical discussion
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Why are you selected in this role?
  • Ans. HR role is my favourite role.In this role one of the greatest role in your company.And my goal is HR.
  • Answered by supportivefruit
Round 2 - Coding Test 



Coding




Hello World



Round 3 - Technical 

(2 Questions)

  • Q1. What do you do after five years?
  • Ans. My self LOKESH.After five years I completed my degree and MCA also completed,improving my skills, searching for job.
  • Answered by supportivefruit
  • Q2. Introduce yourself
  • Ans. First of all thank you for giving me, this wonderful opportunity.My self Lokesh.My pursuing Bachelor of computer science.Iam from PACHIKAPALLAM.Iam son of venkatadri.He works as a farmer.And my Mother is a wonderful home maker. My strength is self confidence,quick learner,and good communication skills etc.I have one brother.My family consists 5 members.My skills front-end web application like HTML,CSS,JAVA SCRIPT, BOOT...
  • Answered by supportivefruit

Interview Preparation Tips

Interview preparation tips for other job seekers - I need this job in your company.And take a good name.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. How do you came to know about fitelo
  • Ans. 

    I discovered Fitelo through a friend's recommendation while researching health and wellness platforms online.

    • A friend who is a fitness enthusiast mentioned Fitelo during a discussion about healthy living.

    • I came across Fitelo while browsing social media, where they shared success stories and tips.

    • I read a blog post about effective weight management strategies that featured Fitelo as a top choice.

  • Answered by AI
  • Q2. What do you expect from yourself after 5 years
  • Ans. 

    In five years, I envision myself as a seasoned Operations Executive, leading teams and driving strategic initiatives for growth.

    • Achieve a leadership role where I can influence company strategy and operations.

    • Develop expertise in process optimization, demonstrated by successful projects that reduce costs by 20%.

    • Mentor junior team members, fostering a culture of continuous improvement and collaboration.

    • Expand my professi...

  • Answered by AI

I applied via Other and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Why you work for us....?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive

Tell us how to improve this page.

Interview Questions from Similar Companies

Fitelo Interview Questions
3.5
 • 39 Interviews
Vestige Interview Questions
4.3
 • 36 Interviews
Traya Health Interview Questions
3.5
 • 25 Interviews
Nutricia Interview Questions
3.5
 • 21 Interviews
Cure foods Interview Questions
3.6
 • 19 Interviews
Mosaic Wellness Interview Questions
3.7
 • 18 Interviews
View all
Center Manager
313 salaries
unlock blur

₹2.4 L/yr - ₹6.2 L/yr

Associate Center Manager
176 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Assistant Manager
59 salaries
unlock blur

₹3 L/yr - ₹9.9 L/yr

Operations Manager
58 salaries
unlock blur

₹2.3 L/yr - ₹8 L/yr

Fitness Trainer
49 salaries
unlock blur

₹2 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Cult.fit with

Forever Living Products

4.2
Compare

Amway India Enterprises

4.1
Compare

Vestige

4.3
Compare

Fitelo

3.5
Compare
write
Share an Interview