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 IT Administrator Interview Questions and Answers

Updated 19 Dec 2021

TELUS Health IT Administrator Interview Experiences

1 interview found

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

Interview Questionnaire 

1 Question

  • Q1. Related to server & cloud vdi VMware horizon active directory

Interview Preparation Tips

Interview preparation tips for other job seekers - Not to take it too much serious be normal try your best that's enough

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

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

IT Administrator Interview Questions Asked at Other Companies

asked in 2COMS
Q1. how rdp work, how you will setup samba server, or nfs server, bac ... read more
asked in 2COMS
Q2. if you have one system if it's not working what you will do..? An ... read more
asked in Wipro
Q3. What is Active Directroy ? What is WLAN WAN ? How to Configure ro ... read more
Q4. how to connect network printer in our network area how to change ... read more
Q5. What are pst and ost? What's the difference between them

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 Naukri.com and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About myself, technical

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and found out to be fine while joining
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 was your Targets, past experience,
  • Q2. What are the Latest trends
  • Ans. 

    The latest trends include AI, remote work, sustainability, and digital transformation.

    • Artificial Intelligence (AI) is being integrated into various industries and processes to improve efficiency and accuracy.

    • Remote work is becoming more popular due to advancements in technology and the COVID-19 pandemic.

    • Sustainability is a growing concern for businesses and individuals, leading to a shift towards eco-friendly practices...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be uptodate with current best practices, newest recruitment devices
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Technical knowledge of LAN/WAN/OS/Server/Router/switch/printer/AV

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.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Why should I hired you
  • Q2. How u want work here
  • Q3. What is your long time goals?
  • Q4. What is your favorite
Round 2 - Case Study 

Documentary questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Normally friendly interview only
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2022. There were 3 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 - Aptitude Test 

It was apti test with lot of technical questions and basic codes were ask

Round 3 - HR 

(5 Questions)

  • Q1. Hr round with technical questions
  • Q2. Name , technical background, academics.
  • Q3. Acadamics que qualification results
  • Q4. Coding knowledge basics
  • Q5. Formal question relates personal intrest
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

TELUS Health Interview FAQs

How to prepare for TELUS Health IT Administrator 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 TELUS Health. The most common topics and skills that interviewers at TELUS Health expect are Backend Operations, Defined Benefits and US Healthcare.

Tell us how to improve this page.

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