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

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.
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

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
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

Interview Questionnaire 

1 Question

  • Q1. Oops, Exception handling, logical problem

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

 (2)

Interview questions from similar companies

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

Frequent test as of studied in privious company learnt

Round 2 - Technical 

(2 Questions)

  • Q1. Describe the 'delete' command In oracle.
  • Ans. 

    The 'delete' command in Oracle is used to remove rows from a table based on specified conditions.

    • The 'delete' command is used to remove rows from a table in Oracle.

    • It is important to specify the conditions for deletion using a WHERE clause.

    • After executing the delete command, the rows are permanently removed from the table.

    • It is recommended to use a commit statement after executing the delete command to make the changes

  • Answered by AI
  • Q2. 'Grep' command in brief
  • Ans. 

    Grep command is used in Unix/Linux to search for specific patterns in files or output.

    • Used to search for specific patterns in files or output

    • Can be used with regular expressions to refine search results

    • Commonly used with options like -i (case-insensitive) and -r (recursive)

    • Example: grep 'keyword' filename.txt

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Describe all of things in privious company and study of SQL,plsql,Linux,Java ,ITIL process and shell scripting

Skills evaluated in this interview

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

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. What is SOLID principle
  • Ans. 

    SOLID is a set of principles for designing software that promotes maintainability, extensibility, and reusability.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open-Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes must be substitutable for their base types.

    • I - Interface Segregation Principle:...

  • Answered by AI
  • Q2. Use of joins in sql
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables in a single query

    • Common types of joins include inner join, left join, right join, and full outer join

    • Joins are performed using the JOIN keyword and specifying the related columns

    • Joins can be used to fetch data based on matching values or non-matching values between ta

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Explain current project and role

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. They will ask the question based on your experience.
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. Sql basic joins , fliter condition, group order clause , select query for getting complex output from table
  • Q2. About yourprojrct waht u did etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Sql basic Linux basic prepare sql syntaxes on a employee or department table practice basicsql code writing
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 Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is the recent issue you have worked on.

Interview Preparation Tips

Interview preparation tips for other job seekers - Whatever you have mentioned in the resume you should be able to answer about that during the interview.
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 Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. What are indexes.
  • Ans. 

    Indexes are data structures that improve the speed of data retrieval operations on a database table.

    • Indexes are created on columns in a database table to quickly retrieve rows matching a certain condition.

    • They can be unique, allowing only unique values to be stored in the indexed column.

    • Examples include primary keys, foreign keys, and indexes on frequently queried columns.

  • Answered by AI
  • Q2. What are all the pillars of object oriented programming.
  • Ans. 

    The pillars of object oriented programming are encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Allowing a new class to inherit properties and behavior from an existing class.

    • Polymorphism: The ability for objects of different classes to respond to the same message in different ways.

  • Answered by AI
  • Q3. How interface is different from abstract classes?
  • Ans. 

    Interfaces are used to define contracts for classes to implement, while abstract classes can provide partial implementation.

    • Interfaces can only have abstract methods and cannot have any implementation, while abstract classes can have both abstract and concrete methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java, while...

  • Answered by AI
  • Q4. What is dataware house concept
  • Ans. 

    Data warehouse is a centralized repository for storing and analyzing data from various sources to support decision-making processes.

    • Data warehouse stores historical data from different sources for analysis

    • It is used for reporting, querying, and data mining

    • Data is structured in a way that makes it easier to query and analyze

    • Examples: Amazon using data warehouse to analyze customer behavior, sales trends

    • Data warehouse he...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why we hire you?

Skills evaluated in this interview

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.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
TELUS Digital Senior Application Developer Salary
based on 203 salaries
₹7.5 L/yr - ₹26.4 L/yr
9% 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.9/5

Rating in categories

3.9

Skill development

4.4

Work-life balance

4.0

Salary

4.3

Job security

4.0

Company culture

3.1

Promotions

4.0

Work satisfaction

Explore 19 Reviews and Ratings
Module Lead
473 salaries
unlock blur

₹8 L/yr - ₹27 L/yr

Senior Software Engineer
261 salaries
unlock blur

₹6.7 L/yr - ₹26 L/yr

Softwaretest Engineer
223 salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Team Lead
222 salaries
unlock blur

₹4.8 L/yr - ₹20 L/yr

Senior Application Developer
204 salaries
unlock blur

₹7.6 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
Did you find this page helpful?
Yes No
write
Share an Interview