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 Interview Questions, Process, and Tips

Updated 19 Feb 2025

Top Cult.fit Interview Questions and Answers

View all 43 questions

Cult.fit Interview Experiences

Popular Designations

66 interviews found

Personal trainner job Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2021

I applied via Campus Placement and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me function of gastrocnemius muscel?
  • Ans. Planter flexion and assist in knee flexion
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions Must be relevant to personal trainner course

I was interviewed 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. Brute Force

    In this solution, we will try to generate all prefixes and If we want a prefix present in the string then we will recur for the remaining string. 

    Steps:

    1. Store all strings of A on the hash map.
    2. Declare and call function wordBreakHelper which will take a single argument string.

    wordBreakHelper(s):

    1. Base case if the length of the string is 0 then return true.
    2. Run a loop from i = 1 to the length of the string:
      • If ...
  • Answered Anonymously
  • 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. Greedy Approach

    This problem can be solved using the greedy approach. By greedy, we mean that we simply start cutting the board along every horizontal and vertical line. But this cutting needs to be in a specific manner. Let’s see how we can do this.

     

    • Start by making an integer variable minCost and initialize it to 0.
    • Now we talked about cutting the board in a specific manner. This specific manner will involve minim...
  • Answered Anonymously
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. Using Recursion

    The idea is to use stack data structure and is pretty much similar to the algorithm where we check if the expression is balanced or not. 

     

    We mainly have 3 conditions to fulfil i.e. 

    1. Opening bracket.
    2. Closing bracket.
    3. Character ‘X’.
       

    Algorithm:

    • Initialise a stack, say s.
    • We traverse the whole string such as,
    1. If all the elements of the string are traversed, return true if the stack is empty. Ot...
  • Answered Anonymously
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. Checking For Every Node

    The idea is to fix one node and try to find, if there exists, a node whose sum along with the fixed node is equal to the given ‘target’.

     

    The steps are as follows:

    • We will use a helper function ‘findTargetPairHelper’ to fix each node.
    • ‘findTargetPairHelper’ takes ‘mainRoot,’ ‘curRoot’ and ‘target’ as input parameters, ‘mainRoot’ is the root of the given tree, ‘curRoot’ is the node we are fixing...
  • Answered Anonymously

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

Top Cult.fit Software Developer Intern Interview Questions and Answers

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (4)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Yoga Instructor Interview Questions & Answers

user image Neelam Singh

posted on 24 Mar 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2022. There were 2 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 tips
Round 2 - HR 

(2 Questions)

  • Q1. Regarding your qualifications
  • Q2. Why you want to join

Interview Preparation Tips

Interview preparation tips for other job seekers - They mostly look for fresher with good communication skil

Yoga Instructor Interview Questions asked at other Companies

Q1. How Yoga is help for weight loss?
View answer (2)

I applied via Campus Placement and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Past background and experience
  • Q2. About your self past qualification

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and be presentable answer every question with confidence and you will easily crack the interview

Associate Center Manager Interview Questions asked at other Companies

Q1. Round 1: how will you deal with angry customer?
View answer (3)

Cult.fit interview questions for popular designations

 Center Manager

 (9)

 Associate Center Manager

 (7)

 Software Developer Intern

 (3)

 Associate Manager

 (2)

 Trainer

 (2)

  Chef DE Partie

 (1)

 Analyst

 (1)

 Assistant Centre Manager

 (1)

Interview Questionnaire 

2 Questions

  • Q1. Food rileted, food temperature, what is the healthy food, my experience, department, etc
  • Q2. Cooking food temperature 75 above, balance food is healthy food, my experience 6year, Indian, past degignation cdp

Chef DE Partie Interview Questions asked at other Companies

Q1. Types of fish cuts of chicken 3 beef dishes 2 fish dishes etc
View answer (5)

Get interview-ready with Top Cult.fit Interview Questions

I applied via Referral and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What do you know about cult
Round 2 - One-on-one 

(1 Question)

  • Q1. What do you understand by people management.
  • Ans. 

    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 expectatio...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the JD you will easily pass cult acm job interview

Associate Manager Interview Questions asked at other Companies

Q1. How will you calculate tension on the sheet which is being given OFF, by Pay off reel ?
View answer (5)

Jobs at Cult.fit

View all

Commis Chef 1 Interview Questions & Answers

user image Anonymous

posted on 28 Jan 2021

I applied via Referral and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is HACCP and ask me more food item.
  • Q2. I have been told what is HACCP, and food items and also food taril.

Interview Preparation Tips

Interview preparation tips for other job seekers - Feeling good

Commis Chef 1 Interview Questions asked at other Companies

Q1. What is the typical length of a chef's knife?
View answer (1)

I applied via Referral and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. What do think about people management. What if client is getting angry what should you do

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the Jd and read about company you will easily clear the interview they just check how confident you are and your communication skills

Associate Center Manager Interview Questions asked at other Companies

Q1. Round 1: how will you deal with angry customer?
View answer (3)

Supervisor Opration logistics management.logestic inventory management Interview Questions & Answers

user image Anonymous

posted on 20 May 2020

Interview Questionnaire 

4 Questions

  • Q1. What is the operation management
  • Q2. What is the management.logestic
  • Q3. What is your self
  • Q4. What is your work

I applied via Referral and was interviewed in Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How can you handle pressure ?? What r the scenarios in Center where one members get hurt during a boxing session how will u handle that??
  • Q2. Tell me something abt pressure ?? And what is the outcome when your in pressure ?
  • Q3. 1) be confident express what you feel never tell your weakness your like your short tempered etc 2) This question is very important in operation round so tell “ we’ll has a center manager it’s my duty to...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Tell what you know
Be prepared with analytical question with logical questions
Simple questions will be asked answer to the point don’t try to expand your conversation

Center Manager Interview Questions asked at other Companies

Q1. If you are the centre manager,Your dialysis technician or other staff Takes money from patient (Pradhanmantri Homodialysis Yojna) without any reason then what action will you take.
View answer (1)

Cult.fit Interview FAQs

How many rounds are there in Cult.fit interview?
Cult.fit interview process usually has 1-2 rounds. The most common rounds in the Cult.fit interview process are One-on-one Round, Resume Shortlist and HR.
How to prepare for Cult.fit interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cult.fit. The most common topics and skills that interviewers at Cult.fit expect are Communication Skills, Sales, Nutrition, Gym and Operations.
What are the top questions asked in Cult.fit interview?

Some of the top questions asked at the Cult.fit interview -

  1. Round 1: how will you deal with angry custome...read more
  2. What are first prime components of fitn...read more
  3. What is the difference between power and strengt...read more
How long is the Cult.fit interview process?

The duration of Cult.fit interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Cult.fit Interview Process

based on 71 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

Tata 1mg Interview Questions
3.6
 • 146 Interviews
PharmEasy Interview Questions
3.7
 • 80 Interviews
MedPlus Interview Questions
3.6
 • 79 Interviews
Practo Interview Questions
3.2
 • 74 Interviews
HealthifyMe Interview Questions
3.0
 • 46 Interviews
Healthians Interview Questions
3.5
 • 44 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
Portea Medical Interview Questions
4.3
 • 27 Interviews
View all

Cult.fit Reviews and Ratings

based on 805 reviews

3.6/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.5

Salary

3.1

Job security

3.5

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 805 Reviews and Ratings
Yoga Instructor

Hyderabad / Secunderabad,

Chennai

+1

1-2 Yrs

Not Disclosed

Dance Instructor

Hyderabad / Secunderabad,

Bangalore / Bengaluru

+1

0-1 Yrs

Not Disclosed

Copywriter

Bangalore / Bengaluru

1-4 Yrs

₹ 5-7 LPA

Explore more jobs
Center Manager
261 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Associate Center Manager
179 salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

Assistant Manager
61 salaries
unlock blur

₹3 L/yr - ₹9.8 L/yr

Operations Manager
56 salaries
unlock blur

₹2.5 L/yr - ₹7.1 L/yr

Trainer
44 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Explore more salaries
Compare Cult.fit with

Growfit

4.7
Compare

HealthifyMe

3.0
Compare

Tata 1mg

3.6
Compare

Practo

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