Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Deutsche Telekom Digital Labs Team. If you also belong to the team, you can get access from here

Deutsche Telekom Digital Labs Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Deutsche Telekom Digital Labs Senior Test Engineer Interview Questions and Answers

Updated 22 Sep 2023

Deutsche Telekom Digital Labs Senior Test Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Slenium is good tool or manual testing is good?
  • Ans. 

    Selenium is a good tool for automated testing, while manual testing is essential for certain scenarios.

    • Selenium is great for automating repetitive test cases and regression testing

    • Manual testing is important for exploratory testing and usability testing

    • Combining both Selenium and manual testing can provide comprehensive test coverage

  • Answered by AI
  • Q2. What is test framework?
  • Ans. 

    A test framework is a set of guidelines or rules used for creating and designing test cases and test scripts.

    • Test framework provides structure and organization for testing activities

    • It includes tools, libraries, coding standards, and best practices

    • Examples include Selenium for web testing, JUnit for unit testing

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How to do automation testing?
  • Ans. 

    Automation testing involves using tools to execute test cases and compare actual outcomes with expected outcomes.

    • Identify test cases that can be automated

    • Select appropriate automation tools like Selenium, Appium, etc.

    • Develop test scripts to automate test cases

    • Execute test scripts and analyze results

    • Integrate automation testing into CI/CD pipeline for continuous testing

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Really bad people work here with no real knowledge and too much attitude. HR people have attitude like they own company. Managers are super idiots who have no idea of technology amnd looks like management children are become managers.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How will you sync your distributed systems
  • Ans. 

    I will use a combination of messaging systems, data replication, and versioning to ensure consistency and availability.

    • Use messaging systems like Kafka or RabbitMQ to ensure reliable communication between systems

    • Implement data replication to ensure that data is available on multiple nodes

    • Use versioning to ensure that all nodes are working with the same data

    • Implement conflict resolution strategies to handle conflicts th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just be yourself, they will not ask you irrelevant questions, at least in my case.

I applied via Campus Placement and was interviewed before Jun 2021. There were 5 interview rounds.

Round 1 - Aptitude Test 

It has aptitude and coding based questions.For coding you can choose any coding language

Round 2 - Group Discussion 

There will be a GD for 7-10 people on random topic

Round 3 - Technical 

(1 Question)

  • Q1. 1st TR,ask to write a code of your preference.Linux commands,SQL
Round 4 - Technical 

(1 Question)

  • Q1. 2nd TR ,ask about the projects you have done
Round 5 - HR 

(1 Question)

  • Q1. Basic HR round,where they will discuss about the company , job role etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The above process is for freshers which is of 2 years back.there might be change in process.

Interview Questionnaire 

1 Question

  • Q1. All regarding networking and c

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is difference between flip-flop and Latches?
  • Ans. 

    Flip-flops and latches are sequential logic circuits used to store and manipulate binary data.

    • Flip-flops are edge-triggered devices, while latches are level-sensitive devices.

    • Flip-flops have separate clock and data inputs, while latches have a single input for both clock and data.

    • Flip-flops are used in synchronous circuits, while latches are used in asynchronous circuits.

    • Flip-flops are more complex and require more cir...

  • Answered by AI
  • Q2. Where is the money needed to recruited you for embedur system?.The Hr will ask.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply or just putting resume to this company.As the hr will make money with this job. They don't deseve Talented candidates.They want referrals and salary cuts for hr to hire you.Instead of hiring candidates for software position, They should hire best Hr first (definitely in chennai)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 - One-on-one 

(2 Questions)

  • Q1. Programming in C language
  • Ans. 

    C language is a powerful and efficient programming language commonly used for system programming and embedded systems.

    • C language is a procedural programming language

    • It is widely used for developing operating systems, compilers, and embedded systems

    • C is known for its efficiency and low-level access to memory

    • Example: Declaring an array in C - int arr[5];

  • Answered by AI
  • Q2. DS basics Linked list

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Basic questions of angular and javascript.
  • Q2. Es6 feature , typescript features
  • Q3. Promise, observable, focus on syntax of every thing like interceptor, routing, gaurd and all .
Round 2 - Technical 

(3 Questions)

  • Q1. Behaviour subject, subject, life cycle hooks
  • Q2. This round was not very easy in my case.
  • Q3. Be prepared for array and object of array questions. Like sorting, searching, filtering , any logic .
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions and managerial round. Not being hard . But learn about your project and past organisation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 coding questions and 7 aptitude questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Linked List creation was asked
Round 3 - Assignment 

General HR questions

I applied via Campus Placement and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Duration: 1hr
Topics: Array, LinkedList,Stack

Round 2 - Technical 

(2 Questions)

  • Q1. Write code for Insertion in a binary tree.
  • Ans. 

    Code for insertion in a binary tree

    • Create a new node with the given data

    • If the tree is empty, make the new node as root

    • Else, traverse the tree to find the appropriate position to insert the new node

    • If the data is less than the current node, go to the left subtree

    • If the data is greater than the current node, go to the right subtree

    • Repeat until an appropriate position is found

    • Set the new node as the child of the appropri

  • Answered by AI
  • Q2. Write code for quick sort
  • Ans. 

    Quick sort is a divide-and-conquer algorithm that sorts an array by partitioning it into two sub-arrays.

    • Choose a pivot element from the array

    • Partition the array around the pivot element

    • Recursively apply quick sort to the left and right sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Various DBMS related question(JOINS, SORT, LIMIT)
Round 4 - HR 

(2 Questions)

  • Q1. Tell us about yourself.
  • Q2. Why do want to join the company

Interview Preparation Tips

Topics to prepare for Hughes Systique Corporation Software Engineer interview:
  • C++
  • Data Structures
  • SQL
Interview preparation tips for other job seekers - Just be confident and explain your thought process and go with the flow

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Android basic + DSA and problem solving

Round 3 - Technical 

(1 Question)

  • Q1. Android in depth
  • Ans. 

    Android is a mobile operating system developed by Google, based on the Linux kernel.

    • Android is open-source and allows developers to create applications using Java or Kotlin.

    • Android apps can be distributed through the Google Play Store or other third-party app stores.

    • Android supports a wide range of devices, from smartphones and tablets to smart TVs and wearables.

    • Android provides a rich set of APIs for accessing device ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good culture, but security of job is a major issue here

Skills evaluated in this interview

Deutsche Telekom Digital Labs Interview FAQs

How many rounds are there in Deutsche Telekom Digital Labs Senior Test Engineer interview?
Deutsche Telekom Digital Labs interview process usually has 3 rounds. The most common rounds in the Deutsche Telekom Digital Labs interview process are Technical and Resume Shortlist.
What are the top questions asked in Deutsche Telekom Digital Labs Senior Test Engineer interview?

Some of the top questions asked at the Deutsche Telekom Digital Labs Senior Test Engineer interview -

  1. Slenium is good tool or manual testing is go...read more
  2. What is test framewo...read more
  3. How to do automation testi...read more

Tell us how to improve this page.

Deutsche Telekom Digital Labs Senior Test Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 207 Interviews
MathCo Interview Questions
2.9
 • 112 Interviews
Zeta Interview Questions
3.4
 • 70 Interviews
Kiya.ai Interview Questions
3.2
 • 49 Interviews
embedUR Systems Interview Questions
3.2
 • 48 Interviews
Busibud Interview Questions
4.0
 • 42 Interviews
Subex Interview Questions
3.5
 • 35 Interviews
CoinDCX Interview Questions
3.7
 • 29 Interviews
View all
Software Engineer
228 salaries
unlock blur

₹8 L/yr - ₹26 L/yr

Senior Software Engineer
120 salaries
unlock blur

₹20 L/yr - ₹40 L/yr

Devops Engineer
63 salaries
unlock blur

₹8.5 L/yr - ₹25 L/yr

Sdet Automation Test Engineer
46 salaries
unlock blur

₹10 L/yr - ₹22.7 L/yr

Software Developer
37 salaries
unlock blur

₹8.1 L/yr - ₹25.2 L/yr

Explore more salaries
Compare Deutsche Telekom Digital Labs with

Fractal Analytics

4.0
Compare

Kiya.ai

3.2
Compare

Subex

3.5
Compare

Zeta

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