Upload Button Icon Add office photos

Filter interviews by

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 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 1You have been given an integer array/list(ARR) of size N ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in LTIMindtree
Q3. Longest Harmonious SubsequenceYou are given an array ‘ARR’ of 'N' ... read more
asked in Deloitte
Q4. Convert Bst To The Greater Sum TreeYou have been given a Binary S ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Interview questions from similar companies

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

I applied via Newspaper Ad and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

A person ability in a particular skills or field of knowledge

Round 2 - HR 

(4 Questions)

  • Q1. Tell me about your self ?
  • Ans. 

    I am a passionate Java Developer with 5 years of experience in developing web applications and strong knowledge of Java technologies.

    • 5 years of experience in Java development

    • Proficient in developing web applications

    • Strong knowledge of Java technologies

  • Answered by AI
  • Q2. What are strength ?
  • Ans. 

    Strengths are qualities or attributes that make an individual or team effective in achieving goals.

    • Physical strength: Ability to lift heavy objects or perform physically demanding tasks.

    • Emotional strength: Resilience in facing challenges and managing stress.

    • Intellectual strength: Problem-solving skills and critical thinking abilities.

    • Interpersonal strength: Effective communication and teamwork skills.

    • Adaptability: Abil...

  • Answered by AI
  • Q3. Why are interested in this job?
  • Ans. 

    I am passionate about Java development and excited about the opportunity to work on challenging projects.

    • I have a strong background in Java programming and enjoy solving complex problems.

    • I am eager to contribute my skills and expertise to a dynamic team.

    • I am interested in this job because it offers the chance to work on cutting-edge technologies and make a real impact.

  • Answered by AI
  • Q4. Tell me about your studying
  • Ans. 

    I have a Bachelor's degree in Computer Science and have taken various online courses to further my knowledge in Java development.

    • Bachelor's degree in Computer Science

    • Online courses in Java development

    • Continuous learning and staying updated with latest technologies

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Job is very good important in life
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept they asked
  • Q2. They asked spring boot

I applied via Walk-in

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

General knowledge ,appitude

Interview Preparation Tips

Interview preparation tips for other job seekers - We write the code of the java programming
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Rabbit MQ?
  • Ans. 

    RabbitMQ is a message broker software that implements the Advanced Message Queuing Protocol (AMQP).

    • RabbitMQ allows different software systems to communicate by sending and receiving messages.

    • It can be used to decouple different parts of a system, making it more scalable and resilient.

    • RabbitMQ supports multiple messaging protocols, including AMQP, MQTT, and STOMP.

  • Answered by AI
  • Q2. What is LINQ in .net?
  • Ans. 

    LINQ (Language Integrated Query) is a feature in .NET that allows querying data from different data sources using a uniform syntax.

    • LINQ allows querying data from collections, databases, XML, and more.

    • It provides a set of standard query operators like Where, Select, OrderBy, etc.

    • LINQ queries are written in C# or VB.NET and are type-safe.

    • Example: var result = from num in numbers where num % 2 == 0 select num;

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. Union and union all difference
  • Ans. 

    UNION combines the results of two or more SELECT statements, while UNION ALL includes duplicates.

    • UNION removes duplicate rows, while UNION ALL retains all rows including duplicates

    • UNION is slower than UNION ALL as it performs a distinct operation

    • UNION requires the same number of columns in the SELECT statements, while UNION ALL does not have this restriction

  • Answered by AI
  • Q2. What is generic and non-generic collections
  • Ans. 

    Generic collections allow storing any type of data, while non-generic collections are type-specific.

    • Generic collections can store any type of data, such as List or Dictionary.

    • Non-generic collections are type-specific, like ArrayList or HashTable.

    • Generic collections provide type safety and better performance compared to non-generic collections.

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not good experience give an interview

Skills evaluated in this interview

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

I was interviewed in Aug 2023.

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

10 day,Numbers,Alebra

Round 3 - Technical 

(5 Questions)

  • Q1. Oop,C++.html,css,javascrept
  • Q2. What is order list
  • Ans. 

    An ordered collection of items, typically displayed in a numbered list.

    • Order list is used to display items in a specific sequence.

    • Items in an order list are typically numbered or marked with bullets.

    • Example:

      1. Item 1
      2. Item 2

  • Answered by AI
  • Q3. What is javascript
  • Ans. 

    JavaScript is a high-level, interpreted programming language used for creating interactive websites.

    • JavaScript is commonly used for client-side web development.

    • It can be used to add interactivity to websites, such as form validation or dynamic content.

    • JavaScript can also be used for server-side development with Node.js.

    • Examples of JavaScript frameworks/libraries include React, Angular, and Vue.

  • Answered by AI
  • Q4. What is ===operator
  • Ans. 

    === operator is a strict equality operator in JavaScript that checks if two values are equal in both value and type.

    • === operator returns true if both operands are of the same type and have the same value

    • It does not perform type coercion, unlike the == operator

    • Example: 5 === '5' will return false because the operands are of different types

  • Answered by AI
  • Q5. What is the main features of oop
  • Ans. 

    Main features of OOP include encapsulation, inheritance, and polymorphism.

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

    • Inheritance: Ability to create new classes based on existing classes, inheriting their attributes and methods.

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

    • Example: Encapsulation - a class 'Car' wi...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About experience previous project technical design
  • Q2. I have hands good exposure
Round 2 - Group Discussion 

How to handle the project amd team members and how will take care the code analysis

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Java concepts - Oops, collection

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, Spring Boot, Microservices, 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

Tell us how to improve this page.

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