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)
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
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA Medium difficulty question Schema Design Low level design Amazon reviews page
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

I applied via Other and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Arrange odd and even numbers in an array , so that all even are placed on RHS and odd on LHS
  • Ans. 

    Arrange odd and even numbers in an array, even on RHS and odd on LHS.

    • Create two pointers, one at the start and one at the end of the array.

    • Swap the elements at the pointers if they are in the wrong position.

    • Continue swapping until the pointers meet in the middle.

  • Answered by AI
  • Q2. Evaluate BODMAS expression
  • Ans. 

    BODMAS is a mathematical rule used to evaluate expressions with multiple operators.

    • BODMAS stands for Brackets, Orders, Division, Multiplication, Addition, and Subtraction.

    • It is used to determine the order in which operations are performed in an expression.

    • Brackets are evaluated first, followed by orders (exponents and roots), then division and multiplication, and finally addition and subtraction.

    • For example, in the exp...

  • Answered by AI
  • Q3. Infix and Post fix expression
  • Q4. Android questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DS Algo, and Android core fundamentals.

Skills evaluated in this interview

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

Tell us how to improve this page.

CureSkin Interview Process

based on 8 interviews

Interview experience

4.3
  
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
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 74 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 74 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