Upload Button Icon Add office photos

Filter interviews by

V5 Global Services NOC Engineer Interview Questions, Process, and Tips

Updated 1 Aug 2024

Top V5 Global Services NOC Engineer Interview Questions and Answers

V5 Global Services NOC Engineer Interview Experiences

2 interviews found

NOC Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Aug 2024

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

(1 Question)

  • Q1. Hr want to personal details
Round 2 - Technical 

(1 Question)

  • Q1. Normal networking base question
Round 3 - Technical 

(1 Question)

  • Q1. Some CCNA base question

NOC Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Oct 2021

I applied via Naukri.com and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. What is networking
  • Ans. 

    Networking is the process of connecting devices together to share resources and communicate with each other.

    • Networking involves the use of hardware and software to create a communication system between devices.

    • It allows devices to share resources such as printers, files, and internet connections.

    • Networking can be done using wired or wireless connections.

    • Examples of networking technologies include Ethernet, Wi-Fi, and B...

  • Answered by AI
  • Q2. . What is osi refe modal
  • Ans. 

    OSI reference model is a conceptual model that characterizes and standardizes the communication functions of a telecommunication or computing system.

    • OSI stands for Open Systems Interconnection.

    • It has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the adjacent layers.

    • It helps in understanding how data is transmitted over ...

  • Answered by AI
  • Q3. Tell me about routing protocol
  • Ans. 

    Routing protocols are used to exchange routing information between routers to determine the best path for data transmission.

    • Routing protocols are used to facilitate communication between routers in a network.

    • They determine the best path for data transmission based on various metrics such as hop count, bandwidth, and delay.

    • Examples of routing protocols include OSPF, BGP, and EIGRP.

    • Routing protocols can be classified as ...

  • Answered by AI
  • Q4. What is wdm technology
  • Ans. 

    WDM stands for Wavelength Division Multiplexing, a technology that allows multiple data streams to be transmitted simultaneously over a single optical fiber by using different wavelengths of light.

    • WDM is used in fiber optic communication systems to increase the capacity of the network.

    • It allows for the transmission of multiple signals over a single fiber by using different wavelengths of light.

    • There are two types of WD...

  • Answered by AI
  • Q5. Describe VLAN
  • Ans. 

    VLAN stands for Virtual Local Area Network. It is a logical grouping of devices on a network based on their functions, project teams, or applications.

    • VLANs allow network administrators to segment a network into smaller, more manageable groups.

    • Each VLAN is a separate broadcast domain, which means that broadcasts sent by a device in one VLAN are not forwarded to devices in other VLANs.

    • VLANs can be configured to span mult...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Feel free and tell answer... Please take ccna training from youbtube

Skills evaluated in this interview

NOC Engineer Interview Questions Asked at Other Companies

Q1. How to access others computer on our PC? Which tools is used to a ... read more
Q2. Name of latest Router And Switch which is used in market?
asked in Ericsson
Q3. What do you know about GSM architecture and the interface of conn ... read more
Q4. What is the difference between color coding of 568A and 568B ?
asked in Ericsson
Q5. What is default loopback ip address or what are private ip

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is VPC in AWS?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Practice baaics networking questions Tcp/ip etc.
  • Q2. Fibre is also important, practice that too.

I applied via Newspaper Ad and was interviewed in Jul 2022. There were 2 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 

Coding test contains 2 questions

Interview Preparation Tips

Interview preparation tips for other job seekers - we want to prepare well for any assessment and interviews
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response
Round 1 - Technical 

(4 Questions)

  • Q1. Ospf more deep knowledge
  • Q2. Ospf scenario based question
  • Q3. STP loop prevention how its working
  • Ans. 

    STP loop prevention is achieved by blocking redundant paths in a network to prevent loops.

    • STP (Spanning Tree Protocol) identifies redundant paths in a network

    • STP selects a root bridge to be the central point of the network

    • STP blocks certain ports to prevent loops while still allowing for redundancy

    • If a link fails, STP will unblock a previously blocked port to maintain connectivity

  • Answered by AI
  • Q4. More info about Routing if you good any one routing just inform based on they will ask

Interview Preparation Tips

Interview preparation tips for other job seekers - If looking Network engineer just learn more about routing and switching

Any routing protocol recommend OSPF
VLAN
STP
HSRP

how traffic flow

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(1 Question)

  • Q1. Your introduction and earlier background and will try to check if you are suitable for the job
Round 3 - Technical 

(1 Question)

  • Q1. Network automation, BGP, OSPF, IP Headers

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Timing was in the morning around 10 am. This round was conducted on Hackerrank and contained 2 coding questions of easy to medium level which varied for all the students taking the test. There were 20 MCQs from topics like Java, Operating Systems, Data structures, and SQL.
I also gave a test for this company last year during internships. At that time MCQs were based on aptitude and reasoning. Also at that time, there were 2 coding questions and timing was dividing according to sections.

  • Q1. 

    Nth Element Of Modified Fibonacci Series

    Given two integers X and Y as the first two numbers of a series, and an integer N, determine the Nth element of the series following the Fibonacci rule: f(x) = f(x...

  • Ans. 

    Calculate the Nth element of a modified Fibonacci series given the first two numbers and N, with the result modulo 10^9 + 7.

    • Implement a function to calculate the Nth element of the series using the Fibonacci rule f(x) = f(x - 1) + f(x - 2)

    • Return the answer modulo 10^9 + 7 due to the possibility of a very large result

    • The series starts with the first two numbers X and Y, and the position N in the series

  • Answered by AI
  • Q2. 

    Consonant Counting Problem Statement

    Given a string STR comprising uppercase and lowercase characters and spaces, your task is to count the number of consonants in the string.

    A consonant is defined as a...

  • Ans. 

    Count the number of consonants in a given string containing uppercase and lowercase characters and spaces.

    • Iterate through each character in the string and check if it is a consonant (not a vowel).

    • Keep a count of the consonants encountered while iterating through the string.

    • Return the total count of consonants at the end.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round was conducted on Cisco WebEx and the interviewer was very friendly. Firstly, we were asked briefly to introduce ourselves. Then he moved on to the CV and asked various questions about the projects, certifications, and internships mentioned. He asked about the implementation of a few features in some of the projects and also about the challenges I faced while doing the project and how I finally overcome the challenge. He also asked about various skills mentioned in the resume.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list with constant space complexity and linear time complexity.

    • Create a dummy node to start the merged list

    • Compare the values of the two linked lists and append the smaller value to the merged list

    • Move the pointer of the merged list and the pointer of the smaller value's linked list

    • Continue this process until one of the linked lists is fully traversed

    • Append the ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This round started with my Introduction. Then he moved on to behavioral questions just to get an understanding of how we deal with situations and our thinking process.
 

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as Software Engineer in HyderabadEligibility criteriaAbove 7.5 CGPAOptum interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS(C++ & Java) , DBMS, Operating Systems, Aptitude, Resume(Projects)Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do at least 2 good projects and make an attractive resume mentioning all your skills in the best possible way(Don't include any False commitments)
Tip 2 : Practice easy to medium level coding questions from geeks for geeks or Leetcode.
Tip 3 : Prepare everything mentioned in your resume properly including Java, SQL.

Application resume tips for other job seekers

Tip 1 : Include projects and experiences in detail.
Tip 2 : Make an eye-catching resume clearly mentioning all your skills including subjects like data structures, JAVA, SQL, etc. The database is a very important skill if you have its knowledge.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introduction part reasoning aptitude and technical round related to pharma.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and go through reasoning aptitude and all and make technical part strong.

I applied via Campus Placement and was interviewed before Oct 2021. There were 4 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 

All aptitude topic is tested if practiced well will be able to crack it

Round 3 - Technical 

(1 Question)

  • Q1. From basic programming concepts the question were framed and pseudo codes where asked
Round 4 - HR 

(1 Question)

  • Q1. Tell about yourself and why you want to join here

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to learn and work. Had a good ambiance in office

V5 Global Services Interview FAQs

How many rounds are there in V5 Global Services NOC Engineer interview?
V5 Global Services interview process usually has 3 rounds. The most common rounds in the V5 Global Services interview process are Technical and HR.
What are the top questions asked in V5 Global Services NOC Engineer interview?

Some of the top questions asked at the V5 Global Services NOC Engineer interview -

  1. Tell me about routing protoc...read more
  2. What is wdm technolo...read more
  3. . What is osi refe mo...read more

Tell us how to improve this page.

V5 Global Services NOC Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

NOC Engineer Interview Questions from Similar Companies

View all
V5 Global Services NOC Engineer Salary
based on 28 salaries
₹2.8 L/yr - ₹5 L/yr
8% less than the average NOC Engineer Salary in India
View more details

V5 Global Services NOC Engineer Reviews and Ratings

based on 9 reviews

3.7/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.1

Salary

4.1

Job security

3.1

Company culture

2.7

Promotions

3.4

Work satisfaction

Explore 9 Reviews and Ratings
Sales Executive
216 salaries
unlock blur

₹1.2 L/yr - ₹4.6 L/yr

Network Engineer
96 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Team Lead
72 salaries
unlock blur

₹2.2 L/yr - ₹6.3 L/yr

ISP Engineer
45 salaries
unlock blur

₹2.9 L/yr - ₹5.1 L/yr

Program Executive
43 salaries
unlock blur

₹2.4 L/yr - ₹4.5 L/yr

Explore more salaries
Compare V5 Global Services with

WNS

3.4
Compare

Virtusa Consulting Services

3.7
Compare

Hexaware Technologies

3.5
Compare

Citicorp

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