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, Process, and Tips for Freshers

Updated 20 Sep 2021

Top Cult.fit Software Developer Intern Interview Questions and Answers for Freshers

  • 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 i ...read more
  • Q2. Balanced Sequence After Replacement Given a string of length 'N' containing only the characters: '[', '{', '(', ')', '}', ']'. At certain places, the character 'X' appea ...read more
  • Q3. 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 ...read more
View all 13 questions

Cult.fit Software Developer Intern Interview Experiences for Freshers

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

Software Developer Intern Interview Questions Asked at Other Companies for Fresher

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

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

Interview questions from similar companies

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
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
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:
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 - 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

Round 1 - Aptitude Test 

Logical

Round 2 - Case Study 

Difficult

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep at it. You never know when luck shines.

I applied via Recruitment Consultant and was interviewed in May 2019. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Basic questions inqsr operations like temperature, danger zone, situation handling
  • Q2. How do u run a great operations
  • Q3. Why you want to look for a job change
  • Q4. Danger zone temperature

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident to handle the questions that are asked by interviewer

Tell us how to improve this page.

Interview Questions from Similar Companies

Vestige Interview Questions
4.3
 • 34 Interviews
Fitelo Interview Questions
3.6
 • 33 Interviews
Cure foods Interview Questions
3.6
 • 19 Interviews
Nutricia Interview Questions
3.6
 • 19 Interviews
Mosaic Wellness Interview Questions
3.8
 • 16 Interviews
View all
Center Manager
304 salaries
unlock blur

₹2.4 L/yr - ₹5.8 L/yr

Associate Center Manager
183 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Assistant Manager
61 salaries
unlock blur

₹3 L/yr - ₹9.8 L/yr

Operations Manager
55 salaries
unlock blur

₹2.3 L/yr - ₹7.1 L/yr

Fitness Trainer
47 salaries
unlock blur

₹2 L/yr - ₹5.6 L/yr

Explore more salaries
Compare Cult.fit with

Forever Living Products

4.3
Compare

Amway India Enterprises

4.1
Compare

Vestige

4.3
Compare

Fitelo

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