Upload Button Icon Add office photos

Filter interviews by

JioStar Network Engineer L1 Interview Questions, Process, and Tips

Updated 30 Nov 2023

JioStar Network Engineer L1 Interview Experiences

1 interview found

Interview experience
5
Excellent
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 - Technical 

(4 Questions)

  • Q1. 1.Difference between Routing and Switching ? 2.What is OSPF and explain it ? 3.what is Bgp and explain it? 4.what is Eigrp and explain it.?
  • Ans. 

    Routing involves forwarding data packets between networks, while switching involves forwarding data packets within a network.

    • Routing is the process of determining the best path for data packets to travel from source to destination across different networks.

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

    • OSPF (Open Shortest Path First) is a routing protocol used to find the be...

  • Answered by AI
  • Q2. What is DHCP and DNS ?
  • Ans. 

    DHCP is a network protocol that assigns IP addresses to devices on a network, while DNS translates domain names to IP addresses.

    • DHCP stands for Dynamic Host Configuration Protocol

    • DHCP assigns IP addresses to devices on a network dynamically

    • DNS stands for Domain Name System

    • DNS translates domain names to IP addresses

    • DHCP helps in automatic IP address configuration

    • DNS helps in resolving domain names to IP addresses

  • Answered by AI
  • Q3. What is Vlans and explain ?
  • Ans. 

    VLANs (Virtual Local Area Networks) are used to segment a single physical network into multiple virtual networks.

    • VLANs help improve network security by isolating traffic within specific groups.

    • They can also improve network performance by reducing broadcast traffic.

    • VLANs are configured at the switch level and allow devices in different VLANs to communicate as if they were on separate physical networks.

    • Each VLAN has its ...

  • Answered by AI
  • Q4. What is subnet mask ?
  • Ans. 

    Subnet mask is a 32-bit number used to divide an IP address into network and host portions.

    • Subnet mask determines which part of an IP address is the network portion and which part is the host portion.

    • It is represented in decimal format (e.g. 255.255.255.0) or CIDR notation (e.g. /24).

    • Common subnet masks include 255.0.0.0, 255.255.0.0, and 255.255.255.0.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. 1.What is Stp ,And how it works? 2.What is Vlan and types ? 3.What is DHCP and DNS , how to work ? 4.What is OSI layer and define one to one ?
  • Ans. 

    STP is a network protocol that prevents loops in Ethernet networks. VLANs divide a network into separate broadcast domains. DHCP assigns IP addresses, DNS resolves domain names. OSI model defines networking functions in layers.

    • STP (Spanning Tree Protocol) prevents loops by blocking redundant paths in a network.

    • VLAN (Virtual Local Area Network) divides a network into separate broadcast domains to improve network perform...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Everything read carefully and work hardly and dedicatedlly .Because u don't know you are doing anything , so you infinity. Thank you.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Feb 2021. 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 - HR 

(5 Questions)

  • Q1. Why should we hire you?
  • Q2. What is your family background?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
  • Q5. About tpp and casa products

Interview Preparation Tips

Interview preparation tips for other job seekers - Educational background and product related questions

I applied via Referral and was interviewed before Mar 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 

Mathematics reasoning English test.

Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me about your self. If experience candidate ask about previous job Ask about our organisation
Round 4 - HR 

(1 Question)

  • Q1. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident be happy be professional

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

Interview Questionnaire 

1 Question

  • Q1. What is the name of hdfc bank CEO???

Interview Preparation Tips

Interview preparation tips for other job seekers - Please read all the bank information when you go to the interview.

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

It was good

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice experience lots of learning experience

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

(1 Question)

  • Q1. Question is up to situational handling

Interview Preparation Tips

Interview preparation tips for other job seekers - When ever you will face interview be honest and calm

I applied via Referral and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About yourself and prior academics

Interview Preparation Tips

Interview preparation tips for other job seekers - Never say i can strech always say i can do strech one time in a week

I applied via Campus Placement and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Group discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

I appeared for an interview in Aug 2016.

Interview Questionnaire 

3 Questions

  • Q1. To reverse Linked List in pair of three.
  • Ans. 

    Reverse a linked list in pairs of three.

    • Create a function that takes the head of the linked list as input.

    • Traverse the linked list in pairs of three and reverse each pair.

    • Update the head of the linked list to the new head after reversing each pair.

    • Return the new head of the linked list.

  • Answered by AI
  • Q2. Search a number in sorted rotated array.
  • Ans. 

    Search a number in sorted rotated array.

    • Use binary search to find the pivot point where the array is rotated

    • Determine which half of the array the target number may be in

    • Perform binary search on the appropriate half of the array to find the target number

  • Answered by AI
  • Q3. A dynamic programming question was there to find a path in matrix.

Interview Preparation Tips

Round: Technical Interview
Experience: Interviewer mainly focused on problem solving skill.

Skills: Algorithm
College Name: KIIT University

Skills evaluated in this interview

Intern Interview Questions & Answers

Amazon user image Himani Anand1

posted on 28 Oct 2015

Interview Questionnaire 

1 Question

  • Q1. Binary Tree concepts

Interview Preparation Tips

Round: Test
Experience:
Tips:
Duration: 120 minutes
Total Questions: 22

Round: Technical Interview
Experience:
Tips:

General Tips:
Skill Tips:
Skills: Algorithmic Approach To Problem Solving, Data Structures, Core Courses Concepts
College Name: IIM Lucknow

JioStar Interview FAQs

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

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

  1. 1.What is Stp ,And how it works? 2.What is Vlan and types ? 3.What is DHCP and ...read more
  2. 1.Difference between Routing and Switching ? 2.What is OSPF and explain it ? 3....read more
  3. What is Vlans and explai...read more

Tell us how to improve this page.

JioStar Network Engineer L1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.1k Interviews
HDFC Bank Interview Questions
3.9
 • 2.2k Interviews
PVR Inox Interview Questions
4.0
 • 169 Interviews
Abbott Interview Questions
4.1
 • 150 Interviews
Kantar Interview Questions
3.5
 • 98 Interviews
Tata Play Interview Questions
4.0
 • 70 Interviews
Times Internet Interview Questions
3.5
 • 65 Interviews
View all
Assistant Manager
334 salaries
unlock blur

₹8.6 L/yr - ₹30 L/yr

Senior Executive
227 salaries
unlock blur

₹6.1 L/yr - ₹20 L/yr

Manager
156 salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Senior Manager
104 salaries
unlock blur

₹15 L/yr - ₹56 L/yr

Executive
70 salaries
unlock blur

₹3.2 L/yr - ₹10.3 L/yr

Explore more salaries
Compare JioStar with

HDFC Bank

3.9
Compare

Manappuram Finance

3.9
Compare

PVR Inox

4.0
Compare

Abbott

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