Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Tech Mahindra Team. If you also belong to the team, you can get access from here

Tech Mahindra Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 33.5k Reviews

Filter interviews by

Tech Mahindra Networking Trainer Interview Questions and Answers

Updated 22 Feb 2024

Tech Mahindra Networking Trainer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is bgp , split horizon rule what is ospf area
  • Ans. 

    BGP is a routing protocol used to exchange routing information between different autonomous systems. Split horizon rule prevents routing loops. OSPF area is a logical grouping of network devices.

    • BGP stands for Border Gateway Protocol

    • BGP is used to exchange routing information between different autonomous systems

    • Split horizon rule is a rule in networking that prevents a router from advertising a route back to the same i...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and requirements of the position.

    • I believe that fair compensation is important for any job.

    • I am open to negotiation and would like to discuss the salary range for this position.

    • I am more interested in the overall package, including benefits and opportunities for growth.

    • I am confident that my skills and experience align with the value I can bring to the role.

    • I...

  • Answered by AI
  • Q2. What is your family background?
  • Ans. 

    My family background is diverse and has influenced my passion for networking.

    • My parents come from different cultural backgrounds, which has exposed me to different perspectives and ways of thinking.

    • My father works in the IT industry and has been a source of inspiration for me to pursue a career in networking.

    • I have a sibling who is also interested in technology, and we often discuss and learn from each other's experien...

  • Answered by AI
  • Q3. What are your strengths and weaknesses?
  • Ans. 

    My strengths include strong technical knowledge, excellent communication skills, and a passion for teaching. My weaknesses include a tendency to be overly detail-oriented and a desire for perfection.

    • Strong technical knowledge in networking concepts and protocols

    • Excellent communication skills to effectively convey complex information

    • Passion for teaching and helping others learn

    • Detail-oriented approach to ensure accuracy...

  • Answered by AI
  • Q4. Tell me about yourself.
  • Ans. 

    I am a networking professional with extensive experience in training individuals and teams on various networking concepts and technologies.

    • I have been working in the networking industry for over 10 years.

    • I have a deep understanding of TCP/IP protocols, routing, switching, and network security.

    • I have successfully trained and mentored numerous individuals in networking, helping them achieve their career goals.

    • I am profic...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for HCLTech Networking Trainer interview:
  • Networking
Interview preparation tips for other job seekers - networking tranning top detalies

I applied via Referral and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Technical interview networking

Interview Preparation Tips

Topics to prepare for Infosys Networking Trainer interview:
  • ccna
Interview preparation tips for other job seekers - networking jop career tranning
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is online test. In this test there is question of apti and also coding and from 5g question.

Round 2 - Coding Test 

There are two questions asked and time is enough to solve 60 minutes

Round 3 - Technical 

(5 Questions)

  • Q1. Wap for palindrome number
  • Ans. 

    A palindrome number is a number that remains the same when its digits are reversed.

    • Convert the number to a string

    • Reverse the string

    • Check if the reversed string is equal to the original string

  • Answered by AI
  • Q2. Add two numbers by function
  • Ans. 

    Create a function to add two numbers

    • Define a function that takes two parameters as input

    • Inside the function, add the two numbers together and return the result

    • Example: function addNumbers(num1, num2) { return num1 + num2; }

  • Answered by AI
  • Q3. Write a code for Binary search
  • Ans. 

    Binary search code implementation in Python

    • Define a function that takes a sorted array and a target value as input

    • Initialize two pointers, low and high, to the start and end of the array respectively

    • While low is less than or equal to high, calculate mid as (low + high) // 2 and compare array[mid] with target

    • If array[mid] is equal to target, return mid

    • If array[mid] is less than target, update low to mid + 1

    • If array[mid]...

  • Answered by AI
  • Q4. Wap for check your name is palindrome not
  • Ans. 

    A program to check if a given name is a palindrome or not.

    • Convert the name to lowercase to handle case-insensitivity

    • Remove any spaces or special characters from the name

    • Reverse the name and compare it with the original name to check for palindrome

  • Answered by AI
  • Q5. What is malloc and calloc function
  • Ans. 

    malloc and calloc are functions in C programming used for dynamic memory allocation.

    • malloc function is used to allocate a single block of memory of a specified size.

    • calloc function is used to allocate multiple blocks of memory of a specified size, initialized to zero.

    • Example: int *ptr = (int*)malloc(5 * sizeof(int));

    • Example: int *ptr = (int*)calloc(5, sizeof(int));

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capgemini Network Engineer interview:
  • Basic programming

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. ISE and Aci related questions
  • Q2. Firewall and network related questions
Round 2 - Technical 

(2 Questions)

  • Q1. ACI related questions
  • Q2. Firewall & Network related questions
Round 3 - HR 

(2 Questions)

  • Q1. Company policy discussion
  • Q2. Salary discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal communication check

Round 2 - Technical 

(5 Questions)

  • Q1. Basci CCNA question
  • Q2. EIGRP was asked
  • Q3. DHCp was asked and how it works
  • Q4. What is loop and what is the IP
  • Ans. 

    A loop is a sequence of instructions that is continually repeated until a certain condition is met. An IP (Internet Protocol) address is a unique numerical label assigned to each device connected to a computer network.

    • A loop is used in programming to execute a block of code repeatedly until a specific condition is met.

    • There are different types of loops such as for loop, while loop, and do-while loop.

    • An IP address is us...

  • Answered by AI
  • Q5. Rotuing protocols and switch protocols

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Share you internship exp
  • Ans. 

    I interned at a telecommunications company where I gained hands-on experience in configuring network devices and troubleshooting network issues.

    • Configured routers and switches to optimize network performance

    • Assisted in setting up VLANs and implementing security protocols

    • Troubleshooted network connectivity issues for end users

    • Participated in network infrastructure upgrades and maintenance

  • Answered by AI
  • Q2. All question based on the resume only
  • Q3. Prepare whatever written in your resume

Interview Preparation Tips

Interview preparation tips for other job seekers - read your resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the types of the breaks
  • Q2. What is Java proggram

Interview Preparation Tips

Interview preparation tips for other job seekers - Good culture in my office
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. BGP and ospf and vlan
  • Q2. VSS and stacking switch
Round 2 - Technical 

(2 Questions)

  • Q1. BGP in depth ospf and vlan
  • Q2. Vss and switch stacking switch routing

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare strong technical on routing switching and f5.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What do you know about routing?
  • Ans. 

    Routing is the process of selecting the best path for network traffic to reach its destination.

    • Routing involves determining the optimal path for data packets to travel from the source to the destination.

    • Routers use routing tables to make decisions on how to forward packets based on destination IP addresses.

    • There are different types of routing protocols such as RIP, OSPF, EIGRP, and BGP.

    • Static routing involves manually ...

  • Answered by AI
  • Q2. What do you know about switching?
  • Ans. 

    Switching is a networking technique used to forward data packets between devices on a computer network.

    • Switching involves the process of receiving, analyzing, and forwarding data packets within a network.

    • Switches operate at Layer 2 (Data Link Layer) of the OSI model.

    • Switches use MAC addresses to determine the destination of data packets.

    • Switches create separate collision domains and broadcast domains, improving network...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you are thoroughly prepared and have basic knowledge about everything in the JD

Skills evaluated in this interview

Tech Mahindra Interview FAQs

How many rounds are there in Tech Mahindra Networking Trainer interview?
Tech Mahindra interview process usually has 1 rounds. The most common rounds in the Tech Mahindra interview process are Technical.
How to prepare for Tech Mahindra Networking Trainer 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 Tech Mahindra. The most common topics and skills that interviewers at Tech Mahindra expect are Bgp, CCNA, Cisco Certified Network Associate, IPSEC and L2VPN.

Tell us how to improve this page.

People are getting interviews through

based on 1 Tech Mahindra interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Software Engineer
26.3k salaries
unlock blur

₹2 L/yr - ₹10.8 L/yr

Senior Software Engineer
21.2k salaries
unlock blur

₹5.5 L/yr - ₹22.5 L/yr

Technical Lead
11.5k salaries
unlock blur

₹9.4 L/yr - ₹37 L/yr

Associate Software Engineer
5.2k salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Team Lead
4.9k salaries
unlock blur

₹5.1 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Tech Mahindra with

Infosys

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview