Upload Button Icon Add office photos

Deutsche Telekom

Compare button icon Compare button icon Compare

Filter interviews by

Deutsche Telekom Interview Questions and Answers

Updated 30 Apr 2025
Popular Designations

20 Interview questions

A Senior Software Engineer was asked 1mo ago
Q. What are interceptors in Angular?
Ans. 

Interceptors in Angular are services that allow you to intercept and modify HTTP requests and responses.

  • Interceptors implement the HttpInterceptor interface.

  • They can modify request headers, handle errors, and log requests.

  • Example: Adding an authorization token to every request.

  • Interceptors can also transform responses before they reach the component.

  • They are registered in the AppModule using the HTTP_INTERCEPTORS ...

View all Senior Software Engineer interview questions
A Mobile expert intern was asked 5mo ago
Q. Can you share your experiences with mobile devices?
Ans. 

I have extensive experience with various mobile devices, including smartphones, tablets, and wearables.

  • Proficient in using both iOS and Android devices

  • Familiar with troubleshooting common issues on mobile devices

  • Experience in testing mobile apps on different devices and platforms

A Software Engineer was asked 5mo ago
Q. Write code using Java 8 Stream API.
Ans. 

Java 8 Stream API enables functional-style operations on collections, enhancing code readability and efficiency.

  • Streams can be created from collections, arrays, or I/O channels. Example: List<String> names = Arrays.asList('Alice', 'Bob'); Stream<String> stream = names.stream();

  • Common operations include filter, map, and reduce. Example: List<Integer> lengths = names.stream().map(String::length).co...

View all Software Engineer interview questions
An Application Support Engineer was asked 7mo ago
Q. How do you troubleshoot?
Ans. 

Troubleshooting involves identifying, isolating, and resolving technical issues to ensure smooth operation of applications.

  • Identify the issue by gathering information from users or logs

  • Isolate the problem by testing different components or configurations

  • Resolve the issue by applying fixes or workarounds

  • Document the troubleshooting process for future reference

View all Application Support Engineer interview questions
An Application Support Engineer was asked 7mo ago
Q. What is the Postman API?
Ans. 

Postman API is a collaboration platform for API development, testing, and management.

  • Postman API is a tool used for testing APIs by sending requests and receiving responses.

  • It allows users to create and save API requests, organize them into collections, and share them with team members.

  • Postman API can be used to automate testing, monitor APIs, and collaborate with team members on API development.

  • It supports variou...

View all Application Support Engineer interview questions
A Software Engineer was asked 8mo ago
Q. How can you find the largest number in an array without using data structures or loops in Java 8?
Ans. 

Use Java 8 Stream API to find the largest number in an array of strings without using additional data structures or loops.

  • Convert the array of strings to a stream of integers using map() and parseInt()

  • Use reduce() with Math::max to find the largest number in the stream

View all Software Engineer interview questions
A Software Engineer was asked 8mo ago
Q. Given an array, find all possible permutations of the elements in the array.
Ans. 

Permutations of an array of strings are all possible arrangements of the elements.

  • Use recursion to generate all permutations.

  • Swap elements to create different permutations.

  • Base case: when only one element is left, add the permutation to the result.

  • Example: Array ['A', 'B', 'C'] has permutations ['ABC', 'ACB', 'BAC', 'BCA', 'CBA', 'CAB'].

View all Software Engineer interview questions
Are these interview questions helpful?
A Sdet Automation Test Engineer was asked 12mo ago
Q. Write a Java program to reverse a string.
Ans. 

Java program to reverse a string

  • Create a char array from the input string

  • Use two pointers to swap characters from start and end of the array

  • Convert the char array back to a string and return

View all Sdet Automation Test Engineer interview questions
A Sdet Automation Test Engineer was asked 12mo ago
Q. What exceptions have you encountered during automation testing?
Ans. 

Exceptions encountered during automation testing can include element not found, timeout, invalid input, etc.

  • ElementNotVisibleException: When an element is present in the DOM but not visible on the page

  • TimeoutException: When a command takes longer than the timeout specified

  • NoSuchElementException: When an element could not be found in the DOM

  • StaleElementReferenceException: When an element is no longer attached to th...

View all Sdet Automation Test Engineer interview questions
A Sdet Automation Test Engineer was asked 12mo ago
Q. What are the meanings of API error codes?
Ans. 

API error codes are numerical or alphanumeric codes that indicate the type of error that occurred during an API request.

  • API error codes help developers identify and troubleshoot issues with their API requests.

  • Common API error codes include 400 Bad Request, 401 Unauthorized, 404 Not Found, 500 Internal Server Error.

  • Each API error code has a specific meaning and can provide valuable information for debugging.

View all Sdet Automation Test Engineer interview questions

Deutsche Telekom Interview Experiences

21 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to troubleshoot
  • Ans. 

    Troubleshooting involves identifying, isolating, and resolving technical issues to ensure smooth operation of applications.

    • Identify the issue by gathering information from users or logs

    • Isolate the problem by testing different components or configurations

    • Resolve the issue by applying fixes or workarounds

    • Document the troubleshooting process for future reference

  • Answered by AI
  • Q2. What is postman API
  • Ans. 

    Postman API is a collaboration platform for API development, testing, and management.

    • Postman API is a tool used for testing APIs by sending requests and receiving responses.

    • It allows users to create and save API requests, organize them into collections, and share them with team members.

    • Postman API can be used to automate testing, monitor APIs, and collaborate with team members on API development.

    • It supports various aut...

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image akhil mahendru

posted on 1 Jan 2025

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

(2 Questions)

  • Q1. Java8 stream api code
  • Ans. 

    Java 8 Stream API enables functional-style operations on collections, enhancing code readability and efficiency.

    • Streams can be created from collections, arrays, or I/O channels. Example: List<String> names = Arrays.asList('Alice', 'Bob'); Stream<String> stream = names.stream();

    • Common operations include filter, map, and reduce. Example: List<Integer> lengths = names.stream().map(String::length).collect...

  • Answered by AI
  • Q2. Right view of tree Spring boot situation based question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. OOPs Concepts, like Abstraction, Polymorphism, Encapsulation etc.
  • Q2. Write java program to reverse a string.
  • Ans. 

    Java program to reverse a string

    • Create a char array from the input string

    • Use two pointers to swap characters from start and end of the array

    • Convert the char array back to a string and return

  • Answered by AI
  • Q3. API error codes meanings.
  • Ans. 

    API error codes are numerical or alphanumeric codes that indicate the type of error that occurred during an API request.

    • API error codes help developers identify and troubleshoot issues with their API requests.

    • Common API error codes include 400 Bad Request, 401 Unauthorized, 404 Not Found, 500 Internal Server Error.

    • Each API error code has a specific meaning and can provide valuable information for debugging.

  • Answered by AI
  • Q4. Exceptions encountered during Automation.
  • Ans. 

    Exceptions encountered during automation testing can include element not found, timeout, invalid input, etc.

    • ElementNotVisibleException: When an element is present in the DOM but not visible on the page

    • TimeoutException: When a command takes longer than the timeout specified

    • NoSuchElementException: When an element could not be found in the DOM

    • StaleElementReferenceException: When an element is no longer attached to the DOM

    • ...

  • Answered by AI
Round 2 - Case Study 

App is taking long to process a functionality what could be the possible reasons?

Interview Preparation Tips

Interview preparation tips for other job seekers - Think of Developers point of view to get the interview cleared.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
No response

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Swift basics , class vs structure, closures, mvvm , solid principles
  • Q2. Design Patterns , Closures
Round 2 - Technical 

(1 Question)

  • Q1. Intermediate swift questions, architecture questions
Round 3 - HR 

(1 Question)

  • Q1. Family backhround, ladt company details

Interview Questions & Answers

user image Anonymous

posted on 6 Jan 2025

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

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What did you do until now?
  • Ans. 

    I have completed my Bachelor's degree in Computer Science and have worked on various mobile app development projects.

    • Completed Bachelor's degree in Computer Science

    • Worked on mobile app development projects

  • Answered by AI
  • Q2. What did you study?
  • Ans. 

    I studied Computer Science with a focus on mobile application development.

    • Bachelor's degree in Computer Science

    • Courses in mobile application development

    • Projects involving mobile app development

    • Internships related to mobile technology

  • Answered by AI
  • Q3. Can you share your experiences with mobile devices?
  • Ans. 

    I have extensive experience with various mobile devices, including smartphones, tablets, and wearables.

    • Proficient in using both iOS and Android devices

    • Familiar with troubleshooting common issues on mobile devices

    • Experience in testing mobile apps on different devices and platforms

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was satisfactory, and I received numerous questions regarding my experiences and knowledge.

SDE Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic leetcode questions, easy to medium level.

Round 2 - Coding Test 

Java concepts, OOPS, puzzles

Round 3 - HR 

(1 Question)

  • Q1. Basic behaviour related questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java basics, automation basics.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find all the permutation of the Array?
  • Q2. Find the largest number in an Array without DS and loop in Java 8?

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About Mobile testing

Senior Java Developer Interview Questions & Answers

user image Mohammad Siddiq

posted on 20 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 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 - Technical 

(5 Questions)

  • Q1. Difference btwn jdk , jre and jvm
  • Ans. 

    JDK is a development kit that includes JRE and tools for developing Java applications. JRE is a runtime environment for executing Java programs. JVM is a virtual machine that runs Java bytecode.

    • JDK (Java Development Kit) includes JRE (Java Runtime Environment) and development tools like compiler and debugger.

    • JRE (Java Runtime Environment) is a software package that provides the libraries and components necessary for ru...

  • Answered by AI
  • Q2. Difference btwn static and volatile
  • Ans. 

    Static variables are shared among all instances of a class, while volatile variables are used to indicate that a variable's value will be modified by different threads.

    • Static variables are initialized only once at the start of the program and retain their value throughout the program's execution.

    • Volatile variables are used to ensure visibility of changes to variables across multiple threads.

    • Static variables are accesse...

  • Answered by AI
  • Q3. What is final keyword
  • Ans. 

    Final keyword is used in Java to declare constants, prevent method overriding, and prevent class inheritance.

    • Used to declare constants - value cannot be changed once assigned

    • Prevents method overriding - method cannot be overridden in child classes

    • Prevents class inheritance - class cannot be extended

  • Answered by AI
  • Q4. Difference btwn paralle stream and stream
  • Ans. 

    Parallel stream allows processing elements concurrently, while stream processes elements sequentially.

    • Parallel stream can improve performance by utilizing multiple threads for processing.

    • Stream processes elements one by one in a sequential manner.

    • Example: stream().parallel() vs stream().sequential()

  • Answered by AI
  • Q5. What is stream used for
  • Ans. 

    Streams are used in Java to process collections of objects in a functional style.

    • Streams allow for concise and readable code when working with collections.

    • They support operations like filter, map, reduce, and collect.

    • Streams can be sequential or parallel, depending on the processing requirements.

    • Example: List<String> names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().filter(name -> name.startsWith("...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Deutsche Telekom?
Ask anonymously on communities.

Deutsche Telekom Interview FAQs

How many rounds are there in Deutsche Telekom interview?
Deutsche Telekom interview process usually has 1-2 rounds. The most common rounds in the Deutsche Telekom interview process are Technical, HR and Coding Test.
How to prepare for Deutsche Telekom 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 Deutsche Telekom. The most common topics and skills that interviewers at Deutsche Telekom expect are CSS, ASP.Net, Angular, C# and Bootstrap.
What are the top questions asked in Deutsche Telekom interview?

Some of the top questions asked at the Deutsche Telekom interview -

  1. Share your screen, write a API to get the logs of a spring boot application in ...read more
  2. Can you share your experiences with mobile devic...read more
  3. Find the largest number in an Array without DS and loop in Java...read more
How long is the Deutsche Telekom interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 20 interview experiences

Difficulty level

Easy 13%
Moderate 88%

Duration

Less than 2 weeks 83%
2-4 weeks 17%
View more

Interview Questions from Similar Companies

Ericsson Interview Questions
4.1
 • 434 Interviews
Nokia Interview Questions
4.1
 • 290 Interviews
BT Group Interview Questions
3.9
 • 203 Interviews
Verizon Interview Questions
4.0
 • 119 Interviews
AT&T Interview Questions
4.1
 • 59 Interviews
Telstra Interview Questions
4.0
 • 51 Interviews
Ciena Interview Questions
4.2
 • 40 Interviews
CommScope Interview Questions
3.7
 • 37 Interviews
View all

Deutsche Telekom Reviews and Ratings

based on 124 reviews

3.4/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

3.5

Salary

3.4

Job security

3.3

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 124 Reviews and Ratings
Software Engineer
201 salaries
unlock blur

₹8.9 L/yr - ₹30 L/yr

Senior Software Engineer
105 salaries
unlock blur

₹21.7 L/yr - ₹38 L/yr

Software Developer
58 salaries
unlock blur

₹6 L/yr - ₹15.2 L/yr

Sdet
36 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Devops Engineer
26 salaries
unlock blur

₹7 L/yr - ₹19.7 L/yr

Explore more salaries
Compare Deutsche Telekom with

Ericsson

4.1
Compare

Nokia

4.0
Compare

BT Group

3.9
Compare

Huawei Technologies

4.0
Compare
write
Share an Interview