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

I was interviewed in Feb 2017.

Interview Preparation Tips

Round: Test
Experience: It was a simple aptitude test in which around 150 students cleared the test.
Duration: 1 hour
Total Questions: 40

Round: Test
Experience: Three programs were given and we had to write the code in either java ,c or c++ and get the required output.Around 90 students cleared this round.
Duration: 1 hour 30 minutes
Total Questions: 3

College Name: VIT Vellore

I was interviewed before May 2016.

Interview Preparation Tips

Round: Test
Experience: The test was conducted through Cocubes. It was moderately difficult. Some of the questions are time taking. We need to be decisive in attempting such questions.
Tips: Need to manage time properly. Should assess and choose which questions to attempt and which ones to leave.
Duration: 1 hour
Total Questions: 30

Round: Test
Experience: The three questions are of three different levels.

1. You will be given two numbers. The first one is the starting point and the second one is the ending point of a range of integers. You have to count the number of integers in that range which are divisible by the first number.

Ex : INPUT : 3 18
OUTPUT : 6

2. You will be given a number. You have to find the sum of the digits. If the sum exceeds 9, you have to add the digits of the sum recursively until you a get a single digit sum.

EX : INPUT : 9999
OUTPUT : 9

Explanation: 9999 => 9 +9+9+9=36 => 3+6 =9

3. You will be given an array of characters which include ( L, R , or a number in the range '0' to '9'). A ball is kept on a line of integers initially kept at zero. The ball has to execute the instructions sequentially as follows:
(i) If an 'L' character is encountered, the ;position of the ball has to be decremented.
(ii) If an 'R' character is encountered, the position of the ball has to be incremented.
(iii) If an integer (in the range '0' to '9) is encountered , we have to go to that index in the array and execute the instruction present in that index.

Finally, after all the instructions are executed, you have to print the final position of the ball.

EX : INPUT :
Number of instruction : 5
Instructions: LR1R2

OUTPUT : 3

Explanation :
(i) Initially, the ball is at 0. Since the 0th index in the array is 'L' , the ball moves to 0-1= -1 position.
(ii) The 1st index is 'R' hence, the position of the ball is -1 +1 = 0 position.
(iii) The 2nd index is '1', hence we have to go to index 1 in the array which is 'R', hence the new position is 0+1 =1.
(iv) The 3rd index is 'R', hence the new position is 1 +1 =2.
(v) The 4th index is '2' , hence we have to go to 2nd index is '1' , hence we have to go again to 1st index , which is 'R' hence the final position is 2+1 =3.

Tips: We need to solve all the three the problems to have better chances of clearing this round.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: The interview was focussed majorly on coding. It went for about 45min with around 10 coding problems given to solve. Some basics of Computer networking are also tested in this round.
Tips: Be prepared with some basics of networking. As the company's main focus is on Telecom, good knowledge in telecom and networking would be a big advantage.

Round: Technical Interview
Experience: This round was focused on the aptitude and reasoning skills. Some puzzles were given in this round. These puzzles are of moderately complex and are more common ones in interviews. Like the (find the heavier ball among three balls using a balance in min no. of attempts).
Tips: Sometimes the interviewer tries to confuse. You need to be confident with your answers and explaination.

Round: HR Interview
Experience: The interview was more of a traditional HR round. Majorly concentrated on the final year project, personal strengths and weaknesses.

Skills: Coding Skills, Computer Networking, C Language Basics
College Name: G Pulla Reddy College of Engineering & Technology

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Strength
  • Q3. Weaknesses
  • Q4. Hobby
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes, which is 2 fishes.

    • To make the red fishes 98%, subtract 1% (2 fishes) from 99% (198 fishes).

    • To find the number of fishes to be removed, divide the difference by 1% (2 fishes).

    • Therefore, 50 fishes have to be removed to make the red fishes 98%.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skills, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Strength
  • Q3. Weaknesses
  • Q4. Hobbies
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find the number of red fishes.

    • Subtract the number of red fishes from 200 to find the number of non-red fishes.

    • Calculate 2% of the total number of fishes to find the desired number of red fishes.

    • Subtract the desired number of red fishes from the current number of red fishes to find the number of fishes to be removed.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Weaknesses
  • Q3. Strength
  • Q4. Hobby
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find out how many fishes represent 1%.

    • Multiply the result by 2 to find out how many fishes represent 2%.

    • Subtract the result from 200 to find out how many fishes represent 98%.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

Interview Preparation Tips

Round: Test
Experience: The first consisted of an online test which had an aptitude section which was pretty simply and then a programming section consisting of three different programs. The programs were logical required basic knowledge of array, sorting and a little bit of data structures.

Round: Technical Interview
Experience: Around 13 of us were shortlisted for the interview round, B.Tech and M.Tech included. The interview round was mostly interactive, where we had to mention about the various interns that we went through. A few programming questions were asked based on topics which we were comfortable with.
Tips: Just get used to coding, data structures and basic aptitude. GRE preparation as such helped me.

Round: HR Interview
Experience: Finally there was a HR round in which I was asked as to why I would like to work in Samsung R&D and general things about interests and future plans. On the whole Samsung took 3 B.Tech students and 2 M.Tech students when they came for placements apart from PPOs.

General Tips: Personally I feel that one should apply in only those companies in which they are sure of having job satisfaction. So don't apply to companies which you are not interested in just for the sake of having a backup because once you are placed you do not have a second chance.
Do not get dejected if you do not get through in the first few tries. Keep your hopes up and be confident when ever you get to interview rounds. Try to be assertive when giving answers. It is some times exhausting to go through placements but the moment you get placed you will have the best feeling ever.
Skill Tips: Just chill and take the test. Once you clear the online test, irrespective of your pointer if you have a good profile you can convince the interviewers.
Skills:
College Name: NIT Surathkal

I applied via Referral

Interview Questionnaire 

3 Questions

  • Q1. Given two sorted arrays, say A and B, find A ­ B. Here, A ­ B means all those elements present in A but not in B. The expected time complexity was O(m + n), if A is of size m and B is of size n
  • Ans. 

    Find A-B of two sorted arrays A and B in O(m+n) time complexity.

    • Create two pointers, one for each array, and compare the elements at those pointers.

    • If the element in A is smaller, add it to the result array and move the A pointer forward.

    • If the element in B is smaller, move the B pointer forward.

    • Repeat until one of the pointers reaches the end of its array.

    • Add any remaining elements in A to the result array.

    • Time comple...

  • Answered by AI
  • Q2. 1. Write a routine to output the elements of the inorder traversal of a binary tree one by one in its each call. eg: Assuming the inorder traversal is 1, 2, 3, 4, 5, the routine should return 1 in its fi...
  • Ans. 

    The routine should output the elements of the inorder traversal of a binary tree one by one in each call.

    • Implement an inorder traversal algorithm recursively

    • Use a global variable or pass a reference to keep track of the current element

    • Call the routine repeatedly to get the next element in each call

  • Answered by AI
  • Q3. Given a set of courses along with the prerequisite courses for these courses, write a program to find the minimum number of semesters required to wrap up all the courses
  • Ans. 

    Program to find minimum semesters required to complete courses with prerequisites

    • Create a graph with courses as nodes and prerequisites as edges

    • Use topological sorting to find the order of courses to be taken

    • Calculate the minimum number of semesters based on the order obtained

    • Handle cases where there are cycles in the graph

  • Answered by AI

Interview Preparation Tips

Skills:
College Name: NA

Skills evaluated in this interview

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: Questions on linked list, basic logic and an adhoc math problem. Questions were very doable, but time maybe the only constraint
Tips: Manage time, get used to fluently coding in C Java or C++. You wont have access to Internet, man pages during contest so practice coding g without them.
Duration: 3 minutes
Total Questions: 75

Skills:
Duration: 2
College Name: IIT Madras
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