Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Riverbed Technology Member Technical Staff Interview Questions and Answers

Updated 12 Oct 2024

Riverbed Technology Member Technical Staff Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Interview questions from similar companies

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Th interviewer asked me questions related to various topics of OS, Data Structures and Algorithm.
Tips: Have a strong hold on topics of OS like segmentation and buddy systems.

  • Q1. What is segmentation?
  • Ans. 

    Segmentation is the process of dividing a larger entity into smaller parts or segments.

    • Segmentation is commonly used in image processing to separate objects of interest from the background.

    • It is also used in marketing to divide a target market into smaller groups based on demographics, behavior, or other factors.

    • In networking, segmentation refers to dividing a network into smaller subnetworks to improve performance and

  • Answered by AI
  • Q2. What are the advantages and disadvantages of the buddy system?
  • Ans. 

    The buddy system has advantages like increased safety and support, but also drawbacks like dependency and lack of independence.

    • Advantages: increased safety, support, accountability, motivation

    • Disadvantages: dependency, lack of independence, potential for conflicts

    • Example: In a buddy system at work, colleagues can support each other in completing tasks and provide motivation to stay on track.

    • Example: However, relying to...

  • Answered by AI
  • Q3. What is a page fault?
  • Ans. 

    A page fault occurs when a program tries to access a page of memory that is not currently in physical RAM.

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

    • Results in the operating system needing to retrieve the page from disk

    • Can lead to a temporary pause in program execution

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The round consisted of questions of heap, Towers of hanoi and other questions related to CV.
Tips: Time complexity analysis of Towers of Hanoi Problem is important. Good skillset in DS and Algorithms, Bit Manipulation.

  • Q1. 

    Tower of Hanoi Problem Statement

    You have three rods numbered from 1 to 3, and 'N' disks initially stacked on the first rod in increasing order of their sizes (largest disk at the bottom). Your task is to...

  • Ans. 

    Tower of Hanoi problem where 'N' disks need to be moved to another rod following specific rules in less than 2^N moves.

    • Implement a recursive function to move disks from one rod to another following the rules.

    • Use the concept of recursion and backtracking to solve the Tower of Hanoi problem efficiently.

    • Maintain a count of moves and track the movement of disks in a 2-D array/list.

    • Ensure that larger disks are not placed on...

  • Answered by AI
  • Q2. 

    Convert Array to Min Heap Task

    Given an array 'ARR' of integers with 'N' elements, you need to convert it into a min-binary heap.

    A min-binary heap is a complete binary tree where each internal node's va...

  • Ans. 

    Convert the given array into a min-binary heap by modifying the array elements.

    • Iterate through the array and heapify each node starting from the last non-leaf node to the root node.

    • For each node, compare it with its children and swap if necessary to satisfy the min-heap property.

    • Continue this process until the entire array is converted into a min-heap.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The HR asked about my hobbies, extra curricular activities and checked my personality.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAVMware Software India Private Limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 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 interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Aug 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Functionality of components like vrops, loginsight, vRA.
  • Ans. 

    vROps, Log Insight, and vRA are components of VMware's vRealize Suite that provide functionality for monitoring, logging, and automation.

    • vROps (vRealize Operations) provides performance monitoring and capacity management for virtual and cloud environments.

    • Log Insight is a log management and analysis tool that helps identify and troubleshoot issues in the environment.

    • vRA (vRealize Automation) is an automation platform t...

  • Answered by AI
  • Q2. Use case based questions on esxi, vrops vCenter

Interview Preparation Tips

Interview preparation tips for other job seekers - This was my 4th interview scheduled in VMware. Initially for first 3 attempt process was kept on hold or opening kept on hold but this time, HR called directly. And then process went pretty smooth and received offer letter within 2 weeks

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Interview Preparation Tips

Topics to prepare for F5 Networks Consultant interview:
  • Network Security
  • Web Application
  • Security
  • Information Security
  • Cybersecurity
Interview preparation tips for other job seekers - Prepare thoroughly on the fundamental concepts. The interview process included three technical rounds, one of which involved the hiring manager, followed by an HR interview. The overall process was quick and transparent.

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

The round was audio and video proctored, since it was virtual.
It lasted for 90 minutes.
The questions was of medium level.

  • Q1. 

    Next Smallest Palindrome Problem Statement

    Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'.

    Explanation:

    You are given a number in string format, a...

  • Ans. 

    Find the next smallest palindrome greater than a given number represented as a string.

    • Iterate from the middle of the number and mirror the left side to the right side to create a palindrome

    • If the resulting palindrome is greater than the input number, return it

    • Handle cases where the number has all 9s and requires a carry over to the left side

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

It was Technical round of 60 minutes,
the interviewer was very nice person.

  • Q1. 

    Check Permutation Problem Statement

    Given two strings 'STR1' and 'STR2', determine if they are anagrams of each other.

    Explanation:

    Two strings are considered to be anagrams if they contain the same cha...

  • Ans. 

    Check if two strings are anagrams of each other by comparing their characters.

    • Create a character frequency map for both strings and compare them.

    • Sort both strings and compare if they are equal.

    • Use a hash set to store characters from one string and remove them while iterating through the other string.

    • Check if the character counts of both strings are equal.

    • Example: For input 'listen' and 'silent', the output should be tr

  • Answered by AI
  • Q2. Which data structure would you use to implement the undo and redo operation in a system?
  • Ans. 

    Use a stack data structure for implementing undo and redo operations.

    • Stack data structure is ideal for implementing undo and redo operations as it follows Last In First Out (LIFO) principle.

    • Push the state of the system onto the stack when an action is performed, allowing for easy undo by popping the top element.

    • Redo operation can be implemented by keeping a separate stack for redo actions.

    • Example: In a text editor, eac...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

It was a resume based Interview round technical - 2
the interviewer was helping and humble.

  • Q1. Can you design the bank architecture using basic OOP concepts in any programming language?
  • Ans. 

    Yes, I can design the bank architecture using basic OOP concepts in any programming language.

    • Create classes for entities like Bank, Account, Customer, Transaction, etc.

    • Use inheritance to model relationships between entities (e.g. SavingsAccount and CheckingAccount inheriting from Account).

    • Implement encapsulation to hide internal details of classes and provide public interfaces for interaction.

    • Utilize polymorphism to al...

  • Answered by AI
Round 4 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

It was the easiest round.
And it was supposed to be the same.
It was an HR round.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Institute of Engineering & Technology (DAVV). I applied for the job as Member of Technical Staff in BangaloreEligibility criteria7 CGPAVMware Inc interview preparation:Topics to prepare for the interview - DSA, Competitive Coding, OOPS Concepts, OS, DBMS, CN.Time required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice the DSA sheet of 180 commonly asked questions by striver.
Tip 2 : Do Competitive coding regularly, try to be consistent in short contests.
Tip 3 : Revise the core subjects basics regularly.

Application resume tips for other job seekers

Tip 1 : Resume must be concise and to the point.
Tip 2 : Never add any fake skill in your resume, because they can ask anything from your skills.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

I applied via Recruitment Consulltant and was interviewed in Nov 2021. There were 5 interview rounds.

Interview Preparation Tips

Topics to prepare for VMware Software Member Technical Staff interview:
  • Data Structures
  • Java
Interview preparation tips for other job seekers - Good knowledge in Java if applying for Java Background and medium level Data Structures knowledge is essential

I applied via Walk-in and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. About my resume
  • Q2. About my work experience
  • Q3. About my dream

Interview Preparation Tips

Interview preparation tips for other job seekers - I want to test my knowledge and communication skills and related to my work

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep transparency and give more real life examples
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. There were 3 interview rounds.

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

Riverbed Technology Interview FAQs

How many rounds are there in Riverbed Technology Member Technical Staff interview?
Riverbed Technology interview process usually has 3 rounds. The most common rounds in the Riverbed Technology interview process are Technical and One-on-one Round.
How to prepare for Riverbed Technology Member Technical Staff 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 Riverbed Technology. The most common topics and skills that interviewers at Riverbed Technology expect are Agile, Debugging, Linux, Artificial Intelligence and Automation.
What are the top questions asked in Riverbed Technology Member Technical Staff interview?

Some of the top questions asked at the Riverbed Technology Member Technical Staff interview -

  1. Basics of C on pointers and stri...read more
  2. Leetcode easy/medium quest...read more

Recently Viewed

SALARIES

HDFC Asset Management Company

SALARIES

Ip Infusion Software

SALARIES

HDFC Asset Management Company

SALARIES

HDFC Asset Management Company

SALARIES

Befree Business Resourceing

REVIEWS

Befree Business Resourceing

No Reviews

SALARIES

TEOCO Software

INTERVIEWS

Riverbed Technology

No Interviews

SALARIES

Intellipaat Software Solutions

SALARIES

Intellipaat Software Solutions

Tell us how to improve this page.

Riverbed Technology Member Technical Staff Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Cisco Interview Questions
4.1
 • 372 Interviews
VMware Software Interview Questions
4.4
 • 145 Interviews
Citrix Interview Questions
3.6
 • 52 Interviews
Magic Edtech Interview Questions
3.1
 • 50 Interviews
SMC Corporation Interview Questions
3.6
 • 27 Interviews
F5 Networks Interview Questions
3.8
 • 23 Interviews
View all
Riverbed Technology Member Technical Staff Salary
based on 42 salaries
₹10 L/yr - ₹36 L/yr
46% more than the average Member Technical Staff Salary in India
View more details

Riverbed Technology Member Technical Staff Reviews and Ratings

based on 6 reviews

4.5/5

Rating in categories

4.5

Skill development

3.3

Work-life balance

4.0

Salary

2.4

Job security

4.7

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 6 Reviews and Ratings
Member Technical Staff
42 salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Escalation Engineer
19 salaries
unlock blur

₹15 L/yr - ₹29 L/yr

Technical Lead
12 salaries
unlock blur

₹36.6 L/yr - ₹60 L/yr

Software Engineer
6 salaries
unlock blur

₹4.5 L/yr - ₹23.3 L/yr

Software Developer
6 salaries
unlock blur

₹7 L/yr - ₹11 L/yr

Explore more salaries
Compare Riverbed Technology with

Cisco

4.1
Compare

Juniper Networks

4.2
Compare

VMware Software

4.4
Compare

Palo Alto Networks

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