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 Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Juniper Networks Pre Silicon Verification Engineer Interview Questions and Answers

Updated 3 Mar 2024

Juniper Networks Pre Silicon Verification Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SV questions on polymorphism
Round 2 - Technical 

(1 Question)

  • Q1. Uvm questions on monitor sequence

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Questions asked about products knowledge, roles and responsibilities

Interview Preparation Tips

Round: Manger Round
Experience: Questions asked about products knowledge, roles and responsibilities

I applied via Referral and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. L2/L3 layer questions
Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to python coding .
  • Q2. Questions related to work u have done . And coding
Round 3 - Technical 

(1 Question)

  • Q1. Questions about networking , security profile
Round 4 - Technical 

(1 Question)

  • Q1. About networking protocols and coding rounds

Interview Preparation Tips

Interview preparation tips for other job seekers - Have u basics clear and have confidence on your work whatever u have done
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself.

I applied via Naukri.com and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is the difference between global and static variable?
  • Ans. 

    Global variables can be accessed from any part of the program while static variables are limited to the scope they are declared in.

    • Global variables are declared outside of any function while static variables are declared inside a function with the static keyword.

    • Global variables can be modified by any part of the program while static variables retain their value even after the function they are declared in has finished...

  • Answered by AI
  • Q2. Write a optimised prime number program.
  • Ans. 

    An optimised prime number program is required for Senior Software Engineer position.

    • Use Sieve of Eratosthenes algorithm for better performance.

    • Start with 2 as the first prime number and eliminate all its multiples.

    • Continue eliminating multiples of primes until the desired range is reached.

    • Use bitwise operations for faster calculations.

    • Consider using multi-threading for larger ranges.

  • Answered by AI
  • Q3. Write a Linked list program with Add,delete,count & modify API features.
  • Ans. 

    Program to implement a linked list with Add, delete, count and modify API features.

    • Create a Node class with data and next pointer

    • Create a LinkedList class with methods to add, delete, count and modify nodes

    • Use a head pointer to keep track of the first node

    • For add and modify, traverse the list to find the node to add/modify

    • For delete, traverse the list to find the node to delete and update the next pointers

    • For count, tr

  • Answered by AI
  • Q4. Write a program for binary search algorithm
  • Ans. 

    Program for binary search algorithm

    • Sort the array in ascending order

    • Set the lower and upper bounds of the search range

    • Calculate the middle index of the search range

    • Compare the middle element with the target value

    • If the middle element is equal to the target value, return its index

    • If the middle element is greater than the target value, search the left half of the range

    • If the middle element is less than the target value, ...

  • Answered by AI
  • Q5. What is a function pointer?Write down syntax for it
  • Ans. 

    A function pointer is a variable that stores the memory address of a function.

    • Function pointers can be used to pass functions as arguments to other functions.

    • Syntax: return_type (*pointer_name)(parameter_list);

    • Example: int (*func_ptr)(int, int) = &add;

    • Example: int result = (*func_ptr)(2, 3);

  • Answered by AI
  • Q6. Questions related to debugging using gdb.
  • Q7. Questions related Marvell platform and NPAPI relation to it

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic c programming,C concepts and OS basic concepts are most for this interview.Data structure/Algorithm concepts are also required.That's it!By doing c basic programming fine then it is easy to get into the interview completely

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. 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 Resume tips
Round 2 - Coding Test 

Some technical questions related to strings and Fibonacci series how this works in real world

Round 3 - Technical 

(1 Question)

  • Q1. Design systems and projects and also some technical questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Some puzzles and had a discussion with manager and that also partial technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basics and some coding practice makes you to clear the interview
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System design - 1500 max inserting request to db a day max latency 60 se
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 Resume tips
Round 2 - Coding Test 

Coding test data structures and language related

Round 3 - One-on-one 

(1 Question)

  • Q1. Related to resume technology
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2022. There were 5 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 Resume tips
Round 2 - Coding Test 

Hacker rank codinv problems level medium

Round 3 - Technical 

(1 Question)

  • Q1. Coding round again D and S
Round 4 - Technical 

(1 Question)

  • Q1. System design tech dummies
Round 5 - HR 

(1 Question)

  • Q1. Common questions , why we should hire you , achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for D and S and system design depends on team and role in terms of difficulty
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse linked list using the recursion
  • Ans. 

    Reverse a linked list using recursion

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

    • Base case: if the head is null or the next node is null, return the head

    • Recursively call the function with the next node as input

    • Set the next node's next pointer to the current node

    • Set the current node's next pointer to null

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q2. Find max number in the linked list using stack.
  • Ans. 

    To find max number in linked list using stack.

    • Create an empty stack.

    • Traverse the linked list and push each element onto the stack.

    • Pop elements from the stack and compare with max value.

    • Return the max value.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics. Be confident
. Give answer properly

Skills evaluated in this interview

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

Juniper Networks Interview FAQs

How many rounds are there in Juniper Networks Pre Silicon Verification Engineer interview?
Juniper Networks interview process usually has 2 rounds. The most common rounds in the Juniper Networks interview process are Technical.
What are the top questions asked in Juniper Networks Pre Silicon Verification Engineer interview?

Some of the top questions asked at the Juniper Networks Pre Silicon Verification Engineer interview -

  1. Uvm questions on monitor seque...read more
  2. SV questions on polymorph...read more

Recently Viewed

JOBS

Juniper Networks

No Jobs

INTERVIEWS

Juniper Networks

No Interviews

INTERVIEWS

Juniper Networks

No Interviews

INTERVIEWS

Juniper Networks

No Interviews

INTERVIEWS

Juniper Networks

No Interviews

INTERVIEWS

Juniper Networks

No Interviews

SALARIES

Decision Point

INTERVIEWS

Juniper Networks

No Interviews

INTERVIEWS

Juniper Networks

No Interviews

INTERVIEWS

Juniper Networks

No Interviews

Tell us how to improve this page.

Juniper Networks Pre Silicon Verification Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join Juniper Networks

Interview Questions from Similar Companies

Ericsson Interview Questions
4.1
 • 411 Interviews
Dell Interview Questions
4.0
 • 385 Interviews
Cisco Interview Questions
4.1
 • 370 Interviews
Indus Towers Interview Questions
3.8
 • 175 Interviews
VMware Software Interview Questions
4.4
 • 145 Interviews
Nokia Networks Interview Questions
4.2
 • 111 Interviews
Nvidia Interview Questions
3.7
 • 102 Interviews
View all
Software Engineer
284 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer III
246 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
194 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer IV
158 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Financial Analyst
58 salaries
unlock blur

₹0 L/yr - ₹0 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