Upload Button Icon Add office photos

Filter interviews by

Zoom Technologies Software Engineer Interview Questions and Answers

Updated 29 Aug 2024

Zoom Technologies Software Engineer Interview Experiences

1 interview found

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

H index ARRAYS DSA design question

Round 2 - Group Discussion 

Arrays DSA 1 hour long on java basics

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Questions from C, Data structure, OS,Database
  • Q2. Technical + HR

Interview Preparation Tips

Round: Test
Experience: This round was simple.
It consist of 5 sections ..1.Aptitude (10 questions). 2.Operating System Basics and Unix Commands(16 questions) 3.Data Structure(9 questions) 4.Output C Questions(6 questions) 5.Programming questions out of 4 any 2 you can do.(2 questions from data structure and 2 from sorting)
Tips: If you know the basics of all these topics then you can easily clear this round.Try to score as more marks as possible because this score counts in the next round too.

Round: Technical Interview
Experience: Moderate
Tips: Be confident and don't get panic.If you don't know anything simply say no don't waste time.

Round: Technical Interview
Experience: Moderate

Skill Tips: Be Confident and keep calm.You must have the complete knowledge of the projects which you have written in your resume.
Skills: C, Data Structure, os, Database
College Name: VIT VELLORE

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Technical round with questions based on DSA.

  • Q1. 

    Reverse a Number Problem Statement

    Create a program to reverse a given integer N. The output should be the reversed integer.

    Note:

    If a number has trailing zeros, their reversed version should not inclu...

  • Ans. 

    Reverse a given integer while excluding trailing zeros.

    • Create a program to reverse the given integer by converting it to a string and then reversing it.

    • Remove any trailing zeros from the reversed string before converting it back to an integer.

    • Handle the constraints of the input integer being between 0 and 10^8.

    • Example: For input 1230, the output should be 321.

  • Answered by AI
  • Q2. 

    Reverse a Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to reverse the Linked List by changing the links between nodes.

    Input:

    The first line of input contai...
  • Ans. 

    Reverse a given singly linked list by changing the links between nodes.

    • Iterate through the linked list and reverse the links between nodes.

    • Use three pointers to keep track of the current, previous, and next nodes.

    • Update the links while traversing the list to reverse it.

    • Return the head of the reversed linked list.

  • Answered by AI
  • Q3. What is the difference in C++ between 'new int[5]' and 'malloc(5 * sizeof(int))'?
  • Ans. 

    new int[5] is C++ specific and initializes the array with default values, while malloc(5 * sizeof(int)) is a C function and does not initialize the array.

    • new int[5] is C++ specific and calls constructors for each element in the array.

    • malloc(5 * sizeof(int)) is a C function and does not call constructors, leaving the array uninitialized.

    • new int[5] returns a pointer to the first element of the array, while malloc(5 * siz...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJuniper Networks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, Networking, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

(1 Question)

  • Q1. Questions around software design
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Question from Strings and Question from Linked Lists

Round 2 - Technical 

(2 Questions)

  • Q1. What are double pointers ?
  • Ans. 

    Double pointers are pointers that store the memory address of another pointer.

    • Double pointers are used in C and C++ to store the address of a pointer variable.

    • They are commonly used in functions to modify the value of a pointer passed as an argument.

    • Example: int **ptr; // declares a double pointer to an integer pointer.

  • Answered by AI
  • Q2. Discuss OOPS in Programming.
  • Ans. 

    OOPS stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Example: Inheritance allows a class to inherit properties and methods from another class, promoting code reusability.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Some program snippets were given in C language and told to debug it
  • Q2. Running median in stream
  • Ans. 

    Calculate the running median of a stream of numbers.

    • Use two heaps - a max heap for the smaller half of the numbers and a min heap for the larger half.

    • Keep the heaps balanced by ensuring the size difference is at most 1.

    • If the heaps are balanced, the median is the average of the top elements of the two heaps. Otherwise, it is the top element of the larger heap.

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

(2 Questions)

  • Q1. Why we use trie and its advantages and dis-advantages
  • Ans. 

    Trie is a tree data structure used for efficient retrieval of key-value pairs, commonly used in autocomplete and spell check applications.

    • Advantages: efficient prefix search, space optimization for storing keys with common prefixes, easy to implement autocomplete and spell check functionalities

    • Disadvantages: can be memory intensive for large datasets, complex to implement compared to other data structures like hash tab...

  • Answered by AI
  • Q2. Networking related questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. You Have a Data Stream and integers are coming at each second you have to identify the erroneous values.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Phone Call 

(2 Questions)

  • Q1. Tell me about your previous company role ?
  • Ans. 

    I was a software engineer responsible for developing and maintaining web applications for a financial services company.

    • Developed and maintained web applications using technologies such as Java, Spring, and Angular

    • Collaborated with cross-functional teams to gather requirements and deliver solutions

    • Participated in code reviews and testing to ensure high quality software

    • Implemented new features and enhancements to improve

  • Answered by AI
  • Q2. Willing to join Arista ?
  • Ans. 

    Yes, I am willing to join Arista as a Software Engineer.

    • I am excited about the opportunity to work at Arista and contribute to their innovative projects.

    • I have researched the company and believe that my skills align well with their values and goals.

    • I am confident that I can make a positive impact on the team and help drive success at Arista.

  • Answered by AI
Round 2 - Coding Test 

One Hr interview with 3-4 coding questions on strings,array and linked list

I applied via LinkedIn and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript / UI related
Round 2 - Case Study 

SYSTEM Design

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your core skills and system design knowledge.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 coding questions; 1 was of Trie, 1 was greedy and another was related to OOPs, and high level data structures

Round 2 - Technical 

(1 Question)

  • Q1. Based on resume, technical skills.
Round 3 - One-on-one 

(1 Question)

  • Q1. Again Technical skills and CS subjects knowledge

Zoom Technologies Interview FAQs

How many rounds are there in Zoom Technologies Software Engineer interview?
Zoom Technologies interview process usually has 2 rounds. The most common rounds in the Zoom Technologies interview process are Coding Test and Group Discussion.

Tell us how to improve this page.

Zoom Technologies Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Zoom Technologies Software Engineer Salary
based on 5 salaries
₹3.5 L/yr - ₹10.7 L/yr
22% less than the average Software Engineer Salary in India
View more details
Software Engineer
5 salaries
unlock blur

₹3.5 L/yr - ₹10.7 L/yr

Network Engineer
5 salaries
unlock blur

₹1.9 L/yr - ₹4 L/yr

Software Developer
4 salaries
unlock blur

₹8.6 L/yr - ₹18 L/yr

Team Lead
4 salaries
unlock blur

₹4.6 L/yr - ₹20 L/yr

Devops Engineer
4 salaries
unlock blur

₹6.1 L/yr - ₹18.8 L/yr

Explore more salaries
Compare Zoom Technologies with

Indus Towers

3.8
Compare

BT Business

4.0
Compare

Nvidia

3.7
Compare

Colt Technology Services

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