Upload Button Icon Add office photos

Filter interviews by

Vihaan Networks Intern Interview Questions and Answers

Updated 23 Sep 2022

Vihaan Networks Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 23 Sep 2022

I applied via Referral and was interviewed before Sep 2021. 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 - Aptitude Test 

It includes technical part from electronics and coding

Round 3 - One-on-one 

(2 Questions)

  • Q1. General question on digital circuits
  • Q2. College projects and responsibility on that college project

Interview Preparation Tips

Interview preparation tips for other job seekers - You can learn a lot from this company. Decide on your project quick so that you can complete it on time

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Nov 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. BASIC CCNA QUESTION AND REGARDING COMPANY
  • Q2. TCP/IP SUBNETTING NETWORK AND SIMILAR THINGS

Interview Preparation Tips

Interview preparation tips for other job seekers - REVISE NETWORKING
AND BE CONFIDENT IN YOUR ANSWER
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Difficulty was average in the coding questions.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Resume screening and discussed about projects.
  • Q2. DSA and Database questions
  • Q3. Python fundamentals and data visualization

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for technical questions and try to do more projects.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy to moderate questions. Could clear if prepared!!

Round 2 - Technical 

(1 Question)

  • Q1. All about c c++

Interview Questionnaire 

1 Question

  • Q1. Basic C++ questions. Maths puzzles and basic probability and combinatorics questions.

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

There will be some mcq and coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. This is will be a 30 mins interview.
  • Q2. Questions on python,networking,ds,os
Round 3 - Technical 

(1 Question)

  • Q1. Coding question on c,c++,python. Basics of networking ,oops and os.

Interview Preparation Tips

Topics to prepare for CommScope Software Engineer interview:
  • Python
  • OOPS
  • Computer Networking
Interview preparation tips for other job seekers - Brush up your coding skills and networking then you will ace it. Best of luck.

Software Engineer Interview Questions & Answers

CommScope user image Vivek Kumar Ambasta

posted on 18 Jul 2024

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

I applied via Referral and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Coding Test 

It was JS question paper sheet.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare easy to medium conceptual problems on DSA and Concepts of Java.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 6 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Online hackerrank test

Round 3 - Coding Test 

Online hacker rank test

Round 4 - Technical 

(2 Questions)

  • Q1. Technical one on one round related to projects and technologies
  • Q2. Projects and programming language related ds algo
Round 5 - One-on-one 

(2 Questions)

  • Q1. Managerial round
  • Q2. Basic everyday situation questions
Round 6 - HR 

(1 Question)

  • Q1. Final hr round salary etc

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Questions regarding SIP, RTP, RTCP. 2. C++ programs like linked list, virtual functions and exceptions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on practical stuff in Telecom field

I appeared for an interview in Oct 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

It started around 11 Am on MS teams.
There was only 1 interviewer.
The interviewer asked questions from almost every concept, whatever I mentioned in my resume.

Data Structure and Algorithms: Complete heap Sort(Full code on pen and paper), check a number is a power of 2 or not, and some follow-up questions on data structure and algorithms.

OS: Scheduling algorithms, Round Robin(implementation), Process States, and some follow-up questions on that also.
OOPS: Virtual Functions, Copy Constructors, Runtime Polymorphism, Destructors with their implementation, and lots of follows up questions on that also. They gave more focus on oops concepts in c++ only. If you know oops concepts in c++ then you should be able to explain them well with proper implementation.
Project: Complete description, Database schema(Complete diagram on paper), Data flow diagram, and which technology used in projects. My project was on spring boot based web application with proper database design. They asked many questions related to the flow of the project and request methods(POST, PUT, UPDATE, DELETE).
And some other basic questions on projects as well. The duration of this round was almost a complete hour. 7 students shortlisted after 1 round.

  • Q1. 

    Heap Sort Problem Statement

    Your task is to sort an array of integers in non-decreasing order using the Heap Sort algorithm.

    Input:

    The first line contains an integer 'T' denoting the number of test cas...
  • Ans. 

    Heap Sort is used to sort an array of integers in non-decreasing order by creating a max heap and repeatedly extracting the maximum element.

    • Create a max heap from the input array.

    • Swap the root (maximum element) with the last element and reduce the heap size.

    • Heapify the root element to maintain the heap property.

    • Repeat the above steps until the heap size is 1.

    • The array will be sorted in non-decreasing order.

  • Answered by AI
  • Q2. 

    Ninja's Pattern with Powers of 2

    Ninja, who loves playing with numbers, sets out to arrange numbers within 'N' rows. The unique arrangement follows these rules: the first row contains 1 number, the second...

  • Ans. 

    Generate a pattern of numbers in rows following a powers of 2 sequence with numbers 1 to 9, recycling back to 1.

    • Start with 1 number in the first row, 2 numbers in the second row, 4 numbers in the third row, and so on following powers of 2.

    • Fill the pattern with numbers from 1 to 9, recycling back to 1 after reaching 9.

    • Output the pattern for the given number of rows 'N'.

    • Example: For N = 4, the pattern would be 1, 2 3, 4

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology Karnataka Surathkal.. I applied for the job as Software Engineer in BangaloreEligibility criteriaMinimum 7 CGPARadisys Corporation interview preparation:Topics to prepare for the interview - DSA, OOPS, OS, DBMS, Web Development and Networking.Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Try to solve implementation questions on regular basis at least 1 per day.
Tip 2 : Make a proper Roadmap to complete all the DS concepts including some advanced DS concepts also like trie. Do an ample amount of questions from every topic. IMPORTANT: Learn implementation of DS like Hashmap, heap. 
Tip 3 : Minimum 2 projects. One should be the database project.
Tip 4 : You should be good in problem-solving, bits manipulation, c/c++ language, OOPs, OS, and Networking.

Application resume tips for other job seekers

Tip 1 : Well Organised
Tip 2 : At least 2 projects
Tip 3 : Go through to resume of good technical students.
Tip 4 : Personally, I do not prefer any template for a resume. You can easily make on Google docs or any word editor by yourself.

Final outcome of the interviewSelected

Skills evaluated in this interview

Vihaan Networks Interview FAQs

How many rounds are there in Vihaan Networks Intern interview?
Vihaan Networks interview process usually has 3 rounds. The most common rounds in the Vihaan Networks interview process are Resume Shortlist, Aptitude Test and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Telstra Interview Questions
4.0
 • 48 Interviews
Ciena Interview Questions
4.2
 • 38 Interviews
RadiSys Interview Questions
4.0
 • 37 Interviews
CommScope Interview Questions
3.7
 • 34 Interviews
Tikona Infinet Interview Questions
3.5
 • 29 Interviews
Spectranet Interview Questions
3.6
 • 18 Interviews
Mitel Interview Questions
3.7
 • 17 Interviews
View all

Vihaan Networks Intern Reviews and Ratings

based on 2 reviews

3.7/5

Rating in categories

3.7

Skill development

2.8

Work-life balance

3.7

Salary

2.8

Job security

2.8

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 2 Reviews and Ratings
Engineer
52 salaries
unlock blur

₹4.2 L/yr - ₹14 L/yr

Senior Engineer
48 salaries
unlock blur

₹5 L/yr - ₹12.5 L/yr

Software Engineer
32 salaries
unlock blur

₹5 L/yr - ₹8.1 L/yr

Lead Engineer
21 salaries
unlock blur

₹13 L/yr - ₹20 L/yr

Technical Manager
15 salaries
unlock blur

₹20 L/yr - ₹36 L/yr

Explore more salaries
Compare Vihaan Networks with

Tata Communications Transformation Services

4.0
Compare

Tikona Infinet

3.5
Compare

Telenor

4.1
Compare

Excitel Broadband

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