i
Cult.fit
Filter interviews by
I applied via Approached by Company and was interviewed in Jul 2022. There were 3 interview rounds.
About diabetes reversal
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
Cult.fit interview questions for popular designations
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.
Get interview-ready with Top Cult.fit Interview Questions
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
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...
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.
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-...
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
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.
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 ...
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 ...
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
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...
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...
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 ...
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.
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.
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 72 interviews
Interview experience
based on 807 reviews
Rating in categories
Center Manager
261
salaries
| ₹0 L/yr - ₹0 L/yr |
Associate Center Manager
179
salaries
| ₹0 L/yr - ₹0 L/yr |
Assistant Manager
61
salaries
| ₹0 L/yr - ₹0 L/yr |
Operations Manager
56
salaries
| ₹0 L/yr - ₹0 L/yr |
Trainer
44
salaries
| ₹0 L/yr - ₹0 L/yr |
Growfit
HealthifyMe
Tata 1mg
Practo