AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Telstra

Compare button icon Compare button icon Compare
4.0

based on 275 Reviews

Play video Play video Video summary
  • About
  • Reviews
    275
  • Salaries
    2.3k
  • Interviews
    51
  • Jobs
    14
  • Benefits
    27
  • Photos
    27

Filter interviews by

Telstra Interview Questions and Answers

Updated 22 May 2025
Popular Designations

23 Interview questions

An Associate Software Engineer was asked 3mo ago
Q. What current projects have you worked on?
Ans. 

I worked on various projects, including a web application for task management and a mobile app for fitness tracking.

  • Developed a task management web app using React and Node.js, enabling users to create, update, and delete tasks.

  • Collaborated with a team to build a mobile fitness tracking app using Flutter, integrating GPS and health data APIs.

  • Implemented RESTful APIs for data retrieval and manipulation, ensuring ef...

View all Associate Software Engineer interview questions
A Business Analyst was asked 6mo ago
Q. Explain your role in your current project and how you handled customer issues.
Ans. 

As a Business Analyst, I facilitated communication and resolved issues between stakeholders and the development team.

  • Acted as a liaison between the client and the development team to ensure clear understanding of requirements.

  • In a problematic situation where the client was unhappy with the project timeline, I organized a meeting to discuss their concerns.

  • I gathered feedback from the client and prioritized their re...

View all Business Analyst interview questions
A Software Engineer was asked 7mo ago
Q. Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements.
Ans. 

Move all zeros to the end of an array of strings

  • Iterate through the array and keep track of the index to place non-zero elements

  • After iterating, fill the remaining indices with zeros

View all Software Engineer interview questions
A Senior Associate Software Engineer was asked 8mo ago
Q. If you have 2-3 tasks, how do you decide the priority?
Ans. 

I prioritize tasks based on deadlines, importance, and dependencies.

  • Evaluate deadlines and prioritize tasks with the closest deadline first

  • Consider the importance and impact of each task on the overall project

  • Take into account any dependencies between tasks and prioritize accordingly

  • Communicate with stakeholders to understand their priorities and align tasks accordingly

View all Senior Associate Software Engineer interview questions

What people are saying about Telstra

View All
a software engineer
2w
Offer from Telstra for Software Engineer role
I recently applied for this company and i was able to clear it. The interview process was very easy (no DSA) at all. I have cleared but this is the first company i will get offer from. I have 90 days notice period. Should i accept offer from this company or wait for some other company. I am currently working as software engineer in manufacturing company, Plus have you heard anything about Telstra company? There are providing me a hike of 28%
Got a question about Telstra?
Ask anonymously on communities.
A Senior Associate Software Engineer was asked 8mo ago
Q. Write the code for a doubly linked list.
Ans. 

Doubly linked list code implementation

  • Create a Node class with data, prev, and next pointers

  • Implement methods for insertion, deletion, and traversal

  • Handle edge cases like empty list, inserting at head/tail, etc.

View all Senior Associate Software Engineer interview questions
A Software Development Engineer was asked 8mo ago
Q. 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 u...

View all Software Development Engineer interview questions
A Software Development Engineer was asked 8mo ago
Q. What is the difference between 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: fin...

View all Software Development Engineer interview questions
Are these interview questions helpful?
A Data Engineer was asked 11mo ago
Q. Given a string, find the first non-repeating character in it and return its index. If it does not exist, return -1.
Ans. 

Find the first non-repeating character in a string using efficient algorithms.

  • Use a hash map to count occurrences of each character.

  • Iterate through the string again to find the first character with a count of 1.

  • Example: In 'leetcode', 'l' is the first unique character.

  • Example: In 'loveleetcode', 'v' is the first unique character.

View all Data Engineer interview questions
A Data Engineer was asked 12mo ago
Q. Write SQL queries to solve the following problems.
Ans. 

This SQL coding question tests your ability to manipulate and query data effectively.

  • Understand the requirements: Clarify what data is needed and how it should be structured.

  • Use SELECT statements: Retrieve specific columns from tables, e.g., SELECT name, age FROM users;

  • Join tables: Combine data from multiple tables using JOIN, e.g., SELECT * FROM orders JOIN customers ON orders.customer_id = customers.id;

  • Filter re...

View all Data Engineer interview questions
A Data Engineer was asked 12mo ago
Q. Write a Python program to solve a given problem. (You can use an online compiler).
Ans. 

This question tests your ability to write Python code for data engineering tasks.

  • Understand data types: Lists, dictionaries, sets, and tuples are essential in Python.

  • Use libraries: Familiarize yourself with Pandas and NumPy for data manipulation.

  • Practice SQL: Data engineers often work with databases, so SQL knowledge is crucial.

  • Data pipelines: Learn how to create ETL (Extract, Transform, Load) processes.

  • Cloud serv...

View all Data Engineer interview questions
1 2 3

Telstra Interview Experiences

51 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
  • Add your answer
  • Q2. One SQL query easy level
  • Ans. 

    This SQL query retrieves data from a database based on specific conditions.

    • Use SELECT to specify columns: e.g., SELECT name, age FROM users;

    • Use WHERE to filter results: e.g., WHERE age > 18;

    • Combine conditions with AND/OR: e.g., WHERE age > 18 AND city = 'New York';

    • Sort results with ORDER BY: e.g., ORDER BY age DESC;

    • Limit results with LIMIT: e.g., LIMIT 10;

  • Answered by AI
    Add your answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussion about projects
  • Add your answer
  • Q2. Do you have any questions
  • Add your answer
Anonymous

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
  • Add your answer
  • Q2. SQL Coding (Can be with an online compiler)
  • Ans. 

    This SQL coding question tests your ability to manipulate and query data effectively.

    • Understand the requirements: Clarify what data is needed and how it should be structured.

    • Use SELECT statements: Retrieve specific columns from tables, e.g., SELECT name, age FROM users;

    • Join tables: Combine data from multiple tables using JOIN, e.g., SELECT * FROM orders JOIN customers ON orders.customer_id = customers.id;

    • Filter results...

  • Answered by AI
    Add your answer
  • Q3. Python Coding (Can be with an online compiler)
  • Ans. 

    This question tests your ability to write Python code for data engineering tasks.

    • Understand data types: Lists, dictionaries, sets, and tuples are essential in Python.

    • Use libraries: Familiarize yourself with Pandas and NumPy for data manipulation.

    • Practice SQL: Data engineers often work with databases, so SQL knowledge is crucial.

    • Data pipelines: Learn how to create ETL (Extract, Transform, Load) processes.

    • Cloud services:...

  • Answered by AI
    Add your answer
  • Q4. PySpark Coding (All the coding answers have to be submitted to the interviewer)
  • Add your answer
  • Q5. PySpark Joins, and Databricks, and Vanilla Spark difference
  • Add your answer
Round 3 - Technical 

(3 Questions)

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

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

Software Development Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2024

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
    Add your answer
  • 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
    Add your answer

Skills evaluated in this interview

Anonymous

Senior Salesforce Developer Interview Questions & Answers

user image Anonymous

posted on 22 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. If your manager assigned you a task that needs to be done in certain manner with strict timeline and you have better approach for the same but It might take a lot of time. What will you do in that case?
  • Ans. 

    I would communicate with my manager to discuss the benefits of my approach while respecting the timeline constraints.

    • Assess the current task requirements and timeline to understand the constraints.

    • Prepare a detailed comparison of both approaches, highlighting the long-term benefits of my method.

    • Schedule a meeting with my manager to present my findings and discuss the potential trade-offs.

    • Be open to feedback and willing...

  • Answered by AI
    Add your answer
  • Q2. Discussions on projects and current job
  • Add your answer
Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Jul 2024

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
    Add your answer
  • Q2. Few coding questions. Find the first unique character in string
  • Ans. 

    Find the first non-repeating character in a string using efficient algorithms.

    • Use a hash map to count occurrences of each character.

    • Iterate through the string again to find the first character with a count of 1.

    • Example: In 'leetcode', 'l' is the first unique character.

    • Example: In 'loveleetcode', 'v' is the first unique character.

  • Answered by AI
    Add your answer
Round 3 - Technical 

(1 Question)

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

Skills evaluated in this interview

Anonymous

Customer Service Representative Interview Questions & Answers

user image RAM SAGAR

posted on 27 Jan 2025

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.
  • Add your answer
Anonymous

Software Development Engineer II Interview Questions & Answers

user image Sarthak Mishra

posted on 28 Aug 2024

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
  • Add your answer
  • Q2. Spring related questions
  • Add your answer
  • Q3. Questions related to cloud
  • Add your answer
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
    Add your answer
  • Q2. Design level questions
  • Add your answer
  • Q3. Microservices design questions
  • Add your answer
Round 4 - HR 

(3 Questions)

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

Interview Preparation Tips

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

Associate Software Engineer Interview Questions & Answers

user image Rutuja Ghadyalji

posted on 13 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. Currents projects you worked on
  • Ans. 

    I worked on various projects, including a web application for task management and a mobile app for fitness tracking.

    • Developed a task management web app using React and Node.js, enabling users to create, update, and delete tasks.

    • Collaborated with a team to build a mobile fitness tracking app using Flutter, integrating GPS and health data APIs.

    • Implemented RESTful APIs for data retrieval and manipulation, ensuring efficie...

  • Answered by AI
    Add your answer
Anonymous

Business Analyst Interview Questions & Answers

user image Anonymous

posted on 7 Dec 2024

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?
  • Add your answer
  • Q2. Explain your role in your current project and how you handled your customer in problematic situation?
  • Ans. 

    As a Business Analyst, I facilitated communication and resolved issues between stakeholders and the development team.

    • Acted as a liaison between the client and the development team to ensure clear understanding of requirements.

    • In a problematic situation where the client was unhappy with the project timeline, I organized a meeting to discuss their concerns.

    • I gathered feedback from the client and prioritized their require...

  • Answered by AI
    Add your answer
Anonymous

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
  • Add your answer
  • Q2. Azure Data Factory
  • Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. SQL handson questions
  • Add your answer
  • Q2. Python hands on question
  • Add your answer
Anonymous
More about working at Telstra
  • HQ - Melbourne, Australia
  • Telecom
  • 1k-5k Employees (India)

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. Explain your role in your current project and how you handled your customer in ...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 Interviews By Designations

  • Telstra Software Engineer Interview Questions
  • Telstra Data Engineer Interview Questions
  • Telstra Associate Software Engineer Interview Questions
  • Telstra Capacity Analyst Interview Questions
  • Telstra Business Analyst Interview Questions
  • Telstra Java Developer Interview Questions
  • Telstra Data Engineering Analyst Interview Questions
  • Telstra Project Manager Interview Questions
  • Show more
  • Telstra SDE (Software Development Engineer) Interview Questions
  • Telstra Developer Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Data Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Executive Interview Questions
  • Team Lead Interview Questions
  • Graduate Engineer Trainee (Get) Interview Questions
  • Accountant Interview Questions
  • Data Analyst Interview Questions
  • Show more
  • Senior Software Engineer Interview Questions
  • Manager Interview Questions

Overall Interview Experience Rating

4.1/5

based on 43 interview experiences

Difficulty level

Easy 16%
Moderate 80%
Hard 4%

Duration

Less than 2 weeks 59%
2-4 weeks 23%
4-6 weeks 14%
6-8 weeks 5%
View more

Interview Questions from Similar Companies

Vodafone Idea
Vodafone Idea Interview Questions
4.0
 • 594 Interviews
Ericsson
Ericsson Interview Questions
4.1
 • 434 Interviews
Nokia
Nokia Interview Questions
4.1
 • 290 Interviews
BT Group
BT Group Interview Questions
3.9
 • 204 Interviews
Verizon
Verizon Interview Questions
4.0
 • 119 Interviews
Huawei Technologies
Huawei Technologies Interview Questions
4.0
 • 116 Interviews
AT&T
AT&T Interview Questions
4.1
 • 59 Interviews
Ciena
Ciena Interview Questions
4.2
 • 40 Interviews
Rakuten Symphony
Rakuten Symphony Interview Questions
3.4
 • 39 Interviews
CommScope
CommScope Interview Questions
3.7
 • 37 Interviews
View all

Telstra Reviews and Ratings

based on 275 reviews

3.9/5

Rating in categories

3.5

Skill development

4.4

Work-life balance

3.9

Salary

3.3

Job security

4.0

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 275 Reviews and Ratings
Jobs at Telstra
Telstra
Accounting Support

Bangalore / Bengaluru

0-5 Yrs

Not Disclosed

Telstra
Senior Software Engineer

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Telstra
Software Engineer

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Explore more jobs
Telstra Salaries in India
Software Engineer
225 salaries
unlock blur

₹13.5 L/yr - ₹22.1 L/yr

Senior Software Engineer
129 salaries
unlock blur

₹29.4 L/yr - ₹50 L/yr

Associate Software Engineer
54 salaries
unlock blur

₹7.5 L/yr - ₹10.1 L/yr

Software Developer
50 salaries
unlock blur

₹7.9 L/yr - ₹30 L/yr

Scrum Master
46 salaries
unlock blur

₹21 L/yr - ₹37 L/yr

Explore more salaries
Compare Telstra with
Vodafone Idea

Vodafone Idea

4.0
Compare
Ericsson

Ericsson

4.1
Compare
Nokia

Nokia

4.1
Compare
BT Group

BT Group

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Telstra Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter