Upload Button Icon Add office photos

TELUS Digital

Compare button icon Compare button icon Compare

Filter interviews by

TELUS Digital Support Engineer Interview Questions and Answers

Updated 8 Feb 2023

TELUS Digital Support Engineer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Jan 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 - Technical 

(2 Questions)

  • Q1. What is Virtual private network?
  • Ans. 

    A Virtual Private Network (VPN) creates a secure connection over the internet, protecting data and privacy.

    • VPNs encrypt internet traffic, making it difficult for hackers to intercept data.

    • They allow users to access region-restricted websites by masking their IP address.

    • VPNs can be used to connect remote employees to a company's internal network securely.

    • Examples include services like NordVPN, ExpressVPN, and CyberGhost...

  • Answered by AI
  • Q2. What is the basic network topologies?
  • Ans. 

    Basic network topologies include star, bus, ring, mesh, and hybrid, each defining how devices connect and communicate.

    • Star topology: All devices connect to a central hub (e.g., home Wi-Fi network).

    • Bus topology: All devices share a single communication line (e.g., older Ethernet networks).

    • Ring topology: Devices are connected in a circular format, data travels in one direction (e.g., Token Ring networks).

    • Mesh topology: E...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Apply even if you're not qualified enough
Going for tough interviews prepare you better.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about TELUS Digital?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How HashMap works internally
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • HashMap uses an array of buckets to store key-value pairs

    • The hash code of the key is used to determine the index of the bucket

    • If multiple keys have the same hash code, they are stored in a linked list within the bucket

    • When retrieving a value, the hash code of the key is used to find the bucket and then the linked list is...

  • Answered by AI
  • Q2. What is OOP in Java
  • Ans. 

    OOP in Java stands for Object-Oriented Programming which is a programming paradigm based on objects.

    • OOP focuses on creating objects that have properties and methods

    • Encapsulation, Inheritance, and Polymorphism are the key concepts of OOP

    • Java supports OOP through classes and interfaces

    • Example: A car can be represented as an object with properties like color, model, and methods like start, stop, and accelerate

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well core concept of Java and Spring Framework.

Skills evaluated in this interview

Support Engineer Interview Questions Asked at Other Companies

asked in HCLTech
Q1. How would you manage if someone asked you to work 24 hours in a d ... read more
asked in Salesforce
Q2. How to handle escalations/ your approach to solve any issues/ why ... read more
asked in HCLTech
Q3. How many cycles does a microprocessor run in MOV A, B?
asked in Salesforce
Q4. Write a SOQL query to retrieve Accounts and their related Contact ... read more
Q5. What is proxy & basic networking commands & networking de ... read more

I applied via Recruitment Consultant and was interviewed in Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to efficient and optimized programming from front end technologies as well as back end

Interview Preparation Tips

Interview preparation tips for other job seekers - One should keep their basics clear and be conceptually strong. Try to explore new grounds as much as possible to write efficent and optimized programs whether it's front end or back end

I applied via Referral and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test

Round 2 - Technical 

(1 Question)

  • Q1. Technical round was asked technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic should be strong in the programming language you know

I applied via Referral and was interviewed in Apr 2021. There were 7 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Name
  • Q2. Introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good
Round 1 - Group Discussion 

Face to face

Round 2 - Case Study 

Interview Preparation Tips

Interview preparation tips for other job seekers - Java

I applied via Campus Placement and was interviewed before Sep 2020. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basic knowledge about the topics in the resume
Are these interview questions helpful?

I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Abt basic android interview and kotlin

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic strong in Java kotlin and android.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - HR 

(1 Question)

  • Q1. Self introduction
Round 2 - Technical 

(1 Question)

  • Q1. Project explanation
Round 3 - One-on-one 

(1 Question)

  • Q1. Salary Discussion

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 126 minutes
Round difficulty - Hard

This round consist of coding questions as well as mcqs based on aptitude as well as some domain sections. This round is hard.

  • Q1. 

    Maximum Path Sum in a Matrix

    Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...

  • Ans. 

    Find the maximum sum path in a matrix from top row to bottom row by moving down or diagonally.

    • Use dynamic programming to keep track of maximum sum at each cell.

    • At each cell, consider the maximum sum from the cell above, left diagonal, and right diagonal.

    • Add the current cell value to the maximum of the three possibilities.

    • Repeat this process for all cells in the matrix to find the maximum sum path.

  • Answered by AI
  • Q2. 

    Boolean Matrix Transformation Challenge

    Given a 2-dimensional boolean matrix mat of size N x M, your task is to modify the matrix such that if any element is 1, set its entire row and column to 1. Specifi...

  • Ans. 

    Modify a boolean matrix such that if any element is 1, set its entire row and column to 1.

    • Iterate through the matrix to find elements with value 1

    • Store the row and column indices of these elements

    • Update the entire row and column for each element found to be 1

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

In this round the interviewer ask few questions related to domain and at last he ask some behavioral questions.

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find the lengths and the last nodes

    • Align the starting points of the lists by adjusting the pointers

    • Traverse both lists simultaneously until a common node is found

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in DelhiEligibility criteriaNo criteriaQuess Corp interview preparation:Topics to prepare for the interview - Data structures knowledge, OOPs, Pointers, Dynamic programming and Recursion, Graphs, Hashmaps and Priority Queues, Operating system, DBMS, Networking, Arrays, Strings, Stacks, Trees, Pointers, OS Kernel, Deadlock, Virtual Memory, Memory Management, Paging, Segmentation, Puzzles and aptitudeTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be calm and have confidence . Confidence is the key to crack any interview. 
Tip 2 : Try to give maximum time on basics of a topic 
Tip 3 : Practice interview questions
Tip 4 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Put only those skills in resume which the company requires, but don't put false information in resume
Tip 2 : Write only those things in resume in which you are 100% confident
Tip 3 : Have projects in resume and prepare well for it
Tip 4 : Keep it short and crisp.
Tip 5 : Focus on important things in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

TELUS Digital Interview FAQs

How many rounds are there in TELUS Digital Support Engineer interview?
TELUS Digital interview process usually has 2 rounds. The most common rounds in the TELUS Digital interview process are Resume Shortlist and Technical.
How to prepare for TELUS Digital Support Engineer 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 Digital. The most common topics and skills that interviewers at TELUS Digital expect are MGCP, Bigquery, Data Flow, Dataproc and GCP.
What are the top questions asked in TELUS Digital Support Engineer interview?

Some of the top questions asked at the TELUS Digital Support Engineer interview -

  1. what is the basic network topologi...read more
  2. what is Virtual private netwo...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 1.9k Interviews
WNS Interview Questions
3.3
 • 1.1k Interviews
Infosys BPM Interview Questions
3.6
 • 1k Interviews
iEnergizer Interview Questions
4.7
 • 781 Interviews
Omega Healthcare Interview Questions
3.7
 • 478 Interviews
Quess Interview Questions
3.8
 • 462 Interviews
R1 RCM Interview Questions
3.9
 • 315 Interviews
HGS Interview Questions
3.8
 • 253 Interviews
View all
TELUS Digital Support Engineer Salary
based on 9 salaries
₹4.5 L/yr - ₹6.5 L/yr
20% less than the average Support Engineer Salary in India
View more details

TELUS Digital Support Engineer Reviews and Ratings

based on 2 reviews

4.1/5

Rating in categories

3.5

Skill development

4.1

Work-life balance

3.5

Salary

4.1

Job security

4.1

Company culture

2.6

Promotions

2.6

Work satisfaction

Explore 2 Reviews and Ratings
Module Lead
467 salaries
unlock blur

₹8 L/yr - ₹30.8 L/yr

Senior Software Engineer
253 salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Senior Application Developer
240 salaries
unlock blur

₹7.6 L/yr - ₹29 L/yr

Team Lead
238 salaries
unlock blur

₹6 L/yr - ₹23.6 L/yr

Softwaretest Engineer
223 salaries
unlock blur

₹3.8 L/yr - ₹14 L/yr

Explore more salaries
Compare TELUS Digital with

Teleperformance

3.9
Compare

iEnergizer

4.7
Compare

WNS

3.3
Compare

Infosys BPM

3.6
Compare
write
Share an Interview