Upload Button Icon Add office photos

Filter interviews by

Pharmaace Analytics Senior Consultant Interview Questions and Answers

Updated 21 Oct 2024

Pharmaace Analytics Senior Consultant Interview Experiences

1 interview found

Senior Consultant Interview Questions & Answers

user image Rahul Udhwani

posted on 21 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Cumulative Sum in SQL
  • Ans. 

    Cumulative sum in SQL is a running total of a column's values.

    • Use the SUM() function with the OVER() clause to calculate the cumulative sum.

    • The OVER() clause specifies the partitioning and ordering of rows for the calculation.

    • Example: SELECT column_name, SUM(column_name) OVER (ORDER BY column_name) AS cumulative_sum FROM table_name;

  • Answered by AI
  • Q2. Case When in SQL

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. How to get the last row of any SAS dataset
  • Ans. 

    Use the OBS option in a SET statement to read the last observation of a SAS dataset.

    • Use the OBS option in a SET statement followed by the keyword 'END' to read the last observation of a SAS dataset.

    • For example, to read the last observation of a dataset named 'mydata', use the following code: data lastobs; set mydata(obs=last end=last); run;

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Technical round about business analyst
Round 2 - Case Study 

Business case study about hyper local delivery model. Cash management with delivery boys was at crux

Round 3 - HR 

(1 Question)

  • Q1. Normal HR round
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2023. 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 

(2 Questions)

  • Q1. What you did in primary nd secondary research in your previous job
  • Q2. How yor fits into this position

Interview Preparation Tips

Interview preparation tips for other job seekers - Have clear idea about your work. Do not fake, interviewers can find the loophooe.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. KPI's for CLI and CLD
  • Ans. 

    Key Performance Indicators (KPIs) for Customer Lifetime Income (CLI) and Customer Lifetime Duration (CLD)

    • CLI KPIs could include average revenue per customer, customer retention rate, customer lifetime value

    • CLD KPIs could include average customer lifespan, customer churn rate, customer engagement metrics

    • Tracking CLI and CLD KPIs can help measure the financial impact and longevity of customer relationships

  • Answered by AI
  • Q2. Credit score variables and impact on strategy
  • Ans. 

    Credit score variables impact strategy by influencing lending decisions and interest rates.

    • Credit score variables include payment history, credit utilization, length of credit history, types of credit used, and new credit accounts.

    • Higher credit scores typically result in lower interest rates and more favorable lending terms.

    • Lenders use credit scores to assess risk and determine the likelihood of repayment.

    • Strategies ma...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Kanpur and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to my work experience
  • Q2. A case study on how to improve sales using website analytics management and email marketing
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions about past projects
  • Q2. Case on use of analytics in a retail sector. How would you as a consultant, structure the whole process (as the job was for an assistant project manager)

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Good communication is the key
2. Clear thought process and ability to demonstrate learning nature is a good tool to have
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Basic SQL join and Python data wrangling questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Metrics that can be useful in a defined dataset.
  • Ans. 

    Metrics such as mean, median, mode, standard deviation, and range can be useful in analyzing a defined dataset.

    • Mean: average value of the dataset

    • Median: middle value of the dataset when arranged in ascending order

    • Mode: most frequently occurring value in the dataset

    • Standard deviation: measure of the amount of variation or dispersion of a set of values

    • Range: the difference between the maximum and minimum values in the da

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are your biggest strengths and weaknesses?
  • Ans. 

    My biggest strengths include strong analytical skills and effective communication. My weaknesses are sometimes being too detail-oriented and struggling with delegation.

    • Strengths: strong analytical skills

    • Strengths: effective communication

    • Weaknesses: being too detail-oriented

    • Weaknesses: struggling with delegation

  • Answered by AI
  • Q2. Have you led a team before?
  • Ans. 

    Yes, I have led multiple teams in previous roles.

    • Led a team of 5 consultants in a project for a major client

    • Managed a team of analysts in developing a new data analytics tool

    • Coordinated a team of developers in implementing a software upgrade

  • Answered by AI
Round 1 - Technical 

(1 Question)

  • Q1. All questions according to cv.
Round 2 - Technical 

(1 Question)

  • Q1. Managerial and technical
Round 3 - HR 

(1 Question)

  • Q1. Behavioural question

Interview Preparation Tips

Interview preparation tips for other job seekers - Not typical. Prepare according your technology stack
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Rank vs dense rank
  • Ans. 

    Rank assigns unique ranks to each distinct row, while dense rank assigns consecutive ranks to rows with the same values.

    • Rank function is used to assign a unique rank to each distinct row based on the specified column(s).

    • Dense rank function is used to assign consecutive ranks to rows with the same values, without any gaps.

    • For example, if we have scores of 90, 85, 85, 80, then rank would assign ranks as 1, 2, 2, 4 while

  • Answered by AI
  • Q2. Row level security

Skills evaluated in this interview

Pharmaace Analytics Interview FAQs

How many rounds are there in Pharmaace Analytics Senior Consultant interview?
Pharmaace Analytics interview process usually has 1 rounds. The most common rounds in the Pharmaace Analytics interview process are Technical.
How to prepare for Pharmaace Analytics Senior Consultant 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 Pharmaace Analytics. The most common topics and skills that interviewers at Pharmaace Analytics expect are Analytics, Consulting, Market Research, Bioinformatics and Business Strategy.
What are the top questions asked in Pharmaace Analytics Senior Consultant interview?

Some of the top questions asked at the Pharmaace Analytics Senior Consultant interview -

  1. Cumulative Sum in ...read more
  2. Case When in ...read more

Tell us how to improve this page.

Pharmaace Analytics Senior Consultant Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Pharmaace Analytics Senior Consultant Salary
based on 22 salaries
₹9.2 L/yr - ₹33 L/yr
11% more than the average Senior Consultant Salary in India
View more details

Pharmaace Analytics Senior Consultant Reviews and Ratings

based on 3 reviews

2.8/5

Rating in categories

3.6

Skill development

2.3

Work-life balance

2.2

Salary

4.0

Job security

3.5

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 3 Reviews and Ratings
Associate Consultant
80 salaries
unlock blur

₹6.3 L/yr - ₹15 L/yr

Consultant
79 salaries
unlock blur

₹7 L/yr - ₹21.5 L/yr

Analyst
53 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Senior Consultant
22 salaries
unlock blur

₹9.2 L/yr - ₹33 L/yr

Project Manager
16 salaries
unlock blur

₹14 L/yr - ₹34 L/yr

Explore more salaries
Compare Pharmaace Analytics with

IQVIA

3.9
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

TCS

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