Upload Button Icon Add office photos

AT&T

Compare button icon Compare button icon Compare

Filter interviews by

AT&T Senior Technical Specialist Interview Questions and Answers

Updated 29 May 2024

AT&T Senior Technical Specialist Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Where do you see yourself in 5 years
  • Q2. Why did you leave your last company

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your resume well

Interview questions from similar companies

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

I applied via Referral and was interviewed before Nov 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. How are micro services different from monolithic model?
  • Ans. 

    Microservices are smaller, independent services that work together, while monolithic model is a single, large application.

    • Microservices are smaller, independent services that can be developed, deployed, and scaled independently.

    • Monolithic model is a single, large application where all components are tightly coupled.

    • Microservices communicate with each other through APIs, while monolithic applications use in-process comm...

  • Answered by AI
  • Q2. Inter service communication in a distributed system
  • Ans. 

    Inter service communication in a distributed system involves communication between different services to achieve a common goal.

    • Use of APIs for communication between services

    • Message queues for asynchronous communication

    • Service discovery for locating and connecting to services

    • Implementing protocols like REST, gRPC, or MQTT

    • Handling communication failures and retries

  • Answered by AI
  • Q3. Explain pub sub model
  • Ans. 

    Pub sub model is a messaging pattern where senders (publishers) of messages do not program the messages to be sent directly to specific receivers (subscribers).

    • Publishers send messages to a central topic or channel without specifying the recipients

    • Subscribers subscribe to the topics or channels they are interested in and receive messages from there

    • Decouples the sender and receiver, allowing for more flexibility and sca...

  • Answered by AI
Round 2 - Coding Test 

Implement synchronisation between Go routines

Round 3 - Technical 

(2 Questions)

  • Q1. How Kubernetes handles scaling?
  • Ans. 

    Kubernetes handles scaling by automatically adjusting the number of pods based on resource usage.

    • Kubernetes uses Horizontal Pod Autoscaler (HPA) to automatically scale the number of pods based on CPU or memory usage.

    • HPA adjusts the number of replicas of a Deployment, ReplicaSet, or StatefulSet.

    • Kubernetes also supports Vertical Pod Autoscaler (VPA) for adjusting resource requests and limits of pods based on resource usa...

  • Answered by AI
  • Q2. Difference between containers and pods
  • Ans. 

    Containers are a lightweight, standalone executable package that includes everything needed to run a piece of software, while pods are a group of one or more containers that share resources and are scheduled together on the same host.

    • Containers are individual units of software that package up code and dependencies, while pods are a higher-level concept in Kubernetes that can contain one or more containers.

    • Containers ar...

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. Difficult situations handled in my career
  • Q2. Why are you quitting your previous job?

Skills evaluated in this interview

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

(2 Questions)

  • Q1. SQL queries based on design and optimization
  • Q2. Java concepts around data structure and algorithms
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2022. 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 

(3 Questions)

  • Q1. Entire background of Human Resources
  • Ans. 

    Human Resources encompasses various functions related to managing and developing an organization's workforce.

    • Recruitment and selection

    • Employee onboarding and orientation

    • Performance management

    • Training and development

    • Compensation and benefits

    • Employee relations

    • HR policies and procedures

    • Legal compliance

    • HR analytics and reporting

  • Answered by AI
  • Q2. Checked my convincing skills
  • Q3. Situational Questions

Interview Preparation Tips

Topics to prepare for Jio Talent Acquisition Specialist interview:
  • IT Recruitment
Interview preparation tips for other job seekers - Be confident and be thorough with your preparations.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 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 

(2 Questions)

  • Q1. Explain how you automate using Robot framework
  • Ans. 

    I automate using Robot framework by creating test cases in a keyword-driven format and utilizing built-in libraries and custom keywords.

    • Create test cases using Robot framework syntax

    • Utilize built-in libraries for common tasks

    • Develop custom keywords for specific automation needs

    • Leverage variables and data-driven testing

    • Integrate with external tools and APIs for comprehensive automation

  • Answered by AI
  • Q2. What was the toughest problem you identified and prevented from happening in field?
Round 3 - HR 

(2 Questions)

  • Q1. Why did you choose Nokia?
  • Q2. Why did you choose this domain for applying?

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed for a test role. So mainly know about Python and robot framework and how do you use automation on a daily basis to solve problems. Be prepared with example scenarios and how you tackled them. Explain some of the complex problems identified by you and how you worked and solved them

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse linked list
  • Q2. Find substring in a given string
  • Ans. 

    Use string methods to find a substring within a given string.

    • Use the indexOf() method to find the starting index of the substring within the string.

    • Use the substring() method to extract the substring based on the starting index and length.

    • Consider using regular expressions for more complex substring matching.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Find loop in linked list
  • Ans. 

    Detecting a loop in a linked list

    • Use two pointers approach - slow and fast pointers

    • If there is a loop, the fast pointer will eventually meet the slow pointer

    • Check if the fast pointer reaches the end of the list (null) before meeting the slow pointer

  • Answered by AI
  • Q2. Delete node from linked list
  • Ans. 

    To delete a node from a linked list, update the pointers of the previous node to skip the node to be deleted.

    • Traverse the linked list to find the node to be deleted.

    • Update the 'next' pointer of the previous node to skip the node to be deleted.

    • Free the memory allocated to the node to be deleted.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is your salary expectations
  • Ans. 

    My salary expectations are based on my experience, skills, and the market rate for this position.

    • Research the average salary range for Technical Specialists in the industry and location

    • Consider your level of experience and expertise in the field

    • Factor in any additional benefits or perks offered by the company

    • Be prepared to negotiate based on the job responsibilities and requirements

  • Answered by AI
  • Q2. Your strength and weakness
  • Ans. 

    My strength is my attention to detail and my weakness is my tendency to overthink.

    • Strength: Attention to detail - I always make sure to thoroughly review my work to catch any errors or inconsistencies.

    • Weakness: Overthinking - Sometimes I spend too much time analyzing a situation and struggle to make decisions quickly.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Can you describe your previous experience?
  • Q2. RF technical questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Details project technical questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. How are micro services different from monolithic model?
  • Ans. 

    Microservices are smaller, independent services that work together, while monolithic model is a single, large application.

    • Microservices are smaller, independent services that can be developed, deployed, and scaled independently.

    • Monolithic model is a single, large application where all components are tightly coupled.

    • Microservices communicate with each other through APIs, while monolithic applications use in-process comm...

  • Answered by AI
  • Q2. Inter service communication in a distributed system
  • Ans. 

    Inter service communication in a distributed system involves communication between different services to achieve a common goal.

    • Use of APIs for communication between services

    • Message queues for asynchronous communication

    • Service discovery for locating and connecting to services

    • Implementing protocols like REST, gRPC, or MQTT

    • Handling communication failures and retries

  • Answered by AI
  • Q3. Explain pub sub model
  • Ans. 

    Pub sub model is a messaging pattern where senders (publishers) of messages do not program the messages to be sent directly to specific receivers (subscribers).

    • Publishers send messages to a central topic or channel without specifying the recipients

    • Subscribers subscribe to the topics or channels they are interested in and receive messages from there

    • Decouples the sender and receiver, allowing for more flexibility and sca...

  • Answered by AI
Round 2 - Coding Test 

Implement synchronisation between Go routines

Round 3 - Technical 

(2 Questions)

  • Q1. How Kubernetes handles scaling?
  • Ans. 

    Kubernetes handles scaling by automatically adjusting the number of pods based on resource usage.

    • Kubernetes uses Horizontal Pod Autoscaler (HPA) to automatically scale the number of pods based on CPU or memory usage.

    • HPA adjusts the number of replicas of a Deployment, ReplicaSet, or StatefulSet.

    • Kubernetes also supports Vertical Pod Autoscaler (VPA) for adjusting resource requests and limits of pods based on resource usa...

  • Answered by AI
  • Q2. Difference between containers and pods
  • Ans. 

    Containers are a lightweight, standalone executable package that includes everything needed to run a piece of software, while pods are a group of one or more containers that share resources and are scheduled together on the same host.

    • Containers are individual units of software that package up code and dependencies, while pods are a higher-level concept in Kubernetes that can contain one or more containers.

    • Containers ar...

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. Difficult situations handled in my career
  • Q2. Why are you quitting your previous job?

Skills evaluated in this interview

AT&T Interview FAQs

How many rounds are there in AT&T Senior Technical Specialist interview?
AT&T interview process usually has 1 rounds. The most common rounds in the AT&T interview process are One-on-one Round.
How to prepare for AT&T Senior Technical Specialist 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 AT&T. The most common topics and skills that interviewers at AT&T expect are Information Technology, Java, Python, Agile and SQL.

Tell us how to improve this page.

AT&T Senior Technical Specialist Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Bharti Airtel Interview Questions
4.0
 • 840 Interviews
Vodafone Idea Interview Questions
4.1
 • 555 Interviews
Ericsson Interview Questions
4.1
 • 412 Interviews
Nokia Interview Questions
4.1
 • 274 Interviews
ACT Fibernet Interview Questions
4.0
 • 133 Interviews
Verizon Interview Questions
4.1
 • 113 Interviews
View all
AT&T Senior Technical Specialist Salary
based on 137 salaries
₹20 L/yr - ₹49.8 L/yr
79% more than the average Senior Technical Specialist Salary in India
View more details

AT&T Senior Technical Specialist Reviews and Ratings

based on 17 reviews

3.9/5

Rating in categories

3.6

Skill development

4.6

Work-life balance

4.6

Salary

3.8

Job security

4.4

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 17 Reviews and Ratings
Technical Specialist
306 salaries
unlock blur

₹14 L/yr - ₹38 L/yr

Senior Associate
276 salaries
unlock blur

₹7.5 L/yr - ₹20.6 L/yr

Network Engineer
221 salaries
unlock blur

₹3.4 L/yr - ₹13.6 L/yr

Senior Technical Specialist
137 salaries
unlock blur

₹20 L/yr - ₹49.8 L/yr

Senior Network Engineer
110 salaries
unlock blur

₹7 L/yr - ₹22 L/yr

Explore more salaries
Compare AT&T with

Verizon

4.1
Compare

Vodafone Idea

4.1
Compare

Bharti Airtel

4.0
Compare

Reliance Communications

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