Telus Digital · Software Engineer
Updated · 2026-09-22

Telus Digital Software Engineer
Interview Guide

THE 60-SECOND BRIEF

As a Software Engineer at Telus Digital, you will play a critical role in designing, building, and optimizing high-performance digital customer experience (CX) platforms and enterprise-grade software solutions. Telus Digital specializes in enabling digital transformation for some of the world's largest brands, meaning your work will directly impact millions of end-users globally. You will design scalable web applications, implement robust cloud-native architectures, and build seamless integrations that power modern user journeys. This position is highly collaborative and dynamic. Depending on your team alignment, you may find yourself working closely with global product teams, data scientists, and external enterprise clients.

This guide is scoped to a Software Engineer candidate at Telus Digital.

Telus Digital candidates report 4 rounds over 3-5 weeks. The stages below are what candidates describe, not a published process.

Cloud NetworkingDSA (Data Structures & Algorithms)Virtual Private Cloud (VPC)

27 min read

Practice 22 Software Engineer prompts
22Practice promptsAcross five skill areas

As a Software Engineer at Telus Digital, you will play a critical role in designing, building, and optimizing high-performance digital customer experience (CX) platforms and enterprise-grade software solutions. Telus Digital specializes in enabling digital transformation for some of the world's largest brands, meaning your work will directly impact millions of end-users globally. You will design scalable web applications, implement robust cloud-native architectures, and build seamless integrations that power modern user journeys. This position is highly collaborative and dynamic. Depending on your team alignment, you may find yourself working closely with global product teams, data scientists, and external enterprise clients. Engineers here do not just write code; they solve complex scalability challenges, optimize cloud infrastructure across multi-cloud environments, and ensure that applications maintain top-tier performance, security, and responsiveness under heavy loads. Whether you are building interactive frontend interfaces using modern JavaScript frameworks or architecting secure backend APIs and cloud networking pipelines, your contributions will drive the core technical capabilities of. The engineering culture values technical adaptability, structured problem-solving, and a strong commitment to delivery excellence. Telus Digital

01

HR Screening

reported

Initial screening to align on experience and compensation expectations.

What to demonstrate

  • Initial screening to align on experience and compensation expectations
  • Depth in Cloud Networking

How to prepare

  • Be able to walk your CV end to end in two minutes, and say why this company specifically.
  • Have your salary expectations, notice period and location constraints ready, and ask for the rest of the loop in writing.
Telus Digital Software Engineer candidate reports
02

Technical Assessments

reported

Series of assessments including online coding challenges and live technical discussions.

What to demonstrate

  • Series of assessments including online coding challenges and live technical discussions
  • Depth in Cloud Networking

How to prepare

  • Answer aloud and timed: What are the performance implications of server-side rendering (SSR) in Next.js compared to standard client-side rendering (CSR), and how do you optimize initial page load times?
  • Answer aloud and timed: Walk me through the event loop in JavaScript and explain how asynchronous operations are prioritized in the microtask queue.
Telus Digital Software Engineer candidate reports
03

System Design Review

reported

Evaluation of your system design skills through a dedicated review.

What to demonstrate

  • Evaluation of your system design skills through a dedicated review
  • Depth in Cloud Networking

How to prepare

  • Answer aloud and timed: How do you design a secure, versioned RESTful API that minimizes payload size and handles rate limiting effectively?
  • Answer aloud and timed: Explain the difference between SQL and NoSQL databases in the context of a high-throughput transaction system. When would you choose PostgreSQL over MongoDB?
Telus Digital Software Engineer candidate reports
04

Client Round

reported

Participation in a round focused on matching technical skills and communication style with client needs.

What to demonstrate

  • Participation in a round focused on matching technical skills and communication style with client needs
  • Depth in Cloud Networking

How to prepare

  • Answer aloud and timed: How do you handle asynchronous error propagation in Node.js and Express.js to prevent server crashes and memory leaks?
  • Answer aloud and timed: Describe the process of optimizing slow-running database queries in a production environment. What indexing strategies would you implement?
Telus Digital Software Engineer candidate reports

PracHub editorial advice for the preparation topics above.

01

Going into the loop without having done this.

To maximize your chances of success during the Telus Digital interview process, keep these practical, insider tips in mind.

02

Going into the loop without having done this.

Clarify ambiguous requirements immediately: If a coding prompt or system design question feels open-ended, do not hesitate to ask clarifying questions. Interviewers want to see how you gather requirements and define scope before writing code.

03

Going into the loop without having done this.

Over-communicate during live coding: Avoid coding in silence. Walk your interviewers through your logic, explain the trade-offs of your chosen approach, and discuss how you plan to handle potential edge cases.

04

Going into the loop without having done this.

Be prepared for potential tech-stack overlap. Even if you applied for a specialized React role, you may face high-level questions about backend integration, Node.js, database structures, or alternative frontend frameworks like Angular.

Choose a category, try a prompt, then open its approach, worked solution or follow-up when you need it.

19 technical prompts0 include a worked solution

Walk me through the event loop in JavaScript and explain how asynchronous operations are prioritized in the mi

medium
Frontend & UI Engineering

Walk me through the event loop in JavaScript and explain how asynchronous operations are prioritized in the microtask queue.

Approach
  1. Say what the runtime actually does before reasoning about the code.
  2. Name what is shared across threads and what owns each piece of state.
  3. Identify the window where an invariant is briefly untrue.
  4. Distinguish a value from a reference to it, and say which one you handed out.
Follow-up
  • What happens if two callers reach this at the same time?
  • Where could this allocate more than you expect?

How do you handle asynchronous error propagation in Node.js and Express.js to prevent server crashes and memor

medium
Backend & API Design

How do you handle asynchronous error propagation in Node.js and Express.js to prevent server crashes and memory leaks?

Approach
  1. Say what the runtime actually does before reasoning about the code.
  2. Name what is shared across threads and what owns each piece of state.
  3. Identify the window where an invariant is briefly untrue.
  4. Distinguish a value from a reference to it, and say which one you handed out.
Follow-up
  • What happens if two callers reach this at the same time?
  • Where could this allocate more than you expect?

Merge partitioned event streams into one ordered feed with bounded lateness

hard
k-way mergewatermarksout-of-order streams

The read-model service consumes 64 log partitions carrying about 4,000 events per second in total. Each partition is ordered within itself, but partitions drift by up to 30 seconds, and the activity feed must present a tenant's events in occurred_at order. Produce the merge. State its complexity, the buffer it requires in events and in bytes, what happens when one partition is idle, and what you do with an event that arrives after you have already emitted its position. Payloads average 1 KB.

Approach
  1. Merge with a min-heap over the 64 partition heads keyed on (occurred_at, event_id): O(log P) per event and O(n log P) overall. The tie-break on event_id is what makes the output deterministic when two partitions carry the same millisecond, which matters because the feed is paginated and a non-deterministic order reorders pages under the reader.
  2. Emitting the heap head is only correct once every partition has produced everything up to that timestamp, so the emit condition is a watermark: the minimum across partitions of the highest occurred_at seen, less the allowed lateness. Events are held until the watermark passes them, which is what turns individually ordered streams into a jointly ordered one.
  3. Size the buffer from the lateness rather than guessing: 4,000 events per second times 30 seconds is 120,000 buffered events, and at 1 KB each about 120 MB of heap. That number is the real price of the ordering guarantee and belongs in front of whoever asked for it.
  4. Handle the idle partition explicitly, because it fails the feed rather than corrupting it: a partition with no traffic never advances its own maximum, so the watermark freezes and output stops entirely. Either every partition emits a periodic idle marker carrying the broker's current time, or the watermark falls back to wall clock for a partition silent beyond a threshold.
Follow-up
  • The lateness budget is raised to five minutes. What is the new buffer, and what besides memory changes?
  • The consumer restarts. Where does it resume from, and what does the feed look like for the first 30 seconds?

Built from the rounds and topics Telus Digital candidates report.

Small steps. Visible outcomes.0 / 7 completed
ONE WEEK · YOUR PACE

Prepare, practise & reflect

One practical outcome each day. Spend longer where you need it.

0 / 7 done
01Map the Telus Digital loop
  • Write out the reported sequence: HR Screening, Technical Assessments, System Design Review, Client Round.
  • For each round, write one sentence on what it is judging, from the description above, and mark the one you are least ready for.

Deliverable: A one-page map of the 4 reported rounds, with the weakest marked.

02Work Cloud Networking
  • Spend the session on Cloud Networking, which Telus Digital candidates report being tested on.
  • Write one worked example in Cloud Networking and time yourself on it.

Deliverable: One timed worked example in Cloud Networking.

03Work DSA (Data Structures & Algorithms)
  • Spend the session on DSA (Data Structures & Algorithms), which Telus Digital candidates report being tested on.
  • Write one worked example in DSA (Data Structures & Algorithms) and time yourself on it.

Deliverable: One timed worked example in DSA (Data Structures & Algorithms).

04Work Virtual Private Cloud (VPC)
  • Spend the session on Virtual Private Cloud (VPC), which Telus Digital candidates report being tested on.
  • Write one worked example in Virtual Private Cloud (VPC) and time yourself on it.

Deliverable: One timed worked example in Virtual Private Cloud (VPC).

05Answer out loud: Frontend & UI Engineering
  • Answer aloud, timed: Create a card component containing a heading, subheading, summary, and image using CSS Flexbox or Grid, pulling data dynamically from a provided mock API.
  • Answer aloud, timed: Explain how you manage state across complex application trees in React versus Vue.js, and when you would opt for local state over global state management.

Deliverable: Spoken answers to 2 reported Frontend & UI Engineering question(s), under time.

06Answer out loud: Backend & API Design
  • Answer aloud, timed: How do you design a secure, versioned RESTful API that minimizes payload size and handles rate limiting effectively?
  • Answer aloud, timed: Explain the difference between SQL and NoSQL databases in the context of a high-throughput transaction system. When would you choose PostgreSQL over MongoDB?

Deliverable: Spoken answers to 2 reported Backend & API Design question(s), under time.

07Answer out loud: Cloud & Infrastructure Engineering
  • Answer aloud, timed: How do you configure a secure Virtual Private Cloud (VPC) in Google Cloud, and what strategies do you use to establish hybrid networking with an AWS environment?
  • Answer aloud, timed: Explain the role of routing and switching protocols in enterprise environments, specifically focusing on Cisco-specific technologies.

Deliverable: Spoken answers to 2 reported Cloud & Infrastructure Engineering question(s), under time.

Expand any day for tasks and deliverables. Your progress is saved on this device.

Behavioural rounds judge the decision you made and what it cost.

Narrate an outage you owned from page to postmortem

hard
incident responseblast radiuspostmortems

Pick an incident you personally drove, ideally one where writes were affected rather than reads. In six to eight minutes: state the symptom as it first appeared on a dashboard, the blast radius you established before you knew the cause, the mitigation you applied and when, the mechanism you eventually proved, and the follow-up that would prevent a repeat. Bring numbers: error rate, tenants affected, minutes to mitigate, minutes to resolve. If you cannot name what you measured, choose a different incident.

Approach
  1. Open on the signal rather than the cause: which metric at which percentile moved, on which service, at what time, so the listener follows the same evidence you had rather than a conclusion you already reached.
  2. Separate mitigation from diagnosis out loud. State what you did to stop the bleeding (flag off, shed traffic, drain a lease, roll back a deploy) and say plainly that you did it before the mechanism was known, because those are two jobs with different deadlines.
  3. Establish blast radius in countable terms: how many tenants, how many writes, and crucially whether the effect was loss or only delay. An append-only revision table or a pending outbox row means the change survived and the projection was merely behind, which is a repair rather than a data-loss incident.
  4. Prove the mechanism instead of asserting it. Name the trace span that grew, the plan that flipped to a sequential scan, the lease that expired, plus one alternative you ruled out and the signal that stayed flat while you ruled it out.
Follow-up
  • What would you do differently in the first five minutes, given the same dashboard and no more information?
  • Which follow-up action did you deliberately not take, and why was dropping it the right call?

Estimate work you have never done and defend the range

hard
estimationbackfillsexpand-contract

You are asked to estimate a change you have never attempted: add a column to a 100-million-row table, populate it, move reads across, and drop the old shape. Give a range with the assumptions that generate it, including batch size, the signal your backfill throttles on, and wall-clock hours, and name the three unknowns that would move the number most. Then describe a real estimate you gave under comparable ignorance: how you expressed its uncertainty, what you committed to, and how wrong you turned out to be.

Approach
  1. Decompose into independently deployable steps before estimating anything: add the column nullable, write both shapes, backfill in batches, verify, move reads, stop writing the old shape, drop it. That is four deploys spread over days, and the calendar estimate is dominated by them rather than by the loop's runtime.
  2. Do the arithmetic aloud for the part that has arithmetic in it: batch size times number of batches times per-batch duration, at a write rate the primary can absorb alongside roughly 1.2k writes per second of production traffic. The loop is throttled by replication lag and lock waits, not by how fast it can issue statements.
  3. Price the schema step by its lock rather than its statement duration. In PostgreSQL an ALTER TABLE taking ACCESS EXCLUSIVE waits for every open transaction on that table while later queries queue behind it, so a millisecond change issued during a thirty-second analytics query stalls that table for thirty seconds. Adding a nullable column with a non-volatile default avoids a rewrite from version 11; a new index wants CREATE INDEX CONCURRENTLY, which cannot run inside a transaction block and leaves an invalid index behind if it fails.
  4. Express the answer as a range whose endpoints each trace to a stated assumption, then name the cheapest experiment that collapses it, which is almost always running one real batch against the real table and multiplying.
Follow-up
  • How do you verify the backfill genuinely finished, given rows written by production traffic while it ran?
  • Where does the backfill resume from after a worker is killed mid-batch, and what makes that resume point trustworthy?

Unblock an engineer without taking the keyboard

easy
mentoringleasesat-least-once

A teammate has spent two days on a job handler that occasionally writes duplicate rows. They are certain the queue is delivering twice by mistake. You suspect a lease expiring under a slow handler, so the job is running concurrently with itself. Describe how you have unblocked someone in this position: what you asked before offering a hypothesis, what you showed them rather than told them, and what you left them owning. Then say what you would do if their theory turned out to be the right one.

Approach
  1. Ask before diagnosing, and ask for things answerable from data they already have: the attempt count on the job rows that produced duplicates, the handler's observed duration against its lease expiry, and whether the duplicate rows share a natural key that a unique constraint could have caught.
  2. Teach the shape rather than the answer. A lease cannot distinguish a dead worker from a slow one, so a handler that outruns its lease is running twice by design, and deploys deliver the other half by killing handlers mid-run on every rollout. Both of their candidate theories produce identical duplicate rows, which is why the evidence has to come from timings rather than from argument.
  3. Hand over a checklist they execute: a natural key on every write the handler performs so the second copy collides rather than appends, the record of intent written before any external effect, a lease heartbeat while running, and the metric that shows it working.
  4. Keep ownership with them deliberately. Pair on the first write, then step back; if you finish it yourself you have closed one ticket and left the same person stuck on the next redelivery.
Follow-up
  • How would you distinguish a genuine double-delivery from a lease expiry using only the data already stored?
  • Their handler calls an external endpoint before recording that it did. What do you tell them to change first?
  • 01

    Pick an incident you personally drove, ideally one where writes were affected rather than reads. In six to eight minutes: state the symptom as it first appeared on a dashboard, the blast radius you established before you knew the cause, the mitigation you applied and when, the mechanism you eventually proved, and the follow-up that would prevent a repeat. Bring numbers: error rate, tenants affected, minutes to mitigate, minutes to resolve. If you cannot name what you measured, choose a different incident.

  • 02

    You are asked to estimate a change you have never attempted: add a column to a 100-million-row table, populate it, move reads across, and drop the old shape. Give a range with the assumptions that generate it, including batch size, the signal your backfill throttles on, and wall-clock hours, and name the three unknowns that would move the number most. Then describe a real estimate you gave under comparable ignorance: how you expressed its uncertainty, what you committed to, and how wrong you turned out to be.

  • 03

    A teammate has spent two days on a job handler that occasionally writes duplicate rows. They are certain the queue is delivering twice by mistake. You suspect a lease expiring under a slow handler, so the job is running concurrently with itself. Describe how you have unblocked someone in this position: what you asked before offering a hypothesis, what you showed them rather than told them, and what you left them owning. Then say what you would do if their theory turned out to be the right one.

PracHub preparation framework
What is the typical timeline for the Telus Digital hiring process?

The entire process generally takes between 3 to 5 weeks from the initial recruiter screen to the final offer. However, timelines can occasionally vary depending on the specific client alignment and the availability of technical interviewers.

Telus Digital Software Engineer candidate reports
How technical is the managerial round?

The managerial round focuses primarily on team fit, communication, and your approach to collaboration. While it is less about writing code, you should still be prepared to discuss your past projects, architectural decisions, and how you handle technical disagreements or shifting project requirements.

Telus Digital Software Engineer candidate reports
Do I need experience in both AWS and GCP?

While deep expertise in both is not strictly required, a strong conceptual understanding of cloud networking and deployment principles is highly valued. Most roles will allow you to specialize in one platform while collaborating on multi-cloud architectures.

Telus Digital Software Engineer candidate reports
What is the hybrid work policy at Telus Digital?

Telus Digital supports a flexible hybrid working model for most engineering roles, allowing developers to balance remote work with collaborative in-office sessions depending on local office guidelines and client requirements.

Telus Digital Software Engineer candidate reports
How hard is the Telus Digital interview?

Candidates most commonly rate Telus Digital interviews as medium, based on 507 reported interviews. About 63% of candidates who interview go on to receive an offer.

Telus Digital Software Engineer candidate reports
What topics does Telus Digital test in interviews?

Telus Digital interviews most often cover Python, SQL, Cross-functional Collaboration, Behavioral Interviewing, and Cloud Networking. The exact emphasis depends on the specific role you apply for.

Telus Digital Software Engineer candidate reports
Sources & methodology 3 sources ↗

Official role evidence, timestamped platform data and clearly labeled preparation advice.