Upload Button Icon Add office photos
Engaged Employer

i

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

New Era Technology Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 132 Reviews

Filter interviews by

New Era Technology Tier 2 Network Engineer Interview Questions and Answers

Updated 11 Apr 2018

New Era Technology Tier 2 Network Engineer Interview Experiences

1 interview found

Interview Questionnaire 

2 Questions

  • Q1. Technical interview on telephonic *Basic question on networking - DNS , DHCP, ARP *EIGRP- timers , stuck-in active state *OSPF LSA *BGP - Attributes , route reflrctor *MPLS basic
  • Q2. Technical Interview F2F *First round same topic asked very deep

Interview questions from similar companies

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
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Virtual LAN?
  • Q2. Difference between L2 &L3 switch?

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to go down your morality and preparation for interview then , don't attend interview with current Wipro interview bench. Most............ They not need Engineer, I think they need Dr. In networking.
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
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. UST is good interviewer is not good
  • Q2. Even we don't know the question atleast Interviewer required minimum patience .Iritating
Round 2 - Technical 

(2 Questions)

  • Q1. Basic question only OSPF
  • Q2. Load balancer configuration
Round 3 - Technical 

(2 Questions)

  • Q1. OSPF, Load balancer
  • Q2. Load balancing configuration

Interview Preparation Tips

Interview preparation tips for other job seekers - UST is good but depends upon the interviewer if interviewer is good then ww can share if interviewer is rude is very uncomfortable becoz our positivity will lost
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. 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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is DNS please explain
  • Ans. 

    DNS stands for Domain Name System, which translates domain names to IP addresses.

    • DNS is like a phone book for the internet, translating human-readable domain names (like google.com) to IP addresses (like 172.217.3.206).

    • It helps users access websites by typing in easy-to-remember domain names instead of complex IP addresses.

    • DNS servers store records of domain names and their corresponding IP addresses, allowing for effi...

  • Answered by AI
  • Q2. What is DHCP please explain
  • Ans. 

    DHCP stands for Dynamic Host Configuration Protocol, used to automatically assign IP addresses to devices on a network.

    • DHCP eliminates the need for manual IP address configuration on each device

    • It assigns IP addresses dynamically, allowing for efficient use of available addresses

    • DHCP servers lease IP addresses to devices for a specific period of time

    • DHCP also provides other network configuration information, such as su...

  • Answered by AI

Skills evaluated in this interview

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

Normal aptitude group discussion assignment case study

Round 2 - Coding Test 

Coding test assignment one on one round

Round 3 - Technical 

(2 Questions)

  • Q1. Technical vs no tech
  • Ans. 

    Technical skills are essential for a Network Engineer, but soft skills are also important for effective communication and teamwork.

    • Technical skills are necessary for configuring and troubleshooting network devices.

    • Soft skills like communication, teamwork, and problem-solving are crucial for working effectively with colleagues and clients.

    • Balancing technical expertise with interpersonal skills is key to success in the r...

  • Answered by AI
  • Q2. Dhcp vs dns gdp vs rdp frp vs 30nd
  • Ans. 

    DHCP is a protocol used to assign IP addresses dynamically to devices on a network, while DNS is a system that translates domain names to IP addresses.

    • DHCP assigns IP addresses to devices on a network dynamically

    • DNS translates domain names to IP addresses

    • RDP (Remote Desktop Protocol) allows users to remotely connect to a computer

    • FRP (Fiberglass Reinforced Plastic) is a material used in construction

    • 30nd does not seem to

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - no

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. DHCP working principles
  • Ans. 

    DHCP assigns IP addresses to devices on a network automatically

    • DHCP server assigns IP addresses to devices on the network

    • DHCP clients request IP addresses from the DHCP server

    • DHCP uses a lease mechanism to manage IP address assignments

    • DHCP reduces the administrative burden of manually assigning IP addresses

  • Answered by AI
  • Q2. DNS working principles
  • Ans. 

    DNS is a system that translates domain names to IP addresses to locate resources on the internet.

    • DNS resolves domain names to IP addresses

    • DNS operates through a distributed database system

    • DNS uses hierarchical structure with top-level domains like .com, .org, etc.

    • DNS queries are resolved through recursive and iterative processes

  • Answered by AI
  • Q3. Scenario based question DHCP
  • Q4. Spanning tree protocol

Interview Preparation Tips

Interview preparation tips for other job seekers - Please concentrate on scenario based network questions

Skills evaluated in this interview

New Era Technology Interview FAQs

What are the top questions asked in New Era Technology Tier 2 Network Engineer interview?

Some of the top questions asked at the New Era Technology Tier 2 Network Engineer interview -

  1. Technical interview on telephonic *Basic question on networking - DNS , DHCP, A...read more
  2. Technical Interview F2F *First round same topic asked very de...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k 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.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
IT Analyst
121 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Network Engineer
77 salaries
unlock blur

₹3.3 L/yr - ₹6 L/yr

Senior IT Analyst
34 salaries
unlock blur

₹2.7 L/yr - ₹4.5 L/yr

Senior Software Engineer
31 salaries
unlock blur

₹7.7 L/yr - ₹26 L/yr

Software Engineer
26 salaries
unlock blur

₹3.5 L/yr - ₹12.7 L/yr

Explore more salaries
Compare New Era Technology with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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