Upload Button Icon Add office photos

Filter interviews by

Polycom Interview Questions and Answers

Updated 3 Jun 2015

Polycom Interview Experiences

2 interviews found

Interview Questions & Answers

user image Anonymous

posted on 21 May 2015

Interview Questionnaire 

17 Questions

  • Q1. The interviewer started from the basics, and then gradually elevated the difficulty level(overall it was easy), the questions asked by him were-Q1. You are given a 32 bit unsigned integer and you have to s...
  • Q2. Create a structure for link list and insert two nodes in it(write the code). (Since i know STL as well, first i coded it in C and then used STL as well)
  • Ans. 

    Create and insert nodes in a linked list using C and STL.

    • Define a struct for the linked list node

    • Allocate memory for the nodes using malloc or new

    • Set the data and next pointer for each node

    • Use push_back or insert functions in STL for insertion

  • Answered by AI
  • Q3. You are given a pointer to a node in the link list(starting pointer is not given) and you have to delete that node
  • Ans. 

    Deleting a node in a linked list given a pointer to the node.

    • Save the next node's pointer in a temp variable

    • Copy the data of the next node to the current node

    • Delete the next node using the temp variable

  • Answered by AI
  • Q4. Clearly explain the TCP/IP protocol stack alongwith the functioning of each layer
  • Ans. 

    TCP/IP protocol stack consists of 4 layers: Application, Transport, Internet, and Network Access.

    • Application layer: interacts with user applications and provides services like email, file transfer, etc.

    • Transport layer: responsible for end-to-end communication between hosts and provides reliable data transfer using TCP or unreliable using UDP.

    • Internet layer: responsible for routing packets across networks using IP addre...

  • Answered by AI
  • Q5. How does a router routes a packet
  • Ans. 

    A router routes a packet by examining the destination IP address and forwarding it to the appropriate network.

    • The router receives a packet from a device on one of its interfaces

    • The router examines the destination IP address in the packet header

    • The router looks up the destination IP address in its routing table

    • The router forwards the packet to the appropriate interface based on the routing table

    • If the destination networ...

  • Answered by AI
  • Q6. How does a router uses longest prefix matching to route a packet
  • Ans. 

    A router uses longest prefix matching to find the most specific route for a packet.

    • The router looks at the destination IP address of the packet

    • It compares the address with the entries in its routing table

    • The router selects the entry with the longest matching prefix

    • The packet is then forwarded to the next hop in that route

    • If there is no matching prefix, the router uses the default route

    • Longest prefix matching ensures ef...

  • Answered by AI
  • Q7. What is page fault
  • Ans. 

    Page fault is an error that occurs when a program tries to access a page that is not currently in physical memory.

    • Occurs when a program tries to access a page not in physical memory

    • Operating system retrieves the page from disk to physical memory

    • Can cause performance issues if it happens frequently

    • Can be caused by insufficient memory or memory fragmentation

  • Answered by AI
  • Q8. How does a page fault is serviced
  • Ans. 

    Page fault is serviced by fetching the required page from disk to memory.

    • When a process tries to access a page that is not in memory, a page fault occurs.

    • The operating system then checks if the page is present in the disk.

    • If the page is not present in the disk, it results in a segmentation fault.

    • If the page is present in the disk, it is fetched to memory and the process continues.

    • The process is then restarted from the

  • Answered by AI
  • Q9. How ping is implemented(told him about the ICMP)
  • Q10. How can you calculate the round trip time and bandwidth of the network using Pin
  • Ans. 

    Calculating round trip time and bandwidth of network using Pin

    • Use Pin to measure the time it takes for a packet to travel from source to destination and back

    • Divide the round trip time by 2 to get the one-way latency

    • Calculate bandwidth by dividing the size of the packet by the one-way latency

    • Repeat the process with different packet sizes to get an average bandwidth

    • Use Pin's built-in tools to analyze the data and generat

  • Answered by AI
  • Q11. Can you measure congestion in the system using Ping and how?
  • Ans. 

    Yes, Ping can be used to measure congestion in the system.

    • Ping measures the round-trip time for packets to travel from the source to the destination.

    • If the round-trip time is high, it indicates congestion in the network.

    • Ping can also be used to measure packet loss, which is another indicator of congestion.

  • Answered by AI
  • Q12. Explain different algorithms that applies in networking domain
  • Ans. 

    Algorithms used in networking include routing, switching, and security protocols.

    • Routing algorithms determine the best path for data to travel between devices on a network.

    • Switching algorithms determine how data is forwarded between network devices.

    • Security algorithms are used to protect data and prevent unauthorized access.

    • Examples of routing algorithms include OSPF and BGP.

    • Examples of switching algorithms include Spa...

  • Answered by AI
  • Q13. How Minimum Spanning Tree is useful in Networking Domain
  • Ans. 

    Minimum Spanning Tree helps in finding the shortest path in a network.

    • MST helps in reducing the cost of network connections.

    • It is used in network design and optimization.

    • MST algorithms like Kruskal's and Prim's are used in network routing protocols.

    • MST can be used to find the shortest path between two nodes in a network.

    • Example: MST can be used to find the shortest path for data transmission in a computer network.

  • Answered by AI
  • Q14. Define Articulation Points and what is its significance in networking
  • Ans. 

    Articulation points are nodes in a network whose removal would disconnect the network or increase the number of connected components.

    • Articulation points are also known as cut vertices.

    • They are significant in network design and analysis as they help identify critical points in the network.

    • Removing an articulation point can cause the network to split into multiple disconnected components.

    • For example, in a computer networ...

  • Answered by AI
  • Q15. You are given an array of 0s, 1s and 2s, you have to sort it. (calculating the number of 0s,1s and 2s is not counted as the solution for this problem)
  • Ans. 

    Sort an array of 0s, 1s, and 2s without counting their occurrences.

    • Use three pointers to keep track of the last index of 0s, 1s, and 2s.

    • Iterate through the array and swap elements to their respective pointers.

    • Time complexity: O(n), Space complexity: O(1).

  • Answered by AI
  • Q16. What is Denial of Service attack and what is its remedy?
  • Ans. 

    A Denial of Service (DoS) attack is an attempt to make a website or network unavailable to users by overwhelming it with traffic.

    • DoS attack floods a network or server with traffic to make it unavailable to users

    • Remedy includes implementing firewalls, load balancers, and intrusion detection systems

    • Another remedy is to use a content delivery network (CDN) to distribute traffic

    • Examples of DoS attacks include Ping of Death

  • Answered by AI
  • Q17. What is Distributed Denial of Service attack?
  • Ans. 

    DDoS is a cyber attack where multiple systems flood a targeted server with traffic to make it unavailable.

    • DDoS attack overwhelms a server with traffic from multiple sources

    • Attackers use botnets to launch DDoS attacks

    • DDoS attacks can be mitigated by using specialized software and hardware

    • Examples of DDoS attacks include the 2016 Dyn cyberattack and the 2018 GitHub attack

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: the procedure started with the written round, it had 60 questions consisting of quantitative aptitude, logical reasoning and technical(c/c++, operating systems, computer networks, data structures and algorithms).Around 120 sat for this round and they shortlisted 17.

Round: HR Interview
Experience: They shortlisted 6 candidates and asked them to sit in a room and gave two sheets consisting of 50 statements each, the first sheet had 50 positive statements and the 2nd had 50 negative statements and we had to decide whether they are most significant/significant/least significant to us. (we had to answer any 15 of them).

College Name: NA
Motivation: About PolycomPolycom is a multinational corporation that develops video, voice and content collaboration and communication technology. Polycom employs approximately 3,800 employees and had annual revenues of approximately $1.4 billion in 2013. It is the largest pure-play collaboration company in its industry. The company also licenses: H.264 video codecs, Siren codecs, session initiation protocol, Native 1080p high-definition cameras and displays, Native 720p and 1080p high-definition encoding/decoding, low-latency architecture and low bandwidth utilization, wideband advanced audio coding with low delay (AAC-LD), multichannel spatial audio with echo cancellation and interference filters to eliminate feedback from mobile devices, Optimized environmental conditioning to provide the audio and video experience; and inter-operation with legacy video conferencing (Source: -----)

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Satya Irukulla

posted on 6 Apr 2015

Interview Preparation Tips

Round: Test
Experience: Aptitude and Logical reasoning were easy. Nothing  confusing. Prepare for the popular reasoning models and this part is done. Aptitude is just general Math. programming questions were slightly tricky. Mostly all the questions were of the format finding the output or finding the error in the code.
Tips: As i said earlier, prepare popular logical reasoning questions and try to find out some good coding rules (like difference between i++ and ++i )
Duration: 60 minutes
Total Questions: 60

Round: Technical Interview
Experience: All the questions were related to Computer Networks, Data Structures and your Resume.  Some puzzles were also asked
Tips: Be thorough with your resume. Prepare from CLRS (For any interview). and for networks, prepare for basic stuff and that should be enough.



Prepare some famous puzzles. there are many sites for this

Round: HR Interview
Experience: one simple coding question was asked not to test the coding skills, but to see how i work under pressure(The interviewer constantly asked how i could not do such a small question  and tried to annoy me) Then he gave me a situation  and asked me how i would handle it.
Tips: Keep calm and crack the interview. If you came up to this round then there is very less probability that you will be rejected. you can answer wrong in this round,but you cannot panic.

General Tips: Logical reasoning and Aptitude questions are important. Prepare for them too.
Skills: coding, theoritical knowledge , Working under pressure
College Name: IIT HYDERABAD

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 Resume tips
Round 2 - Coding Test 

First round was simply aptitude + technical + coding test on hacker rank . Easy one ,Not too hard

Round 3 - One-on-one 

(1 Question)

  • Q1. Second round was one to one technical+managerial round . Easy only basic ques only
Round 4 - Technical 

(1 Question)

  • Q1. Panel Interview (4 members) ,bit hard they asked deep ques related to projects and then 2 dsa medium level ques.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain your latest project

Interview Questionnaire 

1 Question

  • Q1. Why should we hire you and what quality do you admire more?
  • Ans. 

    You should hire me because of my proven track record in sales and my ability to build strong relationships with clients. The quality I admire most is resilience.

    • I have consistently exceeded sales targets in my previous roles, demonstrating my ability to drive results.

    • I have a strong network of clients and contacts in the industry, which will enable me to hit the ground running in this role.

    • I am highly skilled in buildi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was technical and professional too, interviewer test my patience, knowledge, communication skills and my thinking ability.When i went for the interview i am very nervous but when i see various candidate presented their i thought that i am only nervous or rest of people were also nervous, and that time i thought that i had to give my best. So most of the questions they asked to me were like related to my education, my curriculum vita as because i highlight my IT knowledge in my CV. I tried to gave them answers to all their questions, and as a fresher i tried to give my best. As i experience something new by the interview and i felt good after given the interview. So everyone, if you are thinking to go for an interview just go and try to keep calm your over thoughts and always think before you say anything, take your time and speak positively and most important thing never mismatch eye contact with the interviewer. Dress properly, put a little smile on your face and be ready to achieve that you want.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

C programming Linux operating system

Round 2 - Did not attend 

(2 Questions)

  • Q1. What is 3x2 array
  • Ans. 

    A 3x2 array is a two-dimensional array with 3 rows and 2 columns.

    • A 3x2 array can be represented as [['a', 'b'], ['c', 'd'], ['e', 'f']]

    • Each element in the array is accessed using two indices, one for the row and one for the column

    • Arrays are commonly used in programming to store and manipulate data

  • Answered by AI
  • Q2. What is mmu in linux
  • Ans. 

    MMU stands for Memory Management Unit in Linux, responsible for translating virtual memory addresses to physical memory addresses.

    • MMU is a hardware component that is responsible for managing the translation of virtual memory addresses to physical memory addresses.

    • It helps in providing memory protection and isolation between different processes running on the system.

    • MMU plays a crucial role in virtual memory management,...

  • Answered by AI
Round 3 - Did not attend 

(2 Questions)

  • Q1. No question asked
  • Q2. No question asked here

Interview Preparation Tips

Interview preparation tips for other job seekers - Be much more prepared in c language

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Medium to high level coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Technical questions were asked
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare coding and LLD + HLD
Prepare your coding language technical questions

Intern Interview Questions & Answers

AVAYA user image Anonymous

posted on 30 Jun 2021

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Various questions on operating system

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basic concepts and core computer subjects like Operating systems,Computer Networks, OOP,Data Structures
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Aptitude, Technical MCQs, Coding

Round 2 - Technical 

(3 Questions)

  • Q1. Write pseudocodes
  • Ans. 

    Writing pseudocodes for software engineering interview question

    • Start by defining the problem and its requirements

    • Break down the problem into smaller steps

    • Use clear and concise language to describe each step

    • Include necessary variables and data structures

    • Consider edge cases and error handling

    • Test the pseudocode with sample inputs

  • Answered by AI
  • Q2. Resume Projects
  • Q3. Computer Fundamentals
Round 3 - HR 

(2 Questions)

  • Q1. Strengths & weaknesses
  • Q2. Why you want to work at avaya?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

1 hr for 3 codes mostly .

Round 2 - Aptitude Test 

30 mins quants and 30 mins coding mcq

Round 3 - Technical 

(2 Questions)

  • Q1. Palindrome of string
  • Ans. 

    A palindrome of a string is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the string is equal to its reverse to determine if it is a palindrome.

    • Ignore spaces and punctuation when checking for palindromes.

    • Examples: 'racecar', 'madam', '12321'

  • Answered by AI
  • Q2. Sorting an array
  • Ans. 

    Sorting an array of strings

    • Use a sorting algorithm like quicksort or mergesort

    • Consider the length of the strings for efficiency

    • Use a comparison function to determine the order of strings

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What are your hobbies?
  • Ans. 

    My hobbies include playing guitar, hiking, and reading science fiction novels.

    • Playing guitar: I enjoy learning new songs and practicing different techniques.

    • Hiking: I love exploring nature trails and challenging myself with long hikes.

    • Reading science fiction novels: I find it fascinating to escape into imaginative worlds and explore futuristic concepts.

  • Answered by AI
  • Q2. Why do you wish to join Avaya.
  • Ans. 

    I wish to join Avaya because of its reputation for innovation and cutting-edge technology in the telecommunications industry.

    • Avaya is known for its innovative solutions in the telecommunications industry

    • I am excited about the opportunity to work with cutting-edge technology at Avaya

    • I believe Avaya's work culture and values align with my own professional goals

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Polycom Interview FAQs

What are the top questions asked in Polycom interview?

Some of the top questions asked at the Polycom interview -

  1. You are given an array of 0s, 1s and 2s, you have to sort it. (calculating the ...read more
  2. Can you measure congestion in the system using Ping and h...read more
  3. Create a structure for link list and insert two nodes in it(write the code). (S...read more

Recently Viewed

INTERVIEWS

TCS

No Interviews

INTERVIEWS

Polycom

No Interviews

INTERVIEWS

Xome

No Interviews

INTERVIEWS

QSC, LLC

No Interviews

DESIGNATION

DESIGNATION

DESIGNATION

INTERVIEWS

PwC

No Interviews

INTERVIEWS

Lenovo

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Samsung Interview Questions
3.9
 • 545 Interviews
Dell Interview Questions
4.0
 • 385 Interviews
Cisco Interview Questions
4.1
 • 370 Interviews
AVAYA Interview Questions
3.3
 • 39 Interviews
Logitech Interview Questions
4.5
 • 12 Interviews
View all

Polycom Reviews and Ratings

based on 27 reviews

4.4/5

Rating in categories

3.9

Skill development

4.4

Work-life balance

4.3

Salary

3.4

Job security

4.4

Company culture

4.0

Promotions

4.3

Work satisfaction

Explore 27 Reviews and Ratings
Staff Engineer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Polycom with

Cisco

4.1
Compare

AVAYA

3.3
Compare

Huawei Technologies

4.0
Compare

Zoom Video Communications

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