Upload Button Icon Add office photos

Filter interviews by

Elifact Network Engineer L1 Interview Questions and Answers

Updated 19 Jul 2022

Elifact Network Engineer L1 Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jan 2022. 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 - Technical 

(1 Question)

  • Q1. Subnetting,Router, switch, DHCP, DNS
Round 3 - HR 

(1 Question)

  • Q1. Sallery related and company related information

Interview Preparation Tips

Interview preparation tips for other job seekers - Elifact Pvt Ltd company is one of the best company. Work environment is also very good, co-operative people.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 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 - Technical 

(4 Questions)

  • Q1. All types of basics networking
  • Q2. LAN load balancer F5 load balancer
  • Q3. Routing protocol like RIP,EIRGP,OSPF
  • Q4. OSI Layers and TCL Layers DNS AND DHCP

Interview Preparation Tips

Topics to prepare for TCS Network Engineer L1 interview:
  • DNS
  • DHCP
  • Routing Protocols
  • OSI layer
  • RIP
  • OSPF
  • EIGRP
  • LODE BALANCER
  • F5 LODE BALANCER
  • Active Directory
  • Group Policy
  • IPV6
  • IPV4
  • WDS
  • FTP
Interview preparation tips for other job seekers - I have good knowledge of basics networking fundamental
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 

(1 Question)

  • Q1. L1 and system troubleshooting methods
  • Ans. 

    L1 and system troubleshooting methods involve identifying and resolving issues in network and system infrastructure.

    • L1 troubleshooting involves basic checks and identifying common issues

    • System troubleshooting involves identifying issues with hardware, software, and network components

    • Methods include using diagnostic tools, analyzing logs, and following established procedures

    • Examples of issues include network connectivit

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong knowledge about troubleshooting methods

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself?
  • Q2. Technical questions related with CCNA and MCSA.
  • Q3. What is routing and switching
  • Ans. 

    Routing and switching are fundamental concepts in computer networking that involve directing and forwarding data packets.

    • Routing is the process of determining the best path for data packets to travel from one network to another.

    • Switching is the process of forwarding data packets within a network based on their destination MAC addresses.

    • Routing protocols like OSPF and BGP are used to exchange routing information between...

  • Answered by AI
  • Q4. What about ping?
  • Q5. Tell me the concept of LAN/WAN and VLAN
  • Ans. 

    LAN/WAN refers to local area network and wide area network respectively. VLAN is a virtual LAN that allows for logical segmentation of a network.

    • LAN is a network that covers a small geographical area, typically within a single building or campus.

    • WAN is a network that spans a large geographical area, connecting multiple LANs or remote locations.

    • VLAN is a virtual LAN that enables the creation of multiple logical networks...

  • Answered by AI
  • Q6. What are the steps you follow if your internet not working in specific organisation network?
  • Q7. What is firewall?
  • Ans. 

    A firewall is a network security device that monitors and controls incoming and outgoing network traffic based on predetermined security rules.

    • Firewall acts as a barrier between a trusted internal network and an untrusted external network.

    • It examines network packets and filters them based on rules to allow or block traffic.

    • Firewalls can be hardware-based or software-based.

    • Examples of firewalls include Cisco ASA, Palo A

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are known all the L1 technical issue in networking and desktop, you are easily crack this.....
Only the basic concepts about networks and desktop should be know you....

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Switching, troubleshooting, stacking
Round 2 - HR 

(1 Question)

  • Q1. Introduction, expecting the salary,

Interview Preparation Tips

Interview preparation tips for other job seekers - Introduction
Tell me about your company
Is there any quarries

I applied via Naukri.com and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

You have to pass this test. You can check previous papers for more information.

Round 2 - Technical 

(1 Question)

  • Q1. They can ask you any one programming language and from your college projects etc etc and it's depends on which background you are qualified and aslo depends on your resume so be careful Always write what y...
Round 3 - HR 

(1 Question)

  • Q1. It's about Salary discussion and shift timings etc

Interview Preparation Tips

Topics to prepare for HCLTech Network Engineer L1 interview:
  • OSI Model
Interview preparation tips for other job seekers - HCL is best for starting career.
If you are an fresher and got chance to work in hcl you are really lucky.
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

Network Engineer Interview Questions & Answers

Tech Mahindra user image Shubham fav Dupargude

posted on 7 Jan 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics TCP IP , trace root command and DORA PROCESS

Network Engineer Interview Questions & Answers

Jio user image Mehulkumar Prajapati

posted on 29 Nov 2024

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

I applied via Referral

Round 1 - HR 

(2 Questions)

  • Q1. Preferred location
  • Ans. 

    I am open to any location that offers growth opportunities and a challenging work environment.

    • Open to relocation for the right opportunity

    • Prefer locations with strong networking infrastructure

    • Interested in locations with tech hubs or opportunities for professional development

  • Answered by AI
  • Q2. What' isbm your CCTC?
  • Ans. 

    My current CCTC is $80,000 per year.

    • Current CCTC is $80,000 per year

    • CCTC may include salary, bonuses, benefits, etc.

    • Negotiable based on experience and qualifications

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Full form of BGP
  • Ans. 

    Border Gateway Protocol

    • BGP stands for Border Gateway Protocol

    • It is a standardized exterior gateway protocol used to exchange routing information between different autonomous systems on the internet

    • BGP helps in determining the best path for data to travel between networks

    • It is commonly used by Internet Service Providers (ISPs) and large organizations to connect to multiple networks

    • BGP operates on TCP port 179

  • Answered by AI
  • Q2. Router function
  • Ans. 

    Routers are networking devices that forward data packets between computer networks.

    • Routers operate at the network layer of the OSI model

    • They use routing tables to determine the best path for data packets

    • Routers can connect different types of networks, such as LANs and WANs

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is Joining date
  • Q2. What is your ECTC
  • Ans. 

    Expected CTC (Cost to Company) for the position

    • ECTC stands for Expected Cost to Company

    • It includes salary, bonuses, benefits, and any other compensation offered by the employer

    • Candidates should provide their expected salary range based on their experience and skills

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. CCNA SWITCHING and switching
  • Q2. Routing
Round 2 - Technical 

(1 Question)

  • Q1. Manager round CCNA routing and switching

Elifact Interview FAQs

How many rounds are there in Elifact Network Engineer L1 interview?
Elifact interview process usually has 3 rounds. The most common rounds in the Elifact interview process are Resume Shortlist, Technical and HR.
What are the top questions asked in Elifact Network Engineer L1 interview?

Some of the top questions asked at the Elifact Network Engineer L1 interview -

  1. Sallery related and company related informat...read more
  2. Subnetting,Router, switch, DHCP, ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Elifact interview
Job Portal
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.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Compare Elifact with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
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