Update appNew update is available. Click here to update.
Juniper Networks interview experience Real time questions & tips from candidates to crack your interview
Staff Engineer
Juniper Networks
upvote
share-icon
2 rounds | 5 Coding problems
Interview preparation journey
expand-icon
Preparation
Duration: 5 months
Topics: Data Structures, Algorithms, Networking, Aptitude, OOPS
Tip
Tip

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 process
Where: Other
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

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.

Interview rounds
01
Round
Easy
Video Call
Duration45 minutes
Interview date29 Mar 2021
Problems2

Technical Interview round with questions on DSA

1. Level Order Traversal of Binary Tree

You have been given a Binary Tree of integers. You are supposed to return the level order traversal of the given tree.

For example:
For...
View more
Problem approach

A queue can be used to do level order traversal of the tree. For each node, first visit the node and then push its children nodes in the FIFO queue. 
printLevelorder(tree)
1) Create an empty queue q
2) temp_node = root /*start from root*/
3) Loop while temp_node is not NULL
a) print temp_node->data.
b) Enqueue temp_node’s children 
(first left then right childr...

View more
Try solving now
2. Swap Adjacent Bit Pairs

You are given an integer 'N'. Your task is to find the number formed after swapping each even bit of 'N' in its binary representation with its adjacent bit o...

View more
Problem approach
  1. Let oddPositionBits and evenPositionBits be the two variables that store the value of bits at odd positions and even positions respectively.
  2. Set oddPositionBits as the Bitwise AND of N and 0x55555555.
  3. Set evenPositionBits as the Bitwise AND of N and 0xAAAAAAAA.
  4. Left...
View more
Try solving now
02
Round
Easy
Video Call
Duration60 minutes
Interview date29 Mar 2021
Problems3

Technical round with questions on Networking.

1. Computer Network Question

Various components of IP Packet Header

Problem approach

Following are various components/fields of IP packet header
Version: The first IP header field is a 4-bit version indicator. In IPv4, the value of its four bits is set to 0100, which indicates 4 in binary. 
Internet Header Length: Internet header length, shortly known as IHL, is 4 bits in size. It is also called HELEN (Header Length). This IP component is used to show how many 32-bit...

View more
2. Computer Network Question

Difference between TCP and UDP

Problem approach

TCP reads data as streams of bytes, and the message is transmitted to segment boundaries. UDP messages contain packets that were sent one by one. It also checks for integrity at the arrival time.
TCP messages make their way across the internet from one computer to another. UDP is not connection-based, so one program can send lots of packets to another.
TCP rearranges data packets in the s...

View more
3. Computer Network Question

Various components of TCP Segment Header

Problem approach

Source port : 16 Bit number which identifies the Source Port number (Sending Computer's TCP Port).

Destination port : 16 Bit number which identifies the Destination Port number (Receiving Port).

Sequence number : 32 Bit number used for byte level numbering of TCP segments. If you are using TCP, each byte of data is assigned a sequence number. If SYN flag is set (during the initial...

View more
Start a Discussion
Similar interview experiences
company logo
Software Engineer
1 rounds | 3 problems
Interviewed by Juniper Networks
0 views
0 comments
0 upvotes
company logo
Software Engineer Intern
4 rounds | 7 problems
Interviewed by Juniper Networks
1310 views
0 comments
0 upvotes
company logo
SDE - 1
6 rounds | 7 problems
Interviewed by Juniper Networks
635 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 3 problems
Interviewed by Samsung
324 views
0 comments
0 upvotes