i
Cult.fit
Filter interviews by
Fitness brands are competing by offering unique experiences, personalized training, and innovative technology.
Brands are creating unique experiences to differentiate themselves from competitors.
Personalized training programs are becoming more popular to cater to individual needs.
Innovative technology such as wearables and fitness apps are being integrated into workouts.
Brands are also focusing on community buildin...
People management involves leading, motivating, and developing a team of individuals to achieve organizational goals.
Effective communication and delegation
Providing feedback and recognition
Creating a positive work environment
Identifying and addressing performance issues
Developing and implementing training programs
Encouraging teamwork and collaboration
Managing conflicts and resolving disputes
Setting goals and expec...
I approach each project by conducting thorough research, understanding the target audience, and crafting compelling and creative copy.
Research the brand, product, or service to understand its unique selling points
Identify the target audience and tailor the messaging to resonate with them
Craft compelling and creative copy that communicates the key message effectively
Ensure consistency in tone and voice throughout t...
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...
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.
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.
The first line cont...
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
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...
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.
Given a string of length 'N' containing only the characters: '[', '{', '(', ')', '}', ']'. At certain places, the character 'X' appears in place of any bracket. Your goa...
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.
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...
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.
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...
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...
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...
I applied via LinkedIn and was interviewed in Dec 2023. There were 3 interview rounds.
Assignment on product catalog copy rephrasing and product description creation
I approach each project by conducting thorough research, understanding the target audience, and crafting compelling and creative copy.
Research the brand, product, or service to understand its unique selling points
Identify the target audience and tailor the messaging to resonate with them
Craft compelling and creative copy that communicates the key message effectively
Ensure consistency in tone and voice throughout the co...
I am a passionate trainer with a background in education and a commitment to fostering learning and development in others.
Over 5 years of experience in training and development, focusing on adult learning principles.
Designed and delivered workshops on effective communication skills, resulting in a 30% improvement in participant feedback.
Skilled in using various training tools and technologies, including e-learning plat...
I motivate clients by setting clear goals, providing support, and celebrating their achievements to foster a positive training environment.
Set SMART goals: Specific, Measurable, Achievable, Relevant, Time-bound. For example, helping a client lose 5 pounds in a month.
Provide regular feedback: Offer constructive criticism and praise to help clients understand their progress.
Create a supportive environment: Encourage clie...
I applied via Indeed and was interviewed before Apr 2023. There was 1 interview round.
Dynamic professional with a strong background in management, customer service, and team leadership, eager to drive success as an Associate Center Manager.
Over 5 years of experience in management roles, leading teams to exceed performance targets.
Successfully implemented a new customer service training program that improved satisfaction scores by 20%.
Skilled in data analysis, using metrics to inform decision-making and ...
I applied via Campus Placement and was interviewed in Oct 2022. There were 4 interview rounds.
2 coding questions to be solved in 90 min. Medium difficulty
Find lexicographically next Greater Permutation.
Second question was a sorting technique question. Given an array the basic idea of the problem was to find the minimum difference between the number and the next smaller number on the right side of the array
I applied via Naukri.com and was interviewed before Mar 2022. There were 3 interview rounds.
Fitness brands are competing by offering unique experiences, personalized training, and innovative technology.
Brands are creating unique experiences to differentiate themselves from competitors.
Personalized training programs are becoming more popular to cater to individual needs.
Innovative technology such as wearables and fitness apps are being integrated into workouts.
Brands are also focusing on community building and...
I applied via Walk-in and was interviewed before Oct 2022. There were 2 interview rounds.
I am leaving my previous company to seek new challenges and opportunities for growth in a dynamic environment.
I have gained valuable experience, but I feel ready for a new challenge that aligns with my career goals.
My previous role had limited opportunities for advancement, and I am eager to take on more responsibility.
I am looking for a company culture that fosters innovation and collaboration, which I believe your or...
I applied via Recruitment Consulltant and was interviewed in Feb 2022. There was 1 interview round.
I appeared for an interview 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 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 7 interview experiences
Difficulty level
Duration
based on 883 reviews
Rating in categories
Center Manager
293
salaries
| ₹2.4 L/yr - ₹6 L/yr |
Associate Center Manager
179
salaries
| ₹2.4 L/yr - ₹5.2 L/yr |
Assistant Manager
59
salaries
| ₹3 L/yr - ₹9.9 L/yr |
Operations Manager
58
salaries
| ₹2.3 L/yr - ₹8 L/yr |
Fitness Trainer
49
salaries
| ₹2 L/yr - ₹5.8 L/yr |
Forever Living Products
Amway India Enterprises
Vestige
Fitelo