Upload Button Icon Add office photos

Filter interviews by

Sandvine Software Engineer Interview Questions and Answers

Updated 29 Aug 2024

Sandvine Software Engineer Interview Experiences

5 interviews found

Software Engineer Interview Questions & Answers

user image Sourabh Kamate

posted on 29 Aug 2024

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

I applied via campus placement at RV College Of Engineering (RVCE) and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It includes two DSA questions and some aptitude questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Introduce yourself
  • Q2. Give the maximum element at any point of time for after pop and push
  • Q3. Reverse a string
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Psuedo code based test

Round 2 - One-on-one 

(1 Question)

  • Q1. Coding question in any language of choice
Round 3 - One-on-one 

(1 Question)

  • Q1. Multiple questions based on networking, OS, DSA, ML, puzzles and one coding question as well
Round 4 - One-on-one 

(1 Question)

  • Q1. Interview with manager - combination of technical and behavioral
Round 5 - One-on-one 

(1 Question)

  • Q1. Interview with Director - Technical theory questions based on networking
Round 6 - HR 

(1 Question)

  • Q1. No specific questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have strong foundation in coding and networking concepts

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Easy to medium leetcode

Round 2 - One-on-one 

(2 Questions)

  • Q1. Core fundamentals
  • Q2. Networking, operating System
Round 3 - One-on-one 

(2 Questions)

  • Q1. Networking protocols
  • Q2. Like UDP AND TCP TRAFFIC FLOW
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic coding questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Core subjects like Operating System, Networking
  • Q2. TCP, UDP protocols, working
  • Q3. OSI, TC/IP working model

Sandvine interview questions for designations

 Software Development Engineer

 (2)

 Software Engineer II

 (1)

 Senior Software Engineer

 (1)

 Software Engineer Trainee

 (1)

 Software Development Engineer II

 (1)

 Software Engineer2

 (1)

 Software Developer

 (1)

 Softwaretest Engineer

 (1)

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

I was interviewed before May 2023.

Round 1 - Coding Test 

Mcqs + 2 coding questions fairly easy one

Round 2 - Technical 

(1 Question)

  • Q1. Implement something which you donot know by researching
  • Ans. 

    Implementing a neural network for image recognition

    • Research different types of neural networks such as Convolutional Neural Networks (CNNs) and Recurrent Neural Networks (RNNs)

    • Study how to preprocess image data and feed it into the neural network

    • Learn about popular deep learning frameworks like TensorFlow or PyTorch

    • Experiment with training a neural network on a dataset like MNIST for digit recognition

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Traversing the web pages which has links to other web pages in specific orders
  • Ans. 

    Traversing web pages with links in specific orders requires web scraping and following the links recursively.

    • Use web scraping tools like BeautifulSoup or Scrapy to extract links from web pages.

    • Implement a recursive function to follow the links in specific orders (e.g. depth-first or breadth-first).

    • Track visited pages to avoid infinite loops or revisiting the same pages.

    • Handle errors and exceptions when accessing web pa

  • Answered by AI
  • Q2. Heap implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - try to solve problems, debug if found any errors

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Trie based question
  • Q2. Design LRU cache
  • Ans. 

    Design a data structure for LRU cache with get and put operations, evicting least recently used item when capacity is reached.

    • Implement a doubly linked list to keep track of the order of keys based on their usage

    • Use a hashmap to store key-value pairs for quick access

    • Update the order of keys in the linked list when a key is accessed or inserted

    • Evict the least recently used item when the cache reaches its capacity

  • Answered by AI
Round 2 - System Design 

(2 Questions)

  • Q1. Unique ID generator
  • Q2. Project related questions
Round 3 - Behavioral 

(2 Questions)

  • Q1. Operating systems, DBMS
  • Q2. Few question on projects from my previous company

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hacker rank, 3 questions with 1 hour duration

Round 2 - Technical 

(2 Questions)

  • Q1. Stack parenthesis matching
  • Q2. Linked List reversal
Round 3 - Behavioral 

(3 Questions)

  • Q1. Operating System basics
  • Q2. Behavorial questions
  • Q3. Networking Basics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Difficult online round

Round 2 - One-on-one 

(2 Questions)

  • Q1. Arrays from neetcode
  • Ans. 

    Arrays are a collection of strings in programming used to store multiple values under a single variable name.

    • Arrays are declared using square brackets []

    • Each element in an array is accessed by its index, starting from 0

    • Example: var fruits = ['apple', 'banana', 'orange']

  • Answered by AI
  • Q2. Linked list from neetcode
Round 3 - One-on-one 

(2 Questions)

  • Q1. Trees in neet code
  • Ans. 

    Trees in neet code refer to the implementation of tree data structures in coding challenges on the platform NeetCode.

    • Trees are a common data structure used in coding challenges to represent hierarchical relationships between data.

    • Common tree operations include traversal (inorder, preorder, postorder), insertion, deletion, and searching.

    • Examples of tree-related coding challenges on NeetCode include implementing a binary...

  • Answered by AI
  • Q2. Trees in leet code
  • Ans. 

    Trees in leetcode are a common topic for coding interviews, involving various tree traversal and manipulation techniques.

    • Understand different tree traversal methods like inorder, preorder, and postorder.

    • Learn about common tree algorithms like finding the height, diameter, and lowest common ancestor.

    • Practice solving tree-related problems on leetcode to improve your skills.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. There were 3 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 - Coding Test 

Basic coding questions were there related to string operations

Round 3 - Technical 

(4 Questions)

  • Q1. Technical questions were asked related to networking
  • Q2. What is tls handshake
  • Ans. 

    TLS handshake is the process of establishing a secure connection between a client and a server.

    • TLS handshake is initiated by the client and involves a series of steps to negotiate encryption parameters and exchange cryptographic keys.

    • It ensures the authenticity, integrity, and confidentiality of data transmitted over the network.

    • The handshake includes the ClientHello, ServerHello, Certificate Exchange, Key Exchange, an...

  • Answered by AI
  • Q3. What happens when you hit some url in browser
  • Ans. 

    When you hit a URL in a browser, a request is sent to the server and the server responds with the requested webpage.

    • Typically, the browser sends an HTTP GET request to the server.

    • The server processes the request and generates a response.

    • The response may include HTML, CSS, JavaScript, and other resources needed to render the webpage.

    • The browser receives the response and renders the webpage for the user to view and inter...

  • Answered by AI
  • Q4. What are different protocols you have worked on
  • Ans. 

    I have worked on various protocols including HTTP, TCP/IP, and MQTT.

    • HTTP (Hypertext Transfer Protocol) - used for communication between web browsers and servers

    • TCP/IP (Transmission Control Protocol/Internet Protocol) - the foundation of the internet

    • MQTT (Message Queuing Telemetry Transport) - a lightweight messaging protocol for IoT devices

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Aryaka Networks Software Engineer interview:
  • Networking
Interview preparation tips for other job seekers - Be confident and prepare networking questions

Skills evaluated in this interview

Sandvine Interview FAQs

How many rounds are there in Sandvine Software Engineer interview?
Sandvine interview process usually has 3-4 rounds. The most common rounds in the Sandvine interview process are One-on-one Round, Coding Test and Technical.
How to prepare for Sandvine Software Engineer 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 Sandvine. The most common topics and skills that interviewers at Sandvine expect are Postgresql.
What are the top questions asked in Sandvine Software Engineer interview?

Some of the top questions asked at the Sandvine Software Engineer interview -

  1. traversing the web pages which has links to other web pages in specific ord...read more
  2. implement something which you donot know by research...read more
  3. Multiple questions based on networking, OS, DSA, ML, puzzles and one coding que...read more

Tell us how to improve this page.

Sandvine Software Engineer Interview Process

based on 5 interviews

2 Interview rounds

  • Coding Test Round
  • One-on-one Round
View more

Fast track your campus placements

View all
Sandvine Software Engineer Salary
based on 82 salaries
₹10.5 L/yr - ₹25 L/yr
77% more than the average Software Engineer Salary in India
View more details

Sandvine Software Engineer Reviews and Ratings

based on 12 reviews

3.1/5

Rating in categories

2.7

Skill development

3.2

Work-life balance

3.1

Salary

2.9

Job security

2.9

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 12 Reviews and Ratings
Software Engineer
82 salaries
unlock blur

₹10.5 L/yr - ₹25 L/yr

Senior Software Engineer
67 salaries
unlock blur

₹11 L/yr - ₹28.5 L/yr

Software Engineer2
54 salaries
unlock blur

₹12 L/yr - ₹20 L/yr

Senior Test Engineer
21 salaries
unlock blur

₹13.8 L/yr - ₹23 L/yr

Software Engineer II
15 salaries
unlock blur

₹12.6 L/yr - ₹20 L/yr

Explore more salaries
Compare Sandvine with

Nokia

4.1
Compare

Cisco

4.1
Compare

Huawei Technologies

4.0
Compare

Juniper Networks

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