Upload Button Icon Add office photos

Filter interviews by

CureSkin Interview Questions and Answers

Updated 24 Oct 2024

CureSkin Interview Experiences

Popular Designations

6 interviews found

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Android Questions
  • Q2. Count pretty number(ending with 2, 3, 7) With in the range of x to y.
  • Ans. 

    Count pretty numbers ending with 2, 3, or 7 within a given range.

    • Iterate through the range from x to y and check if each number ends with 2, 3, or 7.

    • Increment a counter for each pretty number found.

    • Return the total count of pretty numbers within the range.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just don't waste your time.

Senior Android Developer Interview Questions asked at other Companies

Q1. Binary Array Sorting Problem Statement You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting. Input: The first line contains an integer ‘T’ denoti... read more
View answer (1)

Sopra Steria

Rated 4 for Job Security by our employees on AmbitionBox

Secure your future with a company that values your job stability.

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Valid Parentheses
  • Q2. Node .js Questions
  • Q3. String and Array Question
  • Q4. Basic Database questions (MongoDB, SQL)
  • Q5. Rest API Questions

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)

Project Manager Interview Questions & Answers

user image Michael Beatty

posted on 24 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Describe my overall experience
  • Ans. 

    I have over 10 years of experience in project management across various industries.

    • Managed cross-functional teams to successfully deliver projects on time and within budget

    • Implemented project management best practices to improve efficiency and productivity

    • Led the development and execution of project plans, schedules, and budgets

    • Communicated effectively with stakeholders to ensure alignment and transparency

    • Utilized proj...

  • Answered by AI
  • Q2. Talk about process set in place to improve performance
  • Ans. 

    Implemented regular performance reviews, training programs, and feedback mechanisms to continuously improve team performance.

    • Conduct regular performance reviews to identify strengths and areas for improvement

    • Implement training programs to enhance skills and knowledge

    • Establish feedback mechanisms for continuous improvement

    • Set clear performance goals and expectations

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and straightforward.

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)

Dermatologist Interview Questions & Answers

user image Anonymous

posted on 25 Apr 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Common skin and hair problems

Dermatologist Interview Questions asked at other Companies

Q1. Common skin and hair problems
Add answer

CureSkin interview questions for popular designations

 Backend Developer

 (2)

 Quality Head

 (1)

 Project Manager

 (1)

 Senior Android Developer

 (1)

 Dermatologist

 (1)

Quality Head Interview Questions & Answers

user image Dinesh Kale

posted on 27 Apr 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Work purpose was defined properly

Quality Head Interview Questions asked at other Companies

Q1. What is the difference between ts16949 and iatf 16949
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. It was a DSA based question

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)

Interview questions from similar companies

Round 1 - Aptitude Test 

MCQs and 1 coding question

Round 2 - Technical 

(1 Question)

  • Q1. Delete one child nodes,
  • Ans. 

    To delete one child node, we need to identify the parent node and remove the child node from its list of children.

    • Identify the parent node of the child node to be deleted

    • Remove the child node from the parent node's list of children

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Project and internship discussion And one question discussion on how data is stored in db
Round 4 - HR 

(1 Question)

  • Q1. Nothing nothing nothing nothing

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck _-----------------_____

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

It was on-campus placement interview.
Two rounds of interview were there and both were of DSA (DP and sorting algo).

Interview Preparation Tips

Topics to prepare for Tata 1mg Backend Developer interview:
  • DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA Medium difficulty question Schema Design Low level design Amazon reviews page

Software Engineer Interview Questions & Answers

Medlife user image nerella saikrishna

posted on 9 Jan 2016

Interview Questionnaire 

12 Questions

  • Q1. Insert a node in a Linked List, if a pointer to a node(it's not a head pointer) of Linked List is given.
  • Q2. What is the Time Complexity of Binary Search and it's derivation
  • Ans. 

    Binary Search has a time complexity of O(log n) and is derived from dividing the search space in half at each step.

    • Binary Search is a search algorithm that works on sorted arrays.

    • It starts by comparing the target value to the middle element of the array.

    • If the target value is smaller, the search continues on the lower half of the array.

    • If the target value is larger, the search continues on the upper half of the array.

    • T...

  • Answered by AI
  • Q3. Write code for QuickSort
  • Ans. 

    QuickSort is a sorting algorithm that uses divide and conquer approach.

    • Choose a pivot element from the array

    • Partition the array into two sub-arrays, one with elements less than the pivot and one with elements greater than the pivot

    • Recursively apply the above steps to the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
  • Q4. Write code for Fibonacci Series using Recursion, Iteration and Dynamic Programming
  • Ans. 

    Code for Fibonacci Series using Recursion, Iteration and Dynamic Programming

    • Recursion: Define a function that calls itself with the previous two numbers in the series as arguments

    • Iteration: Use a loop to calculate the series by adding the previous two numbers in each iteration

    • Dynamic Programming: Store the previous two numbers in variables and use them to calculate the next number in the series

  • Answered by AI
  • Q5. How to implement an operation with Stacks which will be similar to Queue
  • Ans. 

    Implementing a Queue using Stacks

    • Use two stacks to implement a queue

    • Push elements onto the first stack

    • When dequeuing, pop all elements from the first stack and push onto the second stack

    • Pop the top element from the second stack to dequeue

    • If the second stack is empty, pop all elements from the first stack and push onto the second stack

  • Answered by AI
  • Q6. Write code for MergeSort
  • Ans. 

    MergeSort is a divide and conquer algorithm that sorts an array of strings.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q7. 2 types of detective ball puzzles
  • Q8. 25 Horses, 5 Tracks, 3 Fastest Puzzle
  • Q9. How the letters of a text are determined(Basically about OCR)
  • Q10. Write code for Insertion Sort and Selection Sort and find their time complexities and also the cases where their usage is efficient
  • Q11. Explain about Counting Sort
  • Ans. 

    Counting Sort is a sorting algorithm that sorts elements by counting the number of occurrences of each unique element.

    • Count the occurrences of each element in the array

    • Calculate the cumulative sum of the counts

    • Place each element in the sorted array based on its count and cumulative sum

    • Time complexity is O(n+k) where n is the number of elements and k is the range of input

    • Example: Sort an array of strings based on their

  • Answered by AI
  • Q12. When we type a part of a word in chrome, how is it able to show all the types of words, which are consisted of that part
  • Ans. 

    Chrome uses an algorithm to predict and suggest words based on user input.

    • Chrome's algorithm uses a combination of user history, bookmarks, and popular searches to predict and suggest words.

    • The algorithm also takes into account the frequency and recency of the user's input.

    • Chrome's suggestion feature is powered by Google's Autocomplete API, which uses machine learning to predict and suggest words.

    • The suggestions are di...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: First Question, at the start I was not able to answer and he gave me an hint(He asked me the insertion in an array). So, I got the idea for the insertion in Linked List and was able to answer it.
Remaining questions, I was able to answer confidently.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I was able to answer all the questions confidently, since I know the answers for them, But the last question was out of my scope and I explained based on my intuition and knowledge.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I have given the answers for 1&2 questions with clear explanation. And the third question is again out of my scope and I explained this also based intuition.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

General Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skill Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skills: Logical Puzzles, Algorithms And DataStructures
College Name: IIT Madras
Motivation: 1. Primary Reason: Passionate about Programming and Problem solving.
2. The profile is software Engineer.
3. You can see your idea, having an impact on the society which is possible with this type of company.
4. And a good package.
Funny Moments: Nothing Really...

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

CureSkin Interview FAQs

How many rounds are there in CureSkin interview?
CureSkin interview process usually has 1 rounds. The most common rounds in the CureSkin interview process are Technical and One-on-one Round.
How to prepare for CureSkin 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 CureSkin. The most common topics and skills that interviewers at CureSkin expect are Campaign Management, Digital Marketing and Marketing.
What are the top questions asked in CureSkin interview?

Some of the top questions asked at the CureSkin interview -

  1. count pretty number(ending with 2, 3, 7) With in the range of x to...read more
  2. Talk about process set in place to improve performa...read more
  3. Common skin and hair probl...read more

Recently Viewed

SALARIES

Kanan International

No Salaries

COMPANY BENEFITS

Kanan International

No Benefits

SALARIES

NIIT

REVIEWS

Kanan International

No Reviews

COMPANY BENEFITS

Unique Enterprises

No Benefits

SALARIES

Kapiva Ayurveda

No Salaries

COMPANY BENEFITS

Kapiva Ayurveda

No Benefits

JOBS

Kanan International

No Jobs

PHOTOS

Kanan International

No Photos

PHOTOS

Unique Enterprises

No Photos

Tell us how to improve this page.

CureSkin Interview Process

based on 8 interviews

Interview experience

4.3
  
Good
View more

HCLTech

Find your spark at a global tech company that values your every skill

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
Netmeds.com Interview Questions
3.6
 • 42 Interviews
MediBuddy Interview Questions
3.8
 • 31 Interviews
Portea Medical Interview Questions
4.3
 • 28 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
HealthKart Interview Questions
4.0
 • 25 Interviews
Lybrate Interview Questions
3.5
 • 5 Interviews
View all

CureSkin Reviews and Ratings

based on 75 reviews

3.6/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.4

Salary

3.4

Job security

3.4

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 75 Reviews and Ratings
Customer Success Specialist
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Online Reputation Management Executive
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Support Executive
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Care Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CureSkin with

Tata 1mg

3.6
Compare

Netmeds.com

3.6
Compare

Practo

3.2
Compare

PharmEasy

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