Upload Button Icon Add office photos
Engaged Employer

i

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

AVAYA Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

AVAYA Technical Specialist Interview Questions and Answers

Updated 17 May 2024

AVAYA Technical Specialist Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Sip call flow,media gateways
  • Q2. SBC used for what
  • Ans. 

    SBC stands for Session Border Controller, used for securing VoIP networks and managing SIP sessions.

    • Securing VoIP networks

    • Managing SIP sessions

    • Controlling signaling and media streams

    • Preventing toll fraud and DoS attacks

  • Answered by AI
  • Q3. Session manager function of avaya
  • Ans. 

    Session manager function of Avaya involves managing and controlling communication sessions within the Avaya system.

    • Session manager helps in routing calls and managing user permissions

    • It allows for centralized control and monitoring of communication sessions

    • Session manager integrates with other Avaya applications for seamless communication

    • Examples: call routing, user authentication, session monitoring

  • Answered by AI
  • Q4. Sip call flow and sip entity

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Basics of oops concepts,testing concepts,SQL
  • Q2. Make your introduction strong
Round 2 - Behavioral 

(2 Questions)

  • Q1. Situation on how to manage a team crucial times
  • Q2. How to go along with employees having diffrence of opinion
  • Ans. 

    Listen to their perspectives, encourage open communication, find common ground, and work towards a compromise.

    • Encourage open communication to understand each employee's perspective

    • Listen actively and show empathy towards their opinions

    • Find common ground and areas of agreement to build upon

    • Work towards a compromise that addresses the concerns of all parties involved

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on the topics what ever you put in your resume .Boldly say the correct answer .if you don't know the answer you can say you don't know it at the moment but you can learn it quickly
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Transaction in Spring Boot
  • Ans. 

    Transactions in Spring Boot help manage database operations as a single unit of work.

    • Transactions ensure ACID properties (Atomicity, Consistency, Isolation, Durability) for database operations.

    • Use @Transactional annotation to mark a method as transactional.

    • Transactions can be managed programmatically using TransactionTemplate.

    • Rollback can be triggered manually in case of exceptions.

    • Spring Boot supports both declarative

  • Answered by AI
  • Q2. Java Array and problem solving

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good organization

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions were mostly around system design, you will be given a case like a stock system and specific use case is asked to design end to end from UI to backend.
  • Q2. Some of the system debugging/performance improvement questions are asked from both UI and backend.

Interview Preparation Tips

Topics to prepare for Amadeus Technical Lead interview:
  • System Design
  • Performance Testing
  • Performance improvement
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain about the last issue you have worked on?
  • Q2. Be honest on this question for tue success
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 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 

(3 Questions)

  • Q1. C coding - volatile,
  • Q2. Telematic architecture
  • Q3. To run application on bare board
  • Ans. 

    To run an application on a bare board, you need to install the necessary software and configure the hardware.

    • Install an operating system on the bare board

    • Compile and load the application code onto the board

    • Configure any necessary drivers or libraries

    • Ensure the board has sufficient resources (memory, storage, etc.) for the application

    • Test and debug the application on the bare board

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Collection, LinkedList, Map, Basic java Questions, Interface
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions, Managerial question, why you are switching
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic of Oops and Garbage collection
Round 3 - Technical 

(1 Question)

  • Q1. Code Review in c# and also with some network regarding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Manager and technical team asking not related questions of development.
One of the worst interview ever given.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Implement minstack
  • Q2. How load balancers work
  • Ans. 

    Load balancers distribute incoming network traffic across multiple servers to ensure no single server is overwhelmed.

    • Load balancers monitor the health of servers and distribute traffic based on predefined algorithms.

    • They can be hardware-based or software-based.

    • Common algorithms used by load balancers include round-robin, least connections, and IP hash.

    • Load balancers can improve reliability and scalability of a website ...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. 2 sum problem to implement in O(n)
  • Ans. 

    The Two Sum problem involves finding two numbers in an array that add up to a target value.

    • Iterate through the array and store the difference between the target and current element in a hashmap.

    • Check if the current element exists in the hashmap, if yes, return the indices of the current element and the stored difference.

    • Time complexity of O(n) can be achieved by using a hashmap to store elements and their indices.

  • Answered by AI
  • Q2. About the projects i have done

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic sql queries about joins
Round 2 - HR 

(1 Question)

  • Q1. Regarding previous work experience

AVAYA Interview FAQs

How many rounds are there in AVAYA Technical Specialist interview?
AVAYA interview process usually has 1 rounds. The most common rounds in the AVAYA interview process are Technical.
How to prepare for AVAYA 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 AVAYA. The most common topics and skills that interviewers at AVAYA expect are Diagnostics, Hardware, PDF, Sales Support and Supervision.
What are the top questions asked in AVAYA Technical Specialist interview?

Some of the top questions asked at the AVAYA Technical Specialist interview -

  1. Session manager function of av...read more
  2. SBC used for w...read more
  3. Sip call flow and sip ent...read more

Tell us how to improve this page.

AVAYA Technical Specialist Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
VMware Software Interview Questions
4.4
 • 157 Interviews
View all
AVAYA Technical Specialist Salary
based on 57 salaries
₹6 L/yr - ₹10 L/yr
55% less than the average Technical Specialist Salary in India
View more details

AVAYA Technical Specialist Reviews and Ratings

based on 7 reviews

3.7/5

Rating in categories

2.7

Skill development

3.8

Work-life balance

3.9

Salary

2.7

Job security

3.8

Company culture

2.7

Promotions

2.9

Work satisfaction

Explore 7 Reviews and Ratings
Software Engineer
123 salaries
unlock blur

₹5.4 L/yr - ₹23 L/yr

Senior Technical Support Engineer
89 salaries
unlock blur

₹7 L/yr - ₹23.5 L/yr

Senior Software Engineer
80 salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Senior Technical Specialist
76 salaries
unlock blur

₹6 L/yr - ₹15 L/yr

Technical Support Engineer
71 salaries
unlock blur

₹5.2 L/yr - ₹19 L/yr

Explore more salaries
Compare AVAYA with

Cisco

4.1
Compare

Poly

2.7
Compare

Mitel

3.6
Compare

Genesys

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