Upload Button Icon Add office photos

Filter interviews by

TELUS Digital Application Support Analyst Interview Questions and Answers

Updated 9 Apr 2024

TELUS Digital Application Support Analyst Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Basic RPA Questions. Knowledge about the RPA tools control rooms. You need to know how to read the logs. Basic question of core Java. They can ask about my SQL queries.
  • Q2. Known Control room functionality
  • Ans. 

    Control room functionality refers to the features and capabilities of a control room system.

    • Real-time monitoring of systems and processes

    • Alerts and notifications for issues or abnormalities

    • Remote access and control of equipment

    • Data visualization and reporting tools

    • Integration with other systems and applications

  • Answered by AI
  • Q3. How to check the queue
  • Ans. 

    To check the queue, you can use monitoring tools, command line tools, or check the application's logs.

    • Use monitoring tools like Nagios, Zabbix, or Prometheus to check the queue status

    • Use command line tools like 'top' or 'ps' to check the processes and their status

    • Check the application's logs for any queue-related errors or warnings

  • Answered by AI
  • Q4. Need to read the logs
  • Q5. Having scheduler knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowledge of Rpa tools.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Closures in JavaScript
  • Ans. 

    Closures in JavaScript allow functions to access variables from an outer function even after the outer function has finished executing.

    • Closures are created when a function is defined within another function and has access to the outer function's variables.

    • They can be used to create private variables and functions in JavaScript.

    • Closures can be used to maintain state in asynchronous operations.

  • Answered by AI
  • Q2. Node Js lambdas

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

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

Interview Questionnaire 

2 Questions

  • Q1. I was been asked the basic questions for phython since the requirement is for phython engineer. For second round, there were azure questions. The azure part generally consists of the algorithms behind the ...
  • Q2. What is default algorithm behind azure search?
  • Ans. 

    The default algorithm behind Azure Search is TF-IDF (Term Frequency-Inverse Document Frequency).

    • TF-IDF is a statistical measure used to evaluate the importance of a term within a document or a collection of documents.

    • It calculates a weight for each term based on its frequency in a document and its rarity in the entire document collection.

    • The higher the TF-IDF score, the more relevant the term is to a specific document.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Many a times we prepare for the advanced questions, the difficult one but for my experience that is 2 years , the interviewer isvmore intersted if i know basics. So if you are 2 years of experience brush up your basics and you will conquer it.

Skills evaluated in this interview

TELUS Digital Interview FAQs

How many rounds are there in TELUS Digital Application Support Analyst interview?
TELUS Digital interview process usually has 1 rounds. The most common rounds in the TELUS Digital interview process are One-on-one Round.
What are the top questions asked in TELUS Digital Application Support Analyst interview?

Some of the top questions asked at the TELUS Digital Application Support Analyst interview -

  1. How to check the qu...read more
  2. Known Control room functional...read more
  3. Basic RPA Questions. Knowledge about the RPA tools control rooms. You need to k...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 TELUS Digital interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k 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.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
TELUS Digital Application Support Analyst Salary
based on 30 salaries
₹4 L/yr - ₹11 L/yr
6% more than the average Application Support Analyst Salary in India
View more details

TELUS Digital Application Support Analyst Reviews and Ratings

based on 5 reviews

3.4/5

Rating in categories

3.7

Skill development

3.7

Work-Life balance

3.3

Salary & Benefits

3.5

Job Security

3.3

Company culture

2.9

Promotions/Appraisal

3.5

Work Satisfaction

Explore 5 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
220 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