Upload Button Icon Add office photos

Filter interviews by

Clear (1)

TELUS Digital Java Developer Interview Questions, Process, and Tips

Updated 26 May 2024

Top TELUS Digital Java Developer Interview Questions and Answers

TELUS Digital Java Developer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write a query for inner join
  • Ans. 

    An inner join query combines rows from two or more tables based on a related column between them.

    • Use the SELECT statement to specify the columns you want to retrieve

    • Use the FROM clause to specify the tables you want to join

    • Use the INNER JOIN keyword to perform an inner join based on a common column

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before May 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 Resume tips
Round 2 - Aptitude Test 

Basic questions of aptitude and some coding questions.

Round 3 - Technical 

(3 Questions)

  • Q1. What is OOPS concepts?
  • Ans. 

    OOPS concepts are the principles of Object-Oriented Programming that help in creating modular and reusable code.

    • Encapsulation: Binding data and methods together in a single unit.

    • Inheritance: Acquiring properties and behavior of a parent class by a child class.

    • Polymorphism: Ability of an object to take many forms.

    • Abstraction: Hiding implementation details and showing only functionality.

    • Examples: Class, Object, Inheritan

  • Answered by AI
  • Q2. What is string?
  • Ans. 

    String is a sequence of characters.

    • In Java, String is a class that represents a sequence of characters.

    • Strings are immutable, meaning their values cannot be changed once created.

    • String literals are enclosed in double quotes, e.g. "Hello World".

    • Strings can be concatenated using the + operator, e.g. "Hello" + "World".

    • Strings have many built-in methods for manipulation, such as length(), substring(), and indexOf().

  • Answered by AI
  • Q3. Write the logic of palindrome?
  • Ans. 

    Palindrome is a word, phrase, number, or other sequence of characters that reads the same backward as forward.

    • Remove all non-alphanumeric characters from the string

    • Convert the string to lowercase

    • Reverse the string

    • Compare the reversed string with the original string

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Internal working of hashmap, exception handling scenarios, java 8 lambda expression and other concepts, oops in your project

I applied via Naukri.com and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

7 Questions

  • Q1. Q1)Strong OOPS concept.
  • Ans. 

    Strong OOPS concept is essential for Java developers to write efficient and maintainable code.

    • Understanding of classes, objects, inheritance, polymorphism, and encapsulation

    • Ability to design and implement complex systems using OOPS principles

    • Experience with design patterns and SOLID principles

    • Knowledge of interfaces, abstract classes, and access modifiers

    • Familiarity with UML diagrams for modeling software systems

  • Answered by AI
  • Q2. Q2) exception handling, multitasking
  • Q3. Q3) collection frameworks internal hierarchical
  • Q4. Q4)java server side strong debugging knowledge required it must for selection.
  • Q5. 5)you need to specific on your answer and to the point
  • Q6. 6)Java utility classes
  • Q7. Spring MVC and spring boot all basic automation and bean internal working knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Please find good place and take interview with cool mind if you don't ahe any questions answer at time of interview don't take stress say politely i don't know that fine

Don't be harrree while answering the question


I applied via Company Website and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is java
  • Ans. 

    Java is a high-level programming language known for its platform independence and object-oriented approach.

    • Java is widely used for developing desktop, web, and mobile applications.

    • It is known for its write once, run anywhere (WORA) capability.

    • Java uses a virtual machine (JVM) to execute code, providing portability across different operating systems.

    • It supports multithreading, exception handling, and dynamic memory allo...

  • Answered by AI
  • Q2. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created from an existing class.

    • Allows for code reuse and promotes code organization

    • The new class (subclass) inherits properties and methods from the existing class (superclass)

    • Subclass can add new properties and methods or override existing ones

    • Example: A Car class can inherit properties and methods from a Vehicle class

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - iam join this java developer

Skills evaluated in this interview

I applied via Referral and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Write a program for sum of numbers?
  • Ans. 

    A program to calculate the sum of numbers.

    • Create a variable to store the sum.

    • Iterate through the numbers and add each number to the sum.

    • Return the sum.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - We have to prepare even the basic questions , basic question also matters !

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What's java?
  • Ans. 

    Java is a high-level, object-oriented programming language used to develop applications for various platforms.

    • Java is platform-independent and can run on any device with a Java Virtual Machine (JVM)

    • It is known for its security features and is commonly used for developing web applications, mobile apps, and enterprise software

    • Java code is compiled into bytecode, which can be executed on any platform that has a JVM instal...

  • Answered by AI
  • Q2. Why java?
  • Ans. 

    Java is a versatile, platform-independent language with a vast community and extensive libraries.

    • Java is object-oriented and easy to learn.

    • It has a vast community and extensive libraries.

    • It is platform-independent and can run on any device.

    • Java is secure and reliable.

    • It is used in various domains like web development, mobile app development, and enterprise applications.

    • Examples: Android apps, Spring framework, Hadoop,

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

3 Questions

  • Q1. Questions around oops concepts, spring and hibernate basics
  • Q2. What design pattern you used?
  • Ans. 

    I have used the Singleton design pattern in my Java projects.

    • Singleton pattern ensures that only one instance of a class is created and provides a global point of access to it.

    • It is useful when we want to limit the number of instances of a class to one.

    • Example: Creating a Logger class as a Singleton to ensure only one instance is used throughout the application.

  • Answered by AI
  • Q3. Java 8 features

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall difficulty was average

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic java concepts like collection frame work, exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics well, be confident, show you are flexible enough to learn

I applied via Company Website

Interview Questionnaire 

1 Question

  • Q1. Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes
Contribute & help others!
anonymous
You can choose to be anonymous

TELUS Digital Interview FAQs

How many rounds are there in TELUS Digital Java Developer interview?
TELUS Digital interview process usually has 2 rounds. The most common rounds in the TELUS Digital interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for TELUS Digital Java Developer 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 Java, Microservices, Spring Boot, Core Java and GCP.
What are the top questions asked in TELUS Digital Java Developer interview?

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

  1. What is OOPS concep...read more
  2. What is stri...read more
  3. Write the logic of palindro...read more

Recently Viewed

INTERVIEWS

Vidhyashala

No Interviews

INTERVIEWS

TELUS Digital

No Interviews

LIST OF COMPANIES

Maven Infotech

Locations

INTERVIEWS

TELUS Digital

30 top interview questions

INTERVIEWS

Crofarm

No Interviews

JOBS

Mswipe Technologies

No Jobs

SALARIES

INTEGRTR

SALARIES

Maven Infotech

INTERVIEWS

Bayer

No Interviews

INTERVIEWS

TELUS Digital

No Interviews

Tell us how to improve this page.

TELUS Digital Java Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
TELUS Digital Java Developer Salary
based on 5 salaries
₹3 L/yr - ₹7.2 L/yr
8% less than the average Java Developer Salary in India
View more details
Module Lead
456 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
264 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
228 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
222 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Application Developer
209 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TELUS Digital with

Concentrix Corporation

3.8
Compare

Foundever

3.6
Compare

Wipro

3.7
Compare

Genpact

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview