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 Software Developer Interview Questions and Answers

Updated 10 Oct 2024

Juniper Networks Software Developer Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Guwahati and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

DSA ques were moderate and aptitude ques were also asked

Round 2 - Technical 

(2 Questions)

  • Q1. DSA ques on array was asked
  • Q2. DSA ques on graph
Round 1 - Aptitude Test 

The first round consists of aptitude and coding.Aptitude is of easy to moderate level.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Interview questions were based on projects which are mentioned in your resume and from DBMS and computer networks
  • Q2. Operating systems questions were also asked

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and honest in interview.prepare well for computer networks fundamentals,DBMS fundamentals

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Software Developer Interview Questions & Answers

user image anil kumar kj

posted on 10 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode live coding with team members

Round 2 - Case Study 

How do u design the network as per the cloud customer requirements

Interview Preparation Tips

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

Juniper Networks interview questions for designations

 Software Developer Intern

 (1)

 Software Engineer

 (9)

 Software Designer

 (1)

 Software Engineer2

 (1)

 Java Developer

 (1)

 Software Engineer IV

 (4)

 Software Engineer II

 (2)

 Software Engineer III

 (2)

Software Developer Jobs at Juniper Networks

View all

Interview questions from similar companies

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

(2 Questions)

  • Q1. Check if the linked list is palindrome or not
  • Ans. 

    To check if a linked list is a palindrome, compare the first half of the list with the reversed second half.

    • Traverse the linked list to find the middle node

    • Reverse the second half of the linked list

    • Compare the first half with the reversed second half to check for palindrome

  • Answered by AI
  • Q2. C string questions
Round 2 - Technical 

(2 Questions)

  • Q1. Operating systems questions
  • Q2. Linked list and system design question

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were 3 sections. 1st was aptitute 10 questions and 2nd section was technical 10 questions then 3rd section had 3 coding questions which were of easy level.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to OS and CN and Core java were asked.
  • Q2. A coding question was also asked to to find the second largest number.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Data Structures and Algorithms

Round 2 - One-on-one 

(1 Question)

  • Q1. SQL data manipulation queries
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to project mentioned in CV. Questions around reliability, availability, scalability of system.
  • Q2. 2 medium coding questions on arrays and hashmap.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Golang basics, goroutines, channels.
  • Q2. Coding questions on a shared board
Round 3 - One-on-one 

(3 Questions)

  • Q1. Deep dive into the work at current company and projects.
  • Q2. How interprocess communications take place, how goroutines communicate internally, quite in-depth questions, varying over several domains.
  • Ans. 

    Interprocess communication involves various mechanisms like pipes, sockets, shared memory, etc. Goroutines communicate using channels and shared memory.

    • Interprocess communication can be achieved through mechanisms like pipes, sockets, shared memory, message queues, etc.

    • Goroutines in Go communicate internally using channels, which are typed conduits through which you can send and receive values.

    • Shared memory can also be...

  • Answered by AI
  • Q3. Design a URL shortener service
  • Ans. 

    Design a URL shortener service

    • Generate a unique short code for each URL

    • Store the mapping of short code to original URL in a database

    • Redirect users from short URL to original URL

    • Consider scalability and performance of the service

    • Implement analytics to track usage statistics

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with what you've written in your Resume.
Have in depth knowledge of basics of the stack you're advertising.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(12 Questions)

  • Q1. Find the min and max from List of Integers using java 8 streams.
  • Q2. Find 2nd largest element using java 8 streams from list of integers.
  • Q3. Given a Product class and some ArrayList data Find which products has price greater than 200 using java 8 streams?. Find which products having maximum price?
  • Q4. Increase a value of List of Integers by *2 and written new list.
  • Q5. What are the java new features?
  • Q6. @Components vs @Repository
  • Q7. @SpringBootApplication
  • Q8. @Entity explain?
  • Q9. How the database is configure?
  • Q10. What is Dockerfile?
  • Q11. Explain CI CD and your project deployment.
  • Q12. What is mutable classes in java? How to create?
Round 2 - Technical 

(1 Question)

  • Q1. Yet to sChedule
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ispalindrome code in c#
  • Ans. 

    A palindrome code in C# checks if a given string reads the same forwards and backwards.

    • Create a function that takes a string as input

    • Use a loop to compare characters from the start and end of the string

    • Return true if all characters match, false otherwise

  • Answered by AI

Skills evaluated in this interview

Juniper Networks Interview FAQs

How many rounds are there in Juniper Networks Software Developer interview?
Juniper Networks interview process usually has 2-3 rounds. The most common rounds in the Juniper Networks interview process are Coding Test, Aptitude Test and One-on-one Round.
How to prepare for Juniper Networks Software Developer 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 Debugging, C, Ethernet, Data Structures and Device Drivers.
What are the top questions asked in Juniper Networks Software Developer interview?

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

  1. interview questions were based on projects which are mentioned in your resume a...read more
  2. operating systems questions were also as...read more
  3. DSA ques on array was as...read more

Tell us how to improve this page.

Juniper Networks Software Developer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more
Juniper Networks Software Developer Salary
based on 43 salaries
₹14 L/yr - ₹27 L/yr
141% more than the average Software Developer Salary in India
View more details

Juniper Networks Software Developer Reviews and Ratings

based on 4 reviews

4.6/5

Rating in categories

4.6

Skill development

5.0

Work-life balance

4.2

Salary

3.9

Job security

5.0

Company culture

4.2

Promotions

4.3

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
285 salaries
unlock blur

₹12.4 L/yr - ₹42.7 L/yr

Software Engineer III
243 salaries
unlock blur

₹16 L/yr - ₹33.6 L/yr

Software Engineer2
171 salaries
unlock blur

₹10 L/yr - ₹23 L/yr

Software Engineer IV
159 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