Upload Button Icon Add office photos

Filter interviews by

Sandvine Interview Questions, Process, and Tips

Updated 13 Sep 2024

Top Sandvine Interview Questions and Answers

View all 8 questions

Sandvine Interview Experiences

Popular Designations

16 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

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 

2 DSA questions with easy to medium level questions

Round 3 - Technical 

(3 Questions)

  • Q1. Oops concepts, practical implementation of the concepts.
  • Q2. DSA questions can or cannot be asked
  • Q3. Real time situational based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Your willingness to work and showing interest in the company's work will impress the interviewer.

Software Engineer II Interview Questions asked at other Companies

Q1. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the top 3 horses?
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to list out relevant files from a folder which was updated in a given time period
  • Ans. 

    Use a script to list relevant files updated within a given time period in a folder

    • Use a scripting language like Python or Bash to iterate through files in the folder

    • Check the last modified timestamp of each file and compare it to the given time period

    • Create a list of files that meet the criteria and display or output them

  • Answered by AI
  • Q2. How will you monitor if a system went down
  • Ans. 

    I will use monitoring tools to receive alerts and notifications if a system goes down.

    • Set up monitoring tools like Nagios, Zabbix, or Prometheus to track system health

    • Configure alerts to be sent via email, SMS, or Slack when system goes down

    • Implement automated scripts to restart services or systems if they fail

    • Regularly check system logs for any error messages or warnings

  • Answered by AI
Round 2 - Coding Test 

I was asked to design some classes and then extend the functionality to add more requirements while following SOLID principles

Round 3 - HR 

(2 Questions)

  • Q1. Reason for job change
  • Ans. 

    Seeking new challenges and opportunities for growth

    • Looking for a new challenge to expand my skills and knowledge

    • Interested in working on cutting-edge technologies

    • Seeking a more collaborative team environment

    • Want to take on more leadership responsibilities

  • Answered by AI
  • Q2. Do you have any questions for us

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (183)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Check wether its a palindrome linked list
  • Ans. 

    Check if a linked list is a palindrome

    • Traverse the linked list to find the middle point

    • Reverse the second half of the linked list

    • Compare the first half with the reversed second half

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

Sandvine interview questions for popular designations

 Software Engineer

 (5)

 Software Development Engineer

 (2)

 Intern

 (1)

 Senior Software Engineer

 (1)

 Senior Test Engineer

 (1)

 Software Developer

 (1)

 Software Development Engineer II

 (1)

 Software Engineer II

 (1)

I applied via LinkedIn and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Python - Coding round with questions on DSA / Algo and questions on Test methodology.

Round 2 - Technical 

(1 Question)

  • Q1. Techno Management round with scenario based questions
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why are you looking for a change?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Python questions for Test engineer role

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. How to search in a dictionary?
  • Ans. 

    To search in a dictionary, use the key-value pairs and access the value using the desired key.

    • Access the dictionary using the key to retrieve the corresponding value.

    • If the key is not present, handle the error or return a default value.

    • Example: dictionary['key'] returns the value associated with 'key'.

  • Answered by AI
  • Q2. Postfix to infix
  • Q3. Some puzzles
  • Q4. Intersection of two linked list
  • Ans. 

    Intersection of two linked lists

    • Traverse both lists and compare each node

    • Use a hash table to store nodes of one list and check for intersection in the other list

    • Find the length of both lists, move the pointer of the longer list to the same distance from the end as the shorter list, and then compare nodes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics clear and tell approach clearly. Revise some puzzles.

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

Sandvine Interview FAQs

How many rounds are there in Sandvine interview?
Sandvine interview process usually has 2-3 rounds. The most common rounds in the Sandvine interview process are One-on-one Round, Coding Test and Technical.
How to prepare for Sandvine 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 Python, Kubernetes, C, Docker and AWS.
What are the top questions asked in Sandvine interview?

Some of the top questions asked at the Sandvine interview -

  1. How to list out relevant files from a folder which was updated in a given time ...read more
  2. traversing the web pages which has links to other web pages in specific ord...read more
  3. How to search in a dictiona...read more
How long is the Sandvine interview process?

The duration of Sandvine interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Sandvine Interview Process

based on 14 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Amdocs Interview Questions
3.7
 • 532 Interviews
Ericsson Interview Questions
4.1
 • 412 Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
Nokia Interview Questions
4.1
 • 274 Interviews
ZTE Corporation Interview Questions
3.9
 • 19 Interviews
View all

Fast track your campus placements

View all

Sandvine Reviews and Ratings

based on 64 reviews

3.1/5

Rating in categories

3.1

Skill development

3.1

Work-life balance

3.5

Salary

2.8

Job security

3.1

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 64 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
58 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