Upload Button Icon Add office photos
Premium Employer

i

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

Juniper Networks

Compare button icon Compare button icon Compare

Filter interviews by

Juniper Networks Interview Questions, Process, and Tips

Updated 25 Nov 2024

Top Juniper Networks Interview Questions and Answers

View all 61 questions

Juniper Networks Interview Experiences

Popular Designations

67 interviews found

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. JavaScript, DS & Algo, React JS.

Interview Preparation Tips

Interview preparation tips for other job seekers - > Prepare basic javascript
> DS on Arrays, LinkedList
> Prepare React and Redux
> Prepare Design questions.

Senior Software Engineer 4 Interview Questions asked at other Companies

Q1. Micro service architecture: Handling service down-time
View answer (1)

Certification Program Manager Interview Questions & Answers

user image Anonymous

posted on 23 Jun 2021

I applied via LinkedIn and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What would you bring to this role?
  • Q2. How would you market yourself and the company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is more in terms of how well you can handle different kinds of stakeholders and understand the role and what you bring to it. Every new role would have some learning curve to it. If you already know the role completely you are applying for then there isnt any challenge which would motivate you to keep you going.

I applied via LinkedIn and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Same as previous work experience what was doing

Interview Preparation Tips

Interview preparation tips for other job seekers - Over all 6 round of interview with Finances director, BU partners and Real estate heads

Senior Financial Analyst Interview Questions asked at other Companies

Q1. Diff between forecasting and budgeting, sale of assets and their effects in fs, provision for doubtful debt entry, unrealised/ realised gain and loss meaning, what are we check if there is any diff between budgeted and actuals like in 'ee c... read more
View answer (1)

Se3 Interview Questions & Answers

user image Anonymous

posted on 10 Sep 2021

I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Embdded c, device drivers, linux, os concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be good with fundsmentals

Juniper Networks interview questions for popular designations

 Software Engineer

 (9)

 Software Developer

 (4)

 Software Engineer IV

 (4)

 Intern

 (3)

 Senior Staff Engineer

 (2)

 Software Engineer II

 (2)

 Software Engineer III

 (2)

 Software Engineer Intern Trainee

 (2)

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Technical round with questions based on DSA.

  • Q1. 

    Reverse a Number Problem Statement

    Create a program to reverse a given integer N. The output should be the reversed integer.

    Note:

    If a number has trailing zeros, their reversed version should not inclu...

  • Q2. 

    Reverse a Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to reverse the Linked List by changing the links between nodes.

    Input:

    The first line of input contai...
  • Q3. What is the difference in C++ between 'new int[5]' and 'malloc(5 * sizeof(int))'?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJuniper Networks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, Networking, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Juniper Networks Software Engineer Interview Questions and Answers

Q1. Reverse a Number Problem Statement Create a program to reverse a given integer N. The output should be the reversed integer. Note: If a number has trailing zeros, their reversed version should not include them. For example, the reverse of 1... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)

Get interview-ready with Top Juniper Networks Interview Questions

I applied via campus placement at Indian Institute of Technology (IIT), Chennai and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. Write a program to reverse a n integer
  • Ans. 

    Program to reverse an integer

    • Convert the integer to a string

    • Reverse the string

    • Convert the reversed string back to an integer

  • Answered by AI
  • Q2. Explain me about your projects
  • Ans. 

    I have worked on various projects including a web application for inventory management and a mobile app for task tracking.

    • Developed a web application using React for inventory management, allowing users to track stock levels and generate reports.

    • Created a mobile app using Flutter for task tracking, enabling users to create, assign, and track tasks in real-time.

    • Collaborated with a team of developers to integrate APIs an...

  • Answered by AI
  • Q3. Are you interstedoing in studying further
  • Ans. 

    Yes, I am interested in studying further to enhance my skills and knowledge in software engineering.

    • Interested in pursuing a Master's degree in Computer Science

    • Enrolling in online courses to learn new technologies and programming languages

    • Attending workshops and conferences to stay updated with industry trends

  • Answered by AI
  • Q4. Reverse a linked list without using extra memory
  • Ans. 

    Reverse a linked list without using extra memory

    • Iterate through the linked list and change the next pointers to reverse the list

    • Use three pointers - prev, current, and next - to keep track of the reversed list

    • Start with prev and current pointing to null and the head of the linked list respectively

    • While traversing the list, update the next pointer of the current node to point to the previous node

    • Move prev and current po...

  • Answered by AI
  • Q5. Explain me about all the data structures you know, tell me their advantages over others and applications
  • Ans. 

    Data structures are fundamental concepts in software engineering that organize and store data efficiently.

    • Arrays: Simple and efficient for storing and accessing elements.

    • Linked Lists: Dynamic and flexible, efficient for insertion and deletion.

    • Stacks: LIFO structure, useful for managing function calls and undo operations.

    • Queues: FIFO structure, ideal for managing tasks and scheduling.

    • Trees: Hierarchical structure, used ...

  • Answered by AI
  • Q6. What is the difference between into arr [5] and malloc (5*sizeof (int))
  • Ans. 

    The difference is that 'int arr[5]' creates an array on the stack, while 'malloc(5*sizeof(int))' allocates memory on the heap.

    • int arr[5] creates an array of 5 integers on the stack, which is a fixed-size memory allocation.

    • malloc(5*sizeof(int)) dynamically allocates memory on the heap, allowing for variable-size memory allocation.

    • The memory allocated with malloc must be explicitly freed with free() to avoid memory leaks

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

    I am a passionate software engineer with a strong background in computer science and experience in developing innovative solutions.

    • Completed a Bachelor's degree in Computer Science from XYZ University

    • Proficient in programming languages such as Java, Python, and C++

    • Worked on various projects including a mobile app for tracking fitness goals

    • Familiar with Agile development methodologies and version control systems like Gi

  • Answered by AI
  • Q8. Where do you want to see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Continuing to enhance my technical skills and knowledge through ongoing learning and certifications

    • Taking on more leadership responsibilities and mentoring junior team members

    • Contributing to the development of cutting-edge software solutions for the company

    • Possibly pursuing opportunities for advancement within the...

  • Answered by AI
  • Q9. Mention two weakness es
  • Ans. 

    I tend to overthink details and can be overly critical of my own work.

    • Overthinking details can lead to delays in completing tasks

    • Being overly critical can hinder progress and confidence

  • Answered by AI
  • Q10. Are you intersted in studying further
  • Ans. 

    Yes, I am interested in studying further to enhance my skills and stay updated with the latest technologies.

    • I believe continuous learning is essential in the fast-paced tech industry

    • Further studies can help me specialize in a specific area of software engineering

    • Advanced degrees or certifications can open up new career opportunities

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Asked me few simple questions related to OS and Network security

Round: Technical Interview
Experience: Asked me few simple questions related to OS and Network security

College Name: IIT Madras

Skills evaluated in this interview

Top Juniper Networks Software Engineer Interview Questions and Answers

Q1. Reverse a Number Problem Statement Create a program to reverse a given integer N. The output should be the reversed integer. Note: If a number has trailing zeros, their reversed version should not include them. For example, the reverse of 1... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)

Jobs at Juniper Networks

View all

Interview Preparation Tips

Skills: Networking, OS, Linux kernel
College Name: NA

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

Juniper Networks Interview FAQs

How many rounds are there in Juniper Networks interview?
Juniper Networks interview process usually has 2-3 rounds. The most common rounds in the Juniper Networks interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Juniper Networks 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 Juniper Networks. The most common topics and skills that interviewers at Juniper Networks expect are Networking, Python, Debugging, MPLS and Linux.
What are the top questions asked in Juniper Networks interview?

Some of the top questions asked at the Juniper Networks interview -

  1. What is the difference between into arr [5] and malloc (5*sizeof (in...read more
  2. Automation framework you worked on. How that help overall business un...read more
  3. how do you swap two particular bits of an integer progr...read more
How long is the Juniper Networks interview process?

The duration of Juniper Networks interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Juniper Networks Interview Process

based on 56 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Ericsson Interview Questions
4.1
 • 412 Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
Dell Interview Questions
4.0
 • 392 Interviews
VMware Software Interview Questions
4.4
 • 157 Interviews
Nokia Networks Interview Questions
4.3
 • 111 Interviews
Fortinet Interview Questions
4.2
 • 12 Interviews
View all

Juniper Networks Reviews and Ratings

based on 410 reviews

4.2/5

Rating in categories

3.9

Skill development

4.1

Work-life balance

3.9

Salary

3.8

Job security

4.2

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 410 Reviews and Ratings
Resident Engineer

New Delhi

5-10 Yrs

Not Disclosed

Sr Technical Service Advisor

Bangalore / Bengaluru

8-9 Yrs

₹ 22.7-40 LPA

RPA Developer with OCR experience

Bangalore / Bengaluru

4-7 Yrs

₹ 10-13 LPA

Explore more jobs
Software Engineer
285 salaries
unlock blur

₹12.4 L/yr - ₹42.7 L/yr

Software Engineer III
245 salaries
unlock blur

₹16 L/yr - ₹33 L/yr

Software Engineer2
169 salaries
unlock blur

₹10 L/yr - ₹23 L/yr

Software Engineer IV
161 salaries
unlock blur

₹20 L/yr - ₹56 L/yr

Financial Analyst
58 salaries
unlock blur

₹3.5 L/yr - ₹13.4 L/yr

Explore more salaries
Compare Juniper Networks with

Cisco

4.1
Compare

Huawei Technologies

4.0
Compare

Nokia Networks

4.2
Compare

Ericsson

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