i
Cult.fit
Filter interviews by
I applied via Recruitment Consulltant and was interviewed before Apr 2023. There was 1 interview round.
Retention analysis based on tables given, flowed by structure of RCA analysis
I applied via Referral and was interviewed before Apr 2022. There were 3 interview rounds.
Education is the process of acquiring knowledge, skills, values, and attitudes.
Education is not limited to formal schooling but can also be acquired through life experiences and self-study.
It is important for personal and professional growth and development.
Education can lead to better job opportunities and higher earning potential.
Examples of education include attending school, taking online courses, attending worksho...
I would spend a significant amount of time in the company if selected.
I am committed to dedicating my time and efforts to the company.
I understand the importance of being present and available for the role.
I am willing to work extra hours or be flexible with my schedule if required.
I believe in building strong relationships with colleagues and contributing to the company's success.
I am excited about the opportunity and
People management is the process of leading, motivating, and directing individuals or groups towards achieving organizational goals.
It involves recruiting, training, and developing employees.
It also includes setting performance goals, providing feedback, and managing conflicts.
Effective communication, delegation, and decision-making are essential skills for people management.
Examples include managing a team of sales re...
Cultfit is a fitness and wellness company based in India.
Cultfit was founded in 2016 by Mukesh Bansal and Ankit Nagori.
It offers a variety of fitness programs including yoga, strength training, and dance.
Cultfit has over 200 centers across India and has expanded to Dubai and Singapore.
The company also offers a mobile app for users to access workouts and track progress.
Cultfit has partnerships with various companies and
Health is important because it affects every aspect of our lives, from physical to mental well-being.
Good health allows us to enjoy life and pursue our goals
It reduces the risk of chronic diseases and illnesses
It improves cognitive function and productivity
It enhances our social and emotional connections with others
It promotes longevity and a higher quality of life
Yes, I am comfortable with a rotational work culture.
I am adaptable and enjoy new challenges
I believe rotational work can enhance my skills and knowledge
I am open to learning and working in different areas
I can provide examples of successfully adapting to changes in previous roles
I applied via Referral and was interviewed before May 2022. There were 3 interview rounds.
I have worked as a Center Manager at XYZ company for 3 years, where I managed a team of 10 associates and achieved a 20% increase in sales.
Managed a team of 10 associates
Achieved a 20% increase in sales
Implemented new sales strategies
Provided excellent customer service
Trained new associates
I have 5 years of experience in management roles, with a focus on customer service. My short term goal is to excel in the Associate Center Manager position, while my long term goal is to become a Center Manager.
5 years of management experience
Strong focus on customer service
Short term goal: Excel in Associate Center Manager position
Long term goal: Become a Center Manager
I applied via Indeed and was interviewed in May 2021. There were 4 interview rounds.
Cult.fit is a fitness and wellness platform that offers a variety of workout classes, nutrition guidance, and mental wellness programs.
Cult.fit provides access to various fitness classes such as yoga, strength training, and dance.
They offer personalized nutrition plans and guidance to help individuals achieve their health goals.
The platform also focuses on mental wellness and provides meditation and mindfulness program...
I want to join cure.fit because of their holistic approach to fitness and wellness.
cure.fit offers a comprehensive range of fitness and wellness services.
They focus on both physical and mental well-being.
They have a team of experienced professionals and trainers.
cure.fit promotes a healthy lifestyle through their various programs and classes.
They have a strong community and support system.
cure.fit values continuous lea...
I will listen to their concerns, empathize with them, and offer a solution to their problem.
Remain calm and professional
Listen actively to their concerns
Empathize with their situation
Offer a solution to their problem
Apologize for any inconvenience caused
Follow up with the customer to ensure their satisfaction
I have strong analytical skills.
I am able to gather and analyze data to identify patterns and trends.
I can think critically and solve complex problems.
I have experience using analytical tools and software.
I am detail-oriented and can pay attention to small details that others may overlook.
I can effectively communicate my findings and recommendations based on analysis.
Cult.fit interview questions for popular designations
I was interviewed before Aug 2022.
I would offer personalized fitness and nutrition plans to help the customer achieve their weight loss goals.
Listen to the customer's goals and concerns
Offer personalized fitness and nutrition plans
Provide ongoing support and motivation
Track progress and make adjustments as needed
Get interview-ready with Top Cult.fit Interview Questions
I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.
I applied via Recruitment Consulltant and was interviewed in Feb 2022. There was 1 interview round.
I was interviewed in Nov 2020.
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.
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...
I firstly sorted the intervals based on their second values and then I considered each interval if it overlaps with the previous one or not.
Time Complexity : O(nlogn)
Space complexity : O(n)
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-...
Firstly I tried recursively to fix my position to every place and check if I am remaining till Last to survive. But the Interviewer asked me to do better, then I thought of this question as a circular Linked List where in each step length decreases by one. Then I derived Mathematical formula for the position to survive till last with :
Time Complexity : O(n)
Space Complexity : O(n)
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.
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.
Firstly I tried brute force considering all possible left and right pointer and checking what all rectangle areas we can get and taking maximumm from them.
But the interviewer wanted better time complexity than O(n*n)
So I used two arrays Left and right and kept check of next shorter rectangle index to the present one.
This had Time Complexity of O(n) and Space Complexity : O(n)
The interviewer was pleased with this approa
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.
The first line ...
I made three functions as the order given in Problem statement and did the Traversals in the same way making sure to cover all the edge cases .
This is similar to Preorder/Postorder/Inorder type problems.
Time Complexity : O(n)
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.
Given an array of numbers, the task is to find the maximum sum of any contiguous subarray of the array.
The first line of input contains the size of the arr...
First I tried brute force approach with taking sum between all left top corner and bottom right corners rectangle formed .
This had time complexity of O(n^4).
Then I brought down the time complexity to O(n^3) by using Kadane's Algorithm and coded it on Docs Shared.
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 ...
Firstly I gave the solution of Linear Search but he asked to implement binary search with all corner cases .
So I implemented binary search for finding the number of rotations array has went through.
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.
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
I applied via Walk-in and was interviewed in Apr 2021. There were 4 interview rounds.
I applied via Referral and was interviewed in May 2021. There were 3 interview rounds.
Top trending discussions
The duration of Cult.fit interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 71 interviews
Interview experience
based on 805 reviews
Rating in categories
Center Manager
261
salaries
| ₹2.4 L/yr - ₹6 L/yr |
Associate Center Manager
179
salaries
| ₹2.4 L/yr - ₹5 L/yr |
Assistant Manager
61
salaries
| ₹3 L/yr - ₹9.8 L/yr |
Operations Manager
56
salaries
| ₹2.5 L/yr - ₹7.1 L/yr |
Trainer
44
salaries
| ₹2.4 L/yr - ₹6 L/yr |
Growfit
HealthifyMe
Tata 1mg
Practo