Upload Button Icon Add office photos

Filter interviews by

TELUS Digital Senior Application Developer Interview Questions and Answers

Updated 2 Feb 2024

TELUS Digital Senior Application Developer Interview Experiences

4 interviews found

Interview Questionnaire 

1 Question

  • Q1. Oops, Exception handling, logical problem

I applied via Approached by Company and was interviewed in Aug 2022. There were 4 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 

(1 Question)

  • Q1. One DSA question write a program to identify if any given string of braces is valid ex: Valid :"[{}]" Invalid: "([)]" Closure in golang, channels, go routines, Packages, modules,
Round 3 - Technical 

(1 Question)

  • Q1. This was also technical round. Value receiver and pointer receiver in method. How to handle files in golang. interviewer asked me to show my contribution in project in github.
Round 4 - HR 

(1 Question)

  • Q1. Just normal discussion and salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be able to answer data structure question and technical questions.

Senior Application Developer Interview Questions Asked at Other Companies

asked in Oracle
Q1. Intersection of Linked ListYou are given two Singly Linked List o ... read more
asked in Oracle
Q2. LRU Cache ImplementationDesign and implement a data structure for ... read more
asked in Oracle
Q3. Convert a binary tree to its sum treeGiven a binary tree of integ ... read more
asked in Fujitsu
Q4. Spring Boot QuestionWhat do you understand by auto wiring and nam ... read more
asked in Fujitsu
Q5. OOPS QuestionHow is an abstract class different from an interface ... read more
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. NiFi terminologies
  • Q2. Python experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Open to learn new technologies
Job security
Salary on time
Recommended to work
Round 1 - Technical 
Round 2 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Tell me about yourself.
  • Q5. Last project discussion

TELUS Digital interview questions for designations

 Application Support Analyst

 (1)

 Java Developer

 (2)

 Plsql Developer

 (1)

 Software Developer Intern

 (2)

 Front end Developer

 (1)

 Senior Network Analyst

 (3)

 Senior QA Analyst

 (1)

 Senior Software Test Engineer

 (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question
  • Q2. Leetcode medium array

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic correct as lot of data structure questions come along the way
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Bascis of Angular - Routing, version upgrade, DI ,AOT JIT , FORMS , Services , Observable, Promise , lifecyclle

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do basics of Angular , JS, html , css
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. What is Oracle apps
  • Ans. 

    Oracle Applications are a suite of business applications software that help organizations manage their business processes.

    • Oracle Applications include modules for customer relationship management (CRM), enterprise resource planning (ERP), supply chain management (SCM), and more.

    • They are designed to automate and streamline business processes, improve efficiency, and provide real-time insights.

    • Examples of Oracle Applicati...

  • Answered by AI
  • Q2. Explain value sets
  • Ans. 

    Value sets are a collection of related values that can be used to define a set of acceptable values for a field or parameter.

    • Value sets help ensure data consistency and accuracy by restricting the possible values that can be entered.

    • They can be used in database fields, dropdown lists, or parameters in programming languages.

    • For example, a value set for a 'gender' field may include values like 'Male', 'Female', and 'Othe

  • Answered by AI
  • Q3. Explain index in plsql
  • Ans. 

    An index in PL/SQL is a database object that improves performance by allowing faster retrieval of data from tables.

    • Indexes are created on columns in a table to speed up the retrieval of rows based on the values in those columns.

    • They work similar to an index in a book, allowing the database to quickly locate the rows that match a certain criteria.

    • Indexes can significantly reduce the time it takes to retrieve data, espec...

  • Answered by AI
  • Q4. Explain joins in plsql
  • Ans. 

    Different types of joins in PL/SQL include inner join, outer join (left, right, full), cross join, and self join.

    • Inner join: Returns rows when there is at least one match in both tables.

    • Outer join: Returns all rows from one table and only matching rows from the other table (left, right, full).

    • Cross join: Returns the Cartesian product of the two tables.

    • Self join: Joins a table to itself.

  • Answered by AI
  • Q5. Explain functions in plsql
  • Ans. 

    Functions in PL/SQL are named blocks of code that can accept parameters, perform a task, and return a value.

    • Functions are created using the CREATE FUNCTION statement.

    • Functions can accept input parameters and return a single value.

    • Functions can be called from SQL statements or other PL/SQL blocks.

    • Functions can be used to encapsulate reusable logic and improve code readability.

    • Example: CREATE FUNCTION calculate_area(leng...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

WAP to count each word in a sentence and dispaly the output.
Questions on marker inetrface and functional interface.
sprinboot annotation questions

I applied via Naukri.com and was interviewed in Dec 2021. 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 - Technical 

(2 Questions)

  • Q1. What are the types of exceptions ?
  • Ans. 

    There are two types of exceptions: checked and unchecked.

    • Checked exceptions are checked at compile-time and must be handled by the programmer.

    • Unchecked exceptions are not checked at compile-time and can be handled by the JVM.

    • Examples of checked exceptions include IOException and SQLException.

    • Examples of unchecked exceptions include NullPointerException and ArrayIndexOutOfBoundsException.

  • Answered by AI
  • Q2. How will you handle exceptions of a procedure getting called in another procedure.
  • Ans. 

    I will use try-catch blocks to handle exceptions and log the error message for debugging purposes.

    • Enclose the procedure call in a try block.

    • Catch the exception in the catch block.

    • Log the error message for debugging purposes.

    • Handle the exception appropriately based on the specific scenario.

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?

Interview Preparation Tips

Topics to prepare for DXC Technology Senior Application Developer interview:
  • PLSQL
  • Shell Scripting
Interview preparation tips for other job seekers - It was the coolest interview I've ever faced. As my interview for application developer in pl/SQL and shell scripting it went very well with the questions like 7,8 questions on pl/SQL and equally on shell scripts.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hacker rank test was given, we need to clear that first.

Round 2 - Technical 

(2 Questions)

  • Q1. Java8 features, collections, Security management in application
  • Q2. Microservices, Spring boot concepts
Round 3 - Behavioral 

(1 Question)

  • Q1. Current project discussion and joining date confirmation

TELUS Digital Interview FAQs

How many rounds are there in TELUS Digital Senior Application Developer interview?
TELUS Digital interview process usually has 2-3 rounds. The most common rounds in the TELUS Digital interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in TELUS Digital Senior Application Developer interview?

Some of the top questions asked at the TELUS Digital Senior Application Developer interview -

  1. This was also technical round. Value receiver and pointer receiver in method. ...read more
  2. One DSA question write a program to identify if any given string of braces is v...read more
  3. Oops, Exception handling, logical prob...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 TELUS Digital interviews
Job Portal
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
TELUS Digital Senior Application Developer Salary
based on 206 salaries
₹8 L/yr - ₹26.4 L/yr
17% more than the average Senior Application Developer Salary in India
View more details

TELUS Digital Senior Application Developer Reviews and Ratings

based on 19 reviews

3.8/5

Rating in categories

3.8

Skill development

4.3

Work-Life balance

3.9

Salary & Benefits

4.2

Job Security

3.9

Company culture

3.0

Promotions/Appraisal

3.9

Work Satisfaction

Explore 19 Reviews and Ratings
Module Lead
478 salaries
unlock blur

₹8 L/yr - ₹27 L/yr

Senior Software Engineer
278 salaries
unlock blur

₹6.7 L/yr - ₹24 L/yr

Team Lead
222 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Softwaretest Engineer
216 salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Senior Application Developer
206 salaries
unlock blur

₹8 L/yr - ₹26.4 L/yr

Explore more salaries
Compare TELUS Digital with

Concentrix Corporation

3.8
Compare

Foundever

3.6
Compare

Wipro

3.7
Compare

Genpact

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview