Upload Button Icon Add office photos

Filter interviews by

Telstra Interview Questions, Process, and Tips

Updated 28 Jan 2025

Top Telstra Interview Questions and Answers

View all 23 questions

Telstra Interview Experiences

Popular Designations

49 interviews found

SDE Interview Questions & Answers

user image Anonymous

posted on 29 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leetcode easy and medium questions. It was easy to clear

Round 2 - One-on-one 

(2 Questions)

  • Q1. Dry run bubble and insertion sort
  • Q2. One SQL query easy level
Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussion about projects
  • Q2. Do you have any questions

SDE Interview Questions asked at other Companies

Q1. Longest Increasing SubsequenceFor a given array with N elements, you need to find the length of the longest subsequence from the array such that all the elements of the subsequence are sorted in strictly increasing order. Strictly Increasin... read more
View answer (5)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Coding Test 

Python and SQL Questions (Easy to Medium)

Round 2 - Technical 

(5 Questions)

  • Q1. Project Work Discussion
  • Q2. SQL Coding (Can be with an online compiler)
  • Q3. Python Coding (Can be with an online compiler)
  • Q4. PySpark Coding (All the coding answers have to be submitted to the interviewer)
  • Q5. PySpark Joins, and Databricks, and Vanilla Spark difference
Round 3 - Technical 

(3 Questions)

  • Q1. SQL 2 Questions (Easy to Medium) (Maybe on the compiler)
  • Q2. Python (Easy) (Maybe on compiler)
  • Q3. Scenario-based questions on the project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume questions and Job Description Tech Stack Questions. Mostly it will be easy.
For Coding be prepared with:
DSA: Easy
SQL: Easy to Medium (Always be prepared with the NULL-based SQL queries and how they behave)
PySpark: Easy (RDD and data frame)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
No response

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy-medium level and it included two coding questions and some technical questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. How are structures and classes stored?
  • Ans. 

    Structures and classes are stored in memory as a combination of data members and member functions.

    • Structures and classes are stored in memory as a combination of data members and member functions.

    • Data members of a structure or class are stored in contiguous memory locations.

    • Member functions of a class are stored separately in memory and are shared among all instances of the class.

    • Pointers to member functions are used t...

  • Answered by AI
  • Q2. What is final and finalize?
  • Ans. 

    final is a keyword in Java used to restrict inheritance, overriding, and modification. finalize is a method used for cleanup operations before an object is garbage collected.

    • final keyword is used to declare constants, prevent inheritance by marking a class as final, and prevent method overriding by marking a method as final

    • finalize method is called by the garbage collector before an object is destroyed

    • Example: final in...

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Based on your job description coding questions will be asked in different categories. If you are able to manage time. It is easy to crack

Round 2 - Technical 

(2 Questions)

  • Q1. Optimization techniques in pyspark
  • Ans. 

    Optimization techniques in pyspark involve partitioning, caching, and using efficient transformations.

    • Partitioning data to distribute workload evenly

    • Caching frequently accessed data to avoid recomputation

    • Using efficient transformations like map, filter, and reduce

    • Avoiding unnecessary shuffling of data

  • Answered by AI
  • Q2. Few coding questions. Find the first unique character in string
Round 3 - Technical 

(1 Question)

  • Q1. It is bit difficult for me. Mention your work experience

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Telstra interview questions for popular designations

 Software Engineer

 (6)

 Data Engineer

 (4)

 Associate Software Engineer

 (3)

 Business Analyst

 (2)

 Capacity Analyst

 (2)

 Data Engineering Analyst

 (2)

 Java Developer

 (2)

 Automation Test Specialist

 (1)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

One hour filling in certain details, attending questionnaires and solving puzzles.

Round 2 - HR 

(1 Question)

  • Q1. HR general questions pn current role and scenario based queries.

Customer Service Representative Interview Questions asked at other Companies

Q1. 4) What is the difference between BPO and KPO?
View answer (3)

Get interview-ready with Top Telstra Interview Questions

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via LinkedIn and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Coding test was a DSA question. Moderate difficulty

Round 2 - Technical 

(3 Questions)

  • Q1. Java related questions
  • Q2. Spring related questions
  • Q3. Questions related to cloud
Round 3 - One-on-one 

(3 Questions)

  • Q1. What challenges have I faced in past
  • Ans. 

    I have faced challenges in managing tight project deadlines and adapting to new technologies.

    • Managing tight project deadlines by prioritizing tasks and delegating responsibilities

    • Adapting to new technologies by self-learning and seeking help from colleagues

    • Handling conflicts within team members by effective communication and conflict resolution skills

  • Answered by AI
  • Q2. Design level questions
  • Q3. Microservices design questions
Round 4 - HR 

(3 Questions)

  • Q1. Teamwork related questions
  • Q2. SWOT analysis questions
  • Q3. Salary discussion and expectation

Interview Preparation Tips

Topics to prepare for Telstra Software Development Engineer II interview:
  • Java
  • LLD
  • Spring
  • Springboot

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

Jobs at Telstra

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Explain your role in your current project and how you handled your customer in problematic situation?

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)

Customer Service Executive interview

user image Raj Brother

posted on 23 Nov 2021

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 python hands on question and 20 SQL based questions

Round 2 - Technical 

(2 Questions)

  • Q1. Azure Databricks
  • Q2. Azure Data Factory
Round 3 - Technical 

(2 Questions)

  • Q1. SQL handson questions
  • Q2. Python hands on question

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Fibonacci series coding q

Round 2 - Technical 

(2 Questions)

  • Q1. Sql basics ,oops concepts
  • Q2. Projects and other stuff

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)

Telstra Interview FAQs

How many rounds are there in Telstra interview?
Telstra interview process usually has 2-3 rounds. The most common rounds in the Telstra interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Telstra 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 Telstra. The most common topics and skills that interviewers at Telstra expect are Automation, Agile, Python, Flex and Telecom.
What are the top questions asked in Telstra interview?

Some of the top questions asked at the Telstra interview -

  1. What if we have two WAN sites working as Primary and Backup, if one went down t...read more
  2. If you have 2-3 tasks in the plate how do you decide the priori...read more
  3. What is the difference between Latency and Del...read more
How long is the Telstra interview process?

The duration of Telstra interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Telstra Interview Process

based on 40 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Jio Interview Questions
3.9
 • 1.6k Interviews
Bharti Airtel Interview Questions
4.0
 • 834 Interviews
Vodafone Idea Interview Questions
4.1
 • 553 Interviews
View all

Telstra Reviews and Ratings

based on 239 reviews

4.1/5

Rating in categories

3.7

Skill development

4.5

Work-life balance

4.0

Salary

3.6

Job security

4.2

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 239 Reviews and Ratings
Senior Technical SME

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Quality Engineer

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Customer Service Representative(Voice)

Bangalore / Bengaluru

12-16 Yrs

Not Disclosed

Explore more jobs
Software Engineer
163 salaries
unlock blur

₹9.6 L/yr - ₹25.1 L/yr

Senior Software Engineer
117 salaries
unlock blur

₹19 L/yr - ₹49.5 L/yr

Associate Software Engineer
53 salaries
unlock blur

₹7 L/yr - ₹10.1 L/yr

Software Developer
45 salaries
unlock blur

₹8.2 L/yr - ₹22.5 L/yr

Scrum Master
44 salaries
unlock blur

₹14 L/yr - ₹50.8 L/yr

Explore more salaries
Compare Telstra with

Bharti Airtel

4.0
Compare

Vodafone Idea

4.1
Compare

Jio

3.9
Compare

Tata Communications

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