Upload Button Icon Add office photos

Filter interviews by

Clear (1)

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
-

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

Interview Preparation Tips

Round: Test
Experience: Aptitude test and logical reasoning. It was online test and the duration was one hour

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

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.

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

Interview Questionnaire 

5 Questions

  • Q1. I was Interviewed for their Reliance Project
  • Q2. Whats is Vlan & commands to configure vlan
  • Ans. 

    VLAN stands for Virtual Local Area Network. It is a logical grouping of devices on a network, allowing for better network management and security.

    • VLANs divide a single physical network into multiple virtual networks.

    • They help in reducing network congestion and improving network performance.

    • VLANs can be configured on switches using commands like 'vlan database', 'vlan ', and 'interface switchport access vlan '.

  • Answered by AI
  • Q3. Difference between Access & Trunk Port
  • Ans. 

    Access ports are used to connect end devices, while trunk ports are used to carry traffic between switches.

    • Access ports are assigned to a single VLAN and carry traffic for that VLAN only.

    • Trunk ports can carry traffic for multiple VLANs using VLAN tagging.

    • Access ports are typically used for devices like computers, printers, and IP phones.

    • Trunk ports are used to interconnect switches or connect to network devices like ro...

  • Answered by AI
  • Q4. How to check uptime of Routers & Switches
  • Ans. 

    To check uptime of Routers & Switches, use the show version command.

    • Log in to the device using SSH or Telnet.

    • Enter the show version command.

    • Look for the line that starts with 'uptime'.

    • The uptime will be displayed in the format of days, hours, minutes, and seconds.

    • Alternatively, you can use network monitoring tools like Nagios, PRTG, or SolarWinds to monitor uptime.

    • These tools can provide alerts when a device goes down

  • Answered by AI
  • Q5. Port Security & link troubleshooting question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of LAN & WAN with theory and commands

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 in Sep 2022. There were 2 interview rounds.

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

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

Intern Interview Questions & Answers

TCS user image Anonymous

posted on 2 Jun 2022

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good luck with your interview. You need it

I appeared for an interview in Nov 2016.

Interview Questionnaire 

6 Questions

  • Q1. Explain Btech Project
  • Ans. 

    Developed a Btech project on automated attendance system using facial recognition.

    • Developed a software application to automate the attendance process in educational institutions.

    • Implemented facial recognition technology to identify and mark attendance of students.

    • Used machine learning algorithms to train the system for accurate recognition.

    • Integrated the application with a database to store attendance records.

    • Provided ...

  • Answered by AI
  • Q2. Code Pascal's Traingle
  • Ans. 

    Code Pascal's Triangle

    • Pascal's Triangle is a triangular array of binomial coefficients

    • Each number is the sum of the two numbers above it

    • The first and last numbers in each row are 1

    • Can be implemented using nested loops or recursion

  • Answered by AI
  • Q3. What is abstract function
  • Ans. 

    An abstract function is a function that has no implementation and must be implemented by its subclasses.

    • An abstract function is declared with the 'abstract' keyword.

    • It is used to define a template for its subclasses to follow.

    • It cannot be instantiated and must be implemented by its subclasses.

    • It can have abstract and non-abstract methods.

    • Example: abstract class Animal { abstract void makeSound(); }

    • Example: class Dog ex...

  • Answered by AI
  • Q4. Difference between abstract and normal function
  • Ans. 

    Abstract functions cannot be instantiated and must be implemented by child classes, while normal functions can be directly called.

    • Abstract functions have no implementation in the parent class, while normal functions do.

    • Abstract functions are declared with the 'abstract' keyword, while normal functions are not.

    • Normal functions can be called directly, while abstract functions must be implemented by child classes.

    • An examp...

  • Answered by AI
  • Q5. Your 2 weakness
  • Ans. 

    Perfectionism and public speaking anxiety

    • I tend to be a perfectionist, which can sometimes lead to spending too much time on a task

    • I struggle with public speaking anxiety, but I have been working on improving my communication skills through practice and training

  • Answered by AI
  • Q6. Why Capgemini
  • Ans. 

    Capgemini is a global leader in consulting, technology services, and digital transformation.

    • Capgemini has a strong reputation in the industry for delivering high-quality software solutions.

    • The company offers a wide range of opportunities for career growth and development.

    • Capgemini has a collaborative and inclusive work culture that fosters innovation and teamwork.

    • The company has a global presence, providing exposure to...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: General Aptitude and English

Round: Technical Interview
Experience: 10 minutes approx. Questions were repetitive for candidates. i.e. for 13 candidates interviewed most of those were similar.

Round: HR Interview
Experience: Other normal stuff about family.
Tips: HR might try to get under your skin so prepare for general hr questions.

College Name: IIT Patna

Skills evaluated in this interview

I appeared for an interview in Sep 2016.

Interview Questionnaire 

9 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships at tech companies

  • Answered by AI
  • Q2. What did you do in your last job
  • Ans. 

    I was responsible for managing social media accounts and creating engaging content for a marketing agency.

    • Managed social media accounts for clients

    • Created content calendars and posts for various platforms

    • Analyzed engagement metrics to optimize content strategy

  • Answered by AI
  • Q3. Why do MBA
  • Ans. 

    MBA provides advanced business knowledge, skills, and networking opportunities.

    • MBA helps develop strategic thinking and leadership skills.

    • It provides a deeper understanding of business concepts and practices.

    • MBA graduates often have better job prospects and higher earning potential.

    • Networking opportunities with industry professionals and alumni can lead to valuable connections.

    • Specializations in areas like finance, mar...

  • Answered by AI
  • Q4. 3 key takeaways you want from MBA
  • Ans. 

    Key takeaways from MBA include leadership skills, strategic thinking, and networking opportunities.

    • Developing strong leadership skills through coursework and group projects

    • Learning strategic thinking and decision-making through case studies and simulations

    • Building a strong professional network through internships, networking events, and alumni connections

  • Answered by AI
  • Q5. Why cognizant
  • Ans. 

    Cognizant offers a diverse range of opportunities for growth and development in the IT industry.

    • Cognizant is a global leader in IT services and consulting.

    • They have a strong reputation for delivering high-quality solutions to clients.

    • Cognizant provides a collaborative and inclusive work environment.

    • They offer extensive training and learning programs to enhance skills.

    • Cognizant has a strong focus on innovation and digit...

  • Answered by AI
  • Q6. Describe 2 case studies you learnt in college
  • Ans. 

    Studied case studies on marketing strategies and ethical dilemmas in business.

    • Analyzed a case study on how Coca-Cola's marketing strategies helped increase sales and brand awareness.

    • Discussed a case study on a company facing an ethical dilemma and the consequences of their decisions.

    • Explored the impact of social media on consumer behavior in a case study on a successful marketing campaign.

  • Answered by AI
  • Q7. Your goals in life
  • Ans. 

    My goal in life is to make a positive impact on others and contribute to the betterment of society.

    • To work towards improving healthcare access and quality

    • To advocate for social justice and equality

    • To continuously learn and grow both personally and professionally

    • To build meaningful relationships and support others in their journeys

    • To leave a lasting legacy that inspires future generations

  • Answered by AI
  • Q8. A situation in which you handled a disagreement
  • Ans. 

    I resolved a disagreement between two team members by facilitating a meeting and encouraging open communication.

    • Identified the root cause of the disagreement

    • Scheduled a meeting with both parties to discuss the issue

    • Encouraged open communication and active listening

    • Facilitated a compromise that satisfied both parties

  • Answered by AI
  • Q9. A situation where you showcased your leadership skills

Interview Preparation Tips

Round: Other Interview
Experience: It was a video interview. The questions were displayed one by one. For each question, a fixed time was given (2 to 4 mins). The video response got recorded for each question
Tips: Dress well as someone will review the video later. Sit in a well lit room with a white background. Prepare Competency based questions well

Round: HR Interview
Experience: Typical HR round
Tips: At the end, when the interviewer says, "do you have any question for me", then always ask a relevant question.

Round: HR Interview
Experience: Again typical HR round
Tips: Prepare well about the company. That helps a lot in interview. Try to include what the company is doing in your answers. Should feel natural

Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

LIST OF COMPANIES

Sun Direct TV

Locations

REVIEWS

Sun Direct TV

No Reviews

REVIEWS

Red FM 93.5

No Reviews

SALARIES

Gtpl Hathway

SALARIES

Gtpl Hathway

SALARIES

Sun Direct TV

SALARIES

Gtpl Hathway

REVIEWS

Radio Mirchi

No Reviews

REVIEWS

Sun Direct TV

No Reviews

REVIEWS

Sun Direct TV

No Reviews

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

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Assistant Manager
368 salaries
unlock blur Lock Unlock

₹9 L/yr - ₹29 L/yr

Senior Executive
250 salaries
unlock blur Lock Unlock

₹6.1 L/yr - ₹20.2 L/yr

Manager
182 salaries
unlock blur Lock Unlock

₹10 L/yr - ₹38 L/yr

Senior Manager
93 salaries
unlock blur Lock Unlock

₹14.2 L/yr - ₹56 L/yr

Executive
70 salaries
unlock blur Lock Unlock

₹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