Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cutshort Team. If you also belong to the team, you can get access from here

Cutshort Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cutshort Interview Questions and Answers

Updated 23 Apr 2024

Cutshort Interview Experiences

Popular Designations

4 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Cutshort and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Recursive search in Javascript Object.
  • Ans. 

    Recursive search in JavaScript object

    • Use a recursive function to search through nested objects

    • Check if current property is an object, if so call the function recursively

    • Return the value if found, otherwise return null

  • Answered by AI
  • Q2. Javascript closure related question.
  • Q3. Timeout related question.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good grasp on JS fundamentals.

Skills evaluated in this interview

Front end Engineer Interview Questions asked at other Companies

Q1. Pair Sum Problem Statement You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'. Note: Each pair should be ordered such that... read more
View answer (1)

I applied via Company Website and was interviewed in Sep 2022. There were 4 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 - Assignment 

UI given, need to make the UI in react with scalability in mind.

Round 3 - Technical 

(3 Questions)

  • Q1. The technical round was around 1.5 hr and covered javascript and react in depth.
  • Q2. Javascirpt related questions - code output, js working questions, etc
  • Q3. React related questions - optimizations, error handling, scalability etc
Round 4 - HR 

(1 Question)

  • Q1. Simple HR round to get to know about you.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process is straight forward and indepth knowledge about the skills is required and correct mindset and company values.

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

I applied via Company Website and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Assignment 

Simple assignment to test your UI development skills

Round 2 - Technical 

(1 Question)

  • Q1. Simple questions regarding JS
Round 3 - One-on-one 

(1 Question)

  • Q1. Cultural fit round to see how you fit for the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep you fundamentals of javascript clear.

Front end Engineer Interview Questions asked at other Companies

Q1. Pair Sum Problem Statement You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'. Note: Each pair should be ordered such that... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Cutshort and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

Create splitwise algorithm.

Member Technical Staff Interview Questions asked at other Companies

Q1. Next Smallest Palindrome Problem Statement Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'. Explanation: You are given a number in string format, and your task is to determine the small... read more
View answer (1)

Cutshort interview questions for popular designations

 Front end Engineer

 (2)

 Member Technical Staff

 (1)

 Front end Developer

 (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussion on sales, areas and target
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion about product, target etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a good organization
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 - Aptitude Test 

It just like like a screen test they will ask you questions based on your cv

Round 3 - Aptitude Test 

It will hardly take 30minutes to complete the test.

Round 4 - Coding Test 

It will take hardly 30 minutes to complete coding test.

Round 5 - Technical 

(2 Questions)

  • Q1. A technical person will take your interview it will about 20 to 30minutes
  • Q2. What is difference between list and tuple? They will ask to code for some questions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Happy learning . Flocareer it's a good company with good people around .
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why are you the right fit for this role?

Senior Associate Interview Questions & Answers

Elevate user image Shital Santosh Badgujar

posted on 13 May 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Assignment 

Contracts review and abstraction

Round 2 - One-on-one 

(1 Question)

  • Q1. Contracts and essential elements
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

DSA questions asked in an interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 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 - One-on-one 

(3 Questions)

  • Q1. How python dictionary is implemented internally ?
  • Ans. 

    Python dictionary is implemented using hash tables.

    • Python dictionary is a collection of key-value pairs.

    • The keys in a dictionary must be unique and immutable.

    • The values in a dictionary can be of any data type.

    • Python dictionary is implemented using hash tables.

    • Hash tables provide constant time complexity for insertion, deletion and retrieval of elements.

    • The hash function used in Python dictionary is based on the key's h...

  • Answered by AI
  • Q2. What is heap sort
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • It divides the input into a sorted and an unsorted region.

    • It repeatedly extracts the maximum element from the unsorted region and inserts it into the sorted region.

    • It has a time complexity of O(n log n) and is not stable.

    • Example: [8, 5, 3, 1, 9, 6, 0, 7, 4, 2] -> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

  • Answered by AI
  • Q3. Coding question to sort array based on a custom filter

Skills evaluated in this interview

Cutshort Interview FAQs

How many rounds are there in Cutshort interview?
Cutshort interview process usually has 2-3 rounds. The most common rounds in the Cutshort interview process are Technical, Assignment and One-on-one Round.
How to prepare for Cutshort 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 Cutshort. The most common topics and skills that interviewers at Cutshort expect are Angularjs, CSS, HTML, Javascript and React.Js.
What are the top questions asked in Cutshort interview?

Some of the top questions asked at the Cutshort interview -

  1. Recursive search in Javascript Obje...read more
  2. The technical round was around 1.5 hr and covered javascript and react in dep...read more
  3. Javascirpt related questions - code output, js working questions, ...read more

Tell us how to improve this page.

Cutshort Interview Process

based on 4 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Naukri Interview Questions
4.0
 • 185 Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
Quikr Interview Questions
3.7
 • 31 Interviews
Indeed Interview Questions
4.0
 • 28 Interviews
Foundit Interview Questions
3.4
 • 26 Interviews
InsanelyGood Interview Questions
4.1
 • 19 Interviews
Vegrow Interview Questions
4.0
 • 17 Interviews
Glassdoor Interview Questions
3.8
 • 8 Interviews
iimjobs.com Interview Questions
3.8
 • 2 Interviews
View all

Cutshort Reviews and Ratings

based on 19 reviews

4.2/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

4.4

Salary

4.0

Job security

4.1

Company culture

4.5

Promotions

4.3

Work satisfaction

Explore 19 Reviews and Ratings
Full Stack Software Developer
5 salaries
unlock blur

₹6.2 L/yr - ₹6.2 L/yr

Sales Evangelist
5 salaries
unlock blur

₹5.4 L/yr - ₹10.5 L/yr

Software Engineer
4 salaries
unlock blur

₹10 L/yr - ₹21 L/yr

Program Manager
4 salaries
unlock blur

₹5 L/yr - ₹11.3 L/yr

SEO Specialist
4 salaries
unlock blur

₹9.5 L/yr - ₹11 L/yr

Explore more salaries
Compare Cutshort with

InsanelyGood

4.1
Compare

Vegrow

4.0
Compare

Pepper Content

2.5
Compare

Elevate

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