Premium Employer

i

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

OCS Group Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

OCS Group Avaya Engineer L2 Interview Questions and Answers

Updated 25 May 2025

OCS Group Avaya Engineer L2 Interview Experiences

1 interview found

Avaya Engineer L2 Interview Questions & Answers

user image DARSHANKUMAR DILIP SONAWANE

posted on 25 May 2025

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

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Latest VC device experience
  • Ans. 

    Experience with the latest Avaya VC devices, focusing on features, integration, and user experience.

    • Familiar with Avaya IX Collaboration Unit, which enhances video conferencing quality.

    • Experience in integrating Avaya VC devices with existing telephony systems for seamless communication.

    • Utilized Avaya Cloud Video Interoperability to connect different video conferencing platforms.

    • Conducted training sessions for users on ...

  • Answered by AI
  • Q2. VC MTR setup
  • Ans. 

    VC MTR setup involves configuring video conferencing systems for optimal performance and user experience.

    • Ensure all devices are compatible with MTR (Microsoft Teams Rooms).

    • Configure network settings for optimal bandwidth and latency.

    • Set up audio and video devices, ensuring proper placement for best coverage.

    • Test the system with a trial meeting to troubleshoot any issues.

    • Regularly update firmware and software for securi...

  • Answered by AI

Top trending discussions

View All
Interview Hub
2w
a team lead
FeedCard Image
Got a question about OCS Group?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Work experience in mechanical
  • Ans. 

    I have 10 years of work experience in mechanical engineering.

    • Designed and implemented mechanical systems for various projects

    • Performed analysis and simulations to optimize performance

    • Collaborated with cross-functional teams to ensure project success

    • Managed and supervised junior engineers

    • Implemented cost-saving measures in manufacturing processes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Once refer your resume first

Avaya Engineer L2 Interview Questions Asked at Other Companies

asked in OCS Group
Q1. Latest VC device experience
asked in OCS Group
Q2. VC MTR setup

I applied via Referral and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Roles and responsibilities
  • Q2. Working hours
  • Q3. Facilities other than salary

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was more technical. They test your skills at work place management are the main requirement for the company.

I applied via Recruitment Consultant

Interview Questionnaire 

6 Questions

  • Q1. I need job Chennai city
  • Q2.  same job for me
  • Q3. I am happy with work tenon
  • Q4. I love with my work
  • Q5. Give your support all time
  • Q6. Thank you giving for net support

Interview Preparation Tips

Interview preparation tips for other job seekers - I am working with housekeeping department Chennai give your support with wall tenon group

I applied via LinkedIn and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

Basic accounting knowledge and account software and compliance required

Round 2 - One-on-one 

(1 Question)

  • Q1. Basice knowledge of accounting

Interview Preparation Tips

Interview preparation tips for other job seekers - Given the interview for better knowledge regarding given interview and the market
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. Why you quit the last job
  • Ans. 

    I left my last job to seek new challenges and opportunities for professional growth in a dynamic environment.

    • I felt that I had reached a plateau in my previous role, with limited opportunities for advancement.

    • I was looking for a position that aligned more closely with my career goals and aspirations.

    • The company culture was not a good fit for my values, and I wanted to work in a more collaborative environment.

    • I wanted t...

  • Answered by AI
  • Q2. Are you willing to relacate
  • Ans. 

    I am open to relocation as it presents opportunities for growth and new experiences in my career.

    • Relocating can enhance my professional development by exposing me to new challenges.

    • I have previously relocated for work, which helped me adapt to diverse environments.

    • Being open to relocation allows me to contribute to the company's goals in different locations.

  • Answered by AI

OCS Group HR Interview Questions

13 questions and answers

Q. Why did you leave your last company?
Q. Do you have a full driving license?
Q. How long have you worked in security?

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The round started at 8 PM. There was one question with several test cases and had to pass every test case in order to get a call for interview.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using iterative or dynamic programming techniques.

    • Fibonacci Definition: F(n) = F(n-1) + F(n-2) with F(1) = F(2) = 1.

    • Iterative Approach: Use a loop to calculate Fibonacci numbers up to N, storing only the last two values to save space.

    • Dynamic Programming: Store previously computed Fibonacci numbers in an array to avoid redundant calculations.

    • Time Complexity: Both iterative ...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

It was first round for 45mins and only one question was asked.

  • Q1. 

    Sum Of Zeroes Coverage Calculation

    You are provided with a binary matrix containing dimensions 'N * M', comprised only of 0s and 1s. Your task is to compute the aggregated sum of coverages for all the zer...

  • Ans. 

    Calculate the total coverage of zeros in a binary matrix based on adjacent ones in a defined neighborhood.

    • Matrix Traversal: Iterate through each cell in the N x M matrix to identify zeros.

    • Neighbor Counting: For each zero, check its top, bottom, left, and right neighbors to count the number of adjacent ones.

    • Boundary Conditions: Ensure that checks for neighbors do not go out of matrix bounds to avoid errors.

    • Example: In a...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

It was again 45 min interview and after an intro we quickly jumped in coding.

  • Q1. 

    Word Occurrence Counting

    Given a string 'S' of words, the goal is to determine the frequency of each word in the string. Consider a word as a sequence of one or more non-space characters. The string can h...

  • Ans. 

    Count the frequency of each unique word in a given string, handling multiple spaces and ignoring leading/trailing spaces.

    • Input Handling: Trim the string to remove leading/trailing spaces and split it by spaces to get individual words.

    • Word Counting: Use a dictionary to count occurrences of each word as you iterate through the list of words.

    • Output Format: Print each unique word along with its count, ensuring each output ...

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was an Technical + HR round. The interviewer was very understanding and he checked the overall knowledge of the subject.

  • Q1. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    The Kth Smallest Element problem involves finding the K-th smallest number in a distinct integer array.

    • Sorting Method: Sort the array and return the element at index K-1. Example: For ARR = [3, 1, 4, 2, 5] and K = 3, sorted array is [1, 2, 3, 4, 5], so return 3.

    • Time Complexity: Sorting the array takes O(N log N) time, which is efficient given the constraints.

    • Direct Access: Since all elements are distinct, accessing the...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in HyderabadEligibility criteriaNoCompass Group interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Dynamic Programming, Object Oriented Programming, DBMS, Operating SystemTime required to prepare for the interview - 10 monthsInterview preparation tips for other job seekers

Tip 1 : Competitive Coding helps initially, later Leetcode, GFG
Tip 2 : Add at least 2 projects in your resume
 

Application resume tips for other job seekers

Tip 1 : Add atleast two projects on Resume
Tip 2 : Study in depth from Resume and make your friend take your mock interview

Final outcome of the interviewRejected

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed before Jan 2022. There were 4 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 - HR 

(1 Question)

  • Q1. Basic questions and salary expectations
Round 3 - Technical 

(1 Question)

  • Q1. Technical round as per department
Round 4 - Case Study 

Head round for final salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't accept work which is not in your profile. Strictly follow profile and work timings.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. What are the key things to look for in an engagement?
  • Ans. 

    Key factors in engagement include communication, alignment of goals, and stakeholder involvement for successful outcomes.

    • Clear Communication: Ensure all parties understand objectives and expectations. For example, regular updates can prevent misunderstandings.

    • Alignment of Goals: Confirm that all stakeholders share common goals. For instance, aligning project milestones with team objectives enhances collaboration.

    • Stakeh...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Can you provide details about yourself and your background?
  • Ans. 

    Dynamic professional with a strong background in management, team leadership, and strategic planning, dedicated to driving organizational success.

    • Over 5 years of experience in management roles, leading teams to achieve operational excellence.

    • Successfully implemented a new project management system that increased team productivity by 30%.

    • Strong communication skills, demonstrated by leading cross-functional teams and pre...

  • Answered by AI
  • Q2. Can you explain your previous and current job descriptions?
  • Ans. 

    In my previous role, I managed team operations, while currently, I oversee project execution and client relations.

    • Led a team of 10 in my previous role, improving productivity by 20% through effective delegation and training.

    • Currently responsible for project management, ensuring timely delivery and adherence to budget constraints.

    • Developed strong client relationships, resulting in a 15% increase in repeat business over ...

  • Answered by AI

OCS Group Interview FAQs

What are the top questions asked in OCS Group Avaya Engineer L2 interview?

Some of the top questions asked at the OCS Group Avaya Engineer L2 interview -

  1. Latest VC device experie...read more
  2. VC MTR se...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Join OCS Group Facilities Services - Making people and places the best they can be.

Interview Questions from Similar Companies

Sodexo Interview Questions
4.1
 • 178 Interviews
Leadec India Interview Questions
4.0
 • 96 Interviews
BVG India Interview Questions
3.9
 • 55 Interviews
View all
Shift Engineer
115 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Hvac Technician
78 salaries
unlock blur

₹1.2 L/yr - ₹3.2 L/yr

Electrical Technician
71 salaries
unlock blur

₹1.5 L/yr - ₹3.2 L/yr

Electrician
54 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

Technical Supervisor
50 salaries
unlock blur

₹2.2 L/yr - ₹3.6 L/yr

Explore more salaries
Compare OCS Group with

Sodexo

4.1
Compare

Compass Group Support Services

4.0
Compare

ISS Facility Services

4.0
Compare

BVG India

4.0
Compare
write
Share an Interview