Upload Button Icon Add office photos

Filter interviews by

TELUS Digital Reactjs Developer Interview Questions and Answers

Updated 13 Apr 2021

TELUS Digital Reactjs Developer Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Live react js development

Interview Preparation Tips

Interview preparation tips for other job seekers - get hands on experience

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. React hooks and its usage
  • Ans. 

    React hooks are functions that let you use state and other React features without writing a class.

    • Hooks are introduced in React 16.8 to allow state and lifecycle features in functional components.

    • useState() hook is used to add state to functional components.

    • useEffect() hook is used to perform side effects in functional components.

    • Custom hooks can be created to reuse stateful logic across components.

    • Hooks should always ...

  • Answered by AI
  • Q2. Virtual Dom and its use
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM, used for efficient updates and rendering in React applications.

    • Virtual DOM is a concept in React where a lightweight copy of the actual DOM is created.

    • It allows React to efficiently update and render components by comparing the virtual DOM with the actual DOM and only making necessary changes.

    • Virtual DOM helps in improving performance by reducing the number of direct...

  • Answered by AI
  • Q3. Redux, middleware and its use
  • Ans. 

    Redux is a state management library for React applications. Middleware is a function that intercepts actions before they reach the reducer.

    • Redux is used to manage the state of a React application in a predictable way

    • Middleware in Redux allows you to write logic that can intercept and modify actions before they reach the reducer

    • Common middleware in Redux includes redux-thunk for async actions and redux-logger for loggin

  • Answered by AI
  • Q4. Call, bind and apply and its application
  • Ans. 

    Call, bind, and apply are methods used to manipulate the context of a function in JavaScript.

    • Call - allows you to call a function with a specified 'this' value and arguments provided individually.

    • Example: function greet(name) { return 'Hello ' + name; } greet.call(null, 'John');

    • Bind - creates a new function that, when called, has its 'this' keyword set to the provided value.

    • Example: const greetJohn = greet.bind(null, '...

  • Answered by AI
  • Q5. 1 coding question in js for flaten array
  • Q6. 1 react questions of todo type questions
Round 2 - Behavioral 

(3 Questions)

  • Q1. Ask about my backend knowledge
  • Q2. Ask about my knowledge in data analytics
  • Q3. Negotiate on basis of above skills not on react

Interview Preparation Tips

Interview preparation tips for other job seekers - RMT Eng. Product Head Rajat Khare is the person in managerial round who try to negotiate because I don't have experience in backend and data analytics. Where I don't mention that I know these skill nor in initial conversation or in technical interview they ask for this, HR is just a postman to communicate. They even ask to come to office to release offer when I ask for match the offer minimum that I have already from a bigger MNC. Just worst way to negotiate.

Skills evaluated in this interview

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
4
Good
Difficulty level
Easy
Process Duration
-
Result
No response

I applied via Walk-in

Round 1 - Technical 

(5 Questions)

  • Q1. Hibernate, MicroService static keywords,super key words
  • Q2. SQL group by query
  • Q3. Hibernate annotations
  • Q4. Singleton class
  • Q5. Controller and rest controller

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics question of Java
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
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:
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 

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Java concepts - Oops, collection
Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

HTML CSS javascript jQuery

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

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

Round 1 - Aptitude Test 

It was easy and u can do it very easily

Round 2 - Coding Test 

Basically question were asked from tree, bst, greedy

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep patient and do grinding

TELUS Digital Interview FAQs

How to prepare for TELUS Digital Reactjs 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 Communication Skills, Core Java, Hibernate, JPA and Spring Boot.

Tell us how to improve this page.

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