Upload Button Icon Add office photos
Engaged Employer

i

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

TELUS Health Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TELUS Health WFM Analyst Interview Questions and Answers

Updated 11 Oct 2024

TELUS Health WFM Analyst Interview Experiences

2 interviews found

WFM Analyst Interview Questions & Answers

user image Anonymous

posted on 11 Oct 2024

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

I applied via LinkedIn and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Why do you want to join Lifworks.
  • Ans. 

    I want to join Lifworks because of its reputation for innovation and commitment to employee development.

    • Lifworks has a strong reputation for innovation in the industry.

    • I am impressed by Lifworks' commitment to employee development and growth opportunities.

    • I believe that Lifworks' values align with my own professional goals and aspirations.

  • Answered by AI
  • Q2. Questions about experience in WFM domain and how could you contribute to Lifeworks.
Round 2 - One-on-one 

(1 Question)

  • Q1. Detailed questions about experience, WFM understanding, individual contributions, dashboard creations.

WFM Analyst Interview Questions & Answers

user image Anonymous

posted on 30 Mar 2022

I applied via Referral

Round 1 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
Round 2 - Assignment 

Tech questions

Round 3 - Group Discussion 

Basic

Interview Preparation Tips

Interview preparation tips for other job seekers - Nominal 3rd round.. it was very smooth after i cleared my tech round

WFM Analyst Interview Questions Asked at Other Companies

Q1. How do you prepare forecasting and scorecards?
Q2. What is the difference between utilization and productivity?
Q3. What is the definition and formula for WFM metrics?
Q4. What are occupancy and utilization in workforce management (WFM)?
Q5. How would you calculate AHT given a specific scenario?

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about TELUS Health?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 

Aptitude test based on RS Agarwal and similar numerical types

Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a link list and reverse a string
  • Ans. 

    Reverse a linked list and reverse a string

    • To reverse a linked list, iterate through the list and change the pointers to reverse the order

    • To reverse a string, use a loop to iterate through the characters and build a new string in reverse order

    • Example: Linked list 1->2->3->4 can be reversed to 4->3->2->1

    • Example: String 'hello' can be reversed to 'olleh'

  • Answered by AI
  • Q2. Check for weighted sum
  • Ans. 

    The question is asking to calculate the weighted sum of a set of values.

    • Calculate the product of each value with its corresponding weight

    • Sum up all the products to get the weighted sum

    • Example: Values [2, 3, 4] with weights [0.5, 0.3, 0.2] would result in (2*0.5) + (3*0.3) + (4*0.2) = 1 + 0.9 + 0.8 = 2.7

  • Answered by AI

Skills evaluated in this interview

Interview Preparation Tips

Round: Group Discussion
Experience: Discussion has started . Each one on the table shared their views and opinions. In the end three names were called out and rest of them were asked to leave .
Tips: Just chillax and speak your mind
Duration: 20 minutes

Round: Test
Experience: Basic aptitude
Tips: Work out aptitude, logic and reasoning
Duration: 20 minutes
Total Questions: 30

Round: HR Interview
Experience: Open ended questions ...

Round: Technical + HR Interview
Experience: Plain and simple

College Name: Vignan

I applied via Referral and was interviewed before Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. The question that were ask is just a normal question about you. Some General knowledge, Maths, Grammar, Optional question that's it .
  • Q2. What did you do after you exam? If you have a gap after you pass out your degree , the questions will be, This two years after your Degree, what were you doing? Why did you choose our Company? Where will y...
  • Ans. 

    After my degree, I focused on skill development, internships, and exploring opportunities in your company for growth.

    • I took online courses in data analysis and project management to enhance my skills.

    • I interned at a local startup, where I contributed to a successful marketing campaign.

    • I volunteered for community service, which helped me develop teamwork and leadership skills.

    • I researched your company’s values and proje...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - See going for a interview, need to patient's, and try to answer as much as you can, don't let them question you, instead ask them a question if you have anything in mind. You need to have eye to eye contact with them and don't use your hand so often to express yourself . while during the interview don't look down and answer, look straight towards them and delivered it.

Interview Questionnaire 

1 Question

  • Q1. About dot net core

Interview Preparation Tips

Interview preparation tips for other job seekers - good intervie

TELUS Health HR Interview Questions

6 questions and answers

Q. Why do you want to join Lifworks?
Q. Why do you want to join this organization?
Q. Tell me about your past experience working as a CSA.

I applied via Referral and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Java, Spark Concepts
  • Q2. Threading with example

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on past projects and concepts
Are these interview questions helpful?

Interview Questionnaire 

4 Questions

  • Q1. SQL Server Joins?
  • Q2. Top 2 Salary from each department?
  • Ans. 

    Use SQL to retrieve the top 2 salaries from each department efficiently.

    • Use a Common Table Expression (CTE) or a subquery to rank salaries within each department.

    • Example SQL: WITH RankedSalaries AS (SELECT Department, Salary, ROW_NUMBER() OVER (PARTITION BY Department ORDER BY Salary DESC) AS Rank FROM Employees) SELECT Department, Salary FROM RankedSalaries WHERE Rank <= 2;

    • This method ensures you get the top salari...

  • Answered by AI
  • Q3. Delete 30000000+ records from the live system aprroach to delete these records?
  • Ans. 

    Use a combination of backup and delete approach to safely delete the records.

    • Take a backup of the live system before deleting any records.

    • Identify the records to be deleted using a query or script.

    • Delete the records in batches to avoid overwhelming the system.

    • Monitor the system during the deletion process for any issues.

    • Verify the deletion by checking the number of records before and after.

    • Consider archiving the delete...

  • Answered by AI
  • Q4. Performance Tuning?

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Tell me about yourself.
  • Q4. Why are you looking for a change?
Round 2 - Aptitude Test 
Round 3 - Call with stakeholders 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be polite and confident. Focus on English and communication skills.

I applied via Walk-in and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How i solve the challenges in a company.
  • Ans. 

    I approach challenges by analyzing the problem, collaborating with teams, and implementing solutions iteratively.

    • Identify the root cause of the challenge through data analysis and stakeholder feedback.

    • Collaborate with cross-functional teams to gather diverse perspectives and insights.

    • Develop a structured plan to address the challenge, including timelines and responsibilities.

    • Implement solutions iteratively, allowing fo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to answer the correct answer to the interviwer.

TELUS Health Interview FAQs

How many rounds are there in TELUS Health WFM Analyst interview?
TELUS Health interview process usually has 2-3 rounds. The most common rounds in the TELUS Health interview process are HR, Assignment and Group Discussion.
What are the most common questions asked in TELUS Health WFM Analyst HR round?

The most common HR questions asked in TELUS Health WFM Analyst interview are -

  1. What are your salary expectatio...read more
  2. Share details of your previous j...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

TELUS Health WFM Analyst Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Analyst
136 salaries
unlock blur

₹2.2 L/yr - ₹4.2 L/yr

Process Champion
49 salaries
unlock blur

₹3.5 L/yr - ₹7.9 L/yr

Process Developer
42 salaries
unlock blur

₹3 L/yr - ₹4.7 L/yr

Technology Analyst
23 salaries
unlock blur

₹4.5 L/yr - ₹7.5 L/yr

Senior Implementation Analyst
22 salaries
unlock blur

₹3.6 L/yr - ₹6.1 L/yr

Explore more salaries
Compare TELUS Health with

Randstad

3.7
Compare

Kutumbh Care

3.9
Compare

Spectrum Talent Management

3.5
Compare

Allegis Group

3.7
Compare
write
Share an Interview