Upload Button Icon Add office photos

Filter interviews by

JUNIPER Software Engineer III Interview Questions and Answers

Updated 9 Sep 2022

JUNIPER Software Engineer III Interview Experiences

1 interview found

Round 1 - One-on-one 

(2 Questions)

  • Q1. Map based problem to find shortest path in 0 and 1
  • Ans. 

    Map based problem to find shortest path in 0 and 1

    • Use BFS to traverse the map

    • Create a 2D array to store the map

    • Assign a weight of 1 to 0 and infinity to 1

    • Update the weight of each cell based on its neighbors

    • Keep track of the shortest path found so far

  • Answered by AI
  • Q2. C++ questions like inheritence, deisgn pattern
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to Projects in current company
Round 3 - One-on-one 

(2 Questions)

  • Q1. Questions related to Projects in current company
  • Q2. Basic coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Get good grasp of C/C++ and the projects you are working on.

Skills evaluated in this interview

Interview questions from similar companies

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

Island Perimeter and Number of Provinces. Basic Leetcode question

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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Basics of your technical skills
Round 3 - Technical 

(1 Question)

  • Q1. More Projects related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Strings question asked, baics

Round 3 - Technical 

(1 Question)

  • Q1. Java basics question asked
Round 4 - HR 

(1 Question)

  • Q1. Regarding salary, experience

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

There was 2 coding question
One was easy One was very Difficult
20 MCQ question from Operating system and DBMS

Round 3 - Technical 

(2 Questions)

  • Q1. First question was binary search in unsorted arrays So here i have asked about sorting algorithms all sorting algorithms must be clear
  • Q2. Second question was to find longest consecutive subarray.
  • Ans. 

    Find the longest consecutive subarray.

    • Iterate through the array and keep track of the current subarray length.

    • Update the maximum length as you iterate.

    • Reset the current subarray length when a non-consecutive element is encountered.

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. OOPS related question Heap insertion deletion question Hashing Spanning tree
  • Q2. Minimum Spanning tree Implementation of MST
  • Ans. 

    Minimum Spanning Tree (MST) is a tree that connects all vertices in a graph with minimum total edge weight.

    • MST can be found using Prim's algorithm or Kruskal's algorithm.

    • Prim's algorithm starts with a single vertex and adds the closest vertex to the tree until all vertices are included.

    • Kruskal's algorithm starts with the edges with the lowest weight and adds them to the tree as long as they don't create a cycle.

    • MST has...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You have strong understanding of core cs subjects
You have full command in DSA. You have to practice from leetcode
Sometimes your luck also matters

Skills evaluated in this interview

I applied via Job Fair and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About yourself and academic details and strength and weakness and how many sebbling and as well as project title as well as procedure
  • Q2. About company and why your choosing in this company and salary package expected

Interview Preparation Tips

Topics to prepare for Deloitte Softwaretest Engineer interview:
  • Manual testing and SQL
  • Types of testing
Interview preparation tips for other job seekers - I don't have job present iam searching for job I want to job in our company

I applied via Job Portal and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self introduction, project, programming basics. The interview questions completely asked in what you mentioned in resume, like project based, skills based that programming language s and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, talk attentive and cler, be prepare your self what you mentioned in resume that's it

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. What is difference between controller and rest controller?
  • Ans. 

    A controller is a component that handles incoming requests and returns a response, while a REST controller specifically handles RESTful requests.

    • A controller is responsible for handling various types of requests, such as HTTP, WebSocket, etc.

    • A REST controller is a type of controller that specifically handles RESTful requests, which follow the principles of Representational State Transfer (REST).

    • REST controllers typical...

  • Answered by AI
  • Q2. What is functional interface?
  • Ans. 

    A functional interface is an interface that has only one abstract method.

    • Functional interfaces are used in lambda expressions and method references.

    • They can have default methods and static methods.

    • Examples include Runnable, Comparator, and Function interfaces.

    • Functional interfaces can be annotated with @FunctionalInterface annotation.

  • Answered by AI
  • Q3. What is lamda expression?
  • Ans. 

    Lambda expression is a concise way to represent anonymous functions in programming languages.

    • Lambda expressions are commonly used in functional programming languages.

    • They can be used to create functions on the fly without having to define them explicitly.

    • Lambda expressions are often used in higher-order functions, such as map, filter, and reduce.

    • They can also be used to create closures, which are functions that capture...

  • Answered by AI
  • Q4. What is exception propagation?
  • Ans. 

    Exception propagation is the process of passing an exception up the call stack to be handled by a higher-level method.

    • Exceptions are thrown when an error occurs in a method.

    • If the exception is not caught and handled within the method, it is propagated up the call stack.

    • Each method in the call stack has the option to catch and handle the exception or propagate it further up.

    • If the exception reaches the top of the call s...

  • Answered by AI
  • Q5. Difference between get and load method in hibernate?
  • Ans. 

    get() method returns null if the object is not found in the cache or database, while load() method throws an exception.

    • get() method is eager loading while load() method is lazy loading.

    • get() method returns the object from the database or cache while load() method returns a proxy object.

    • get() method is slower than load() method.

    • get() method is used when we are not sure if the object exists in the database or cache while...

  • Answered by AI
  • Q6. What is method overriding?
  • Ans. 

    Method overriding is when a subclass provides its own implementation of a method that is already defined in its superclass.

    • Method overriding is used to achieve runtime polymorphism.

    • The method signature (name, parameters, return type) must be the same in both the superclass and subclass.

    • The access level of the overriding method cannot be more restrictive than the overridden method.

    • Example: class Dog extends Animal { pub...

  • Answered by AI
  • Q7. What IOC and DI in spring?
  • Ans. 

    IOC and DI are design patterns used in Spring framework for loose coupling and dependency injection.

    • IOC (Inversion of Control) is a design pattern where the control of object creation and lifecycle is handed over to a container or framework.

    • DI (Dependency Injection) is a design pattern where the dependencies of an object are injected into it by an external entity, rather than the object creating them itself.

    • Spring fram...

  • Answered by AI
  • Q8. What is internal working of hashmap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • HashMap uses an array of buckets to store key-value pairs

    • Each bucket contains a linked list of entries with the same hash code

    • When a key-value pair is added, its hash code is used to determine the bucket and added to the linked list

    • When a value is retrieved, its hash code is used to find the bucket and search the linked ...

  • Answered by AI
  • Q9. Advantages of spring boot?
  • Ans. 

    Spring Boot provides rapid application development and microservices architecture.

    • Easy configuration and setup

    • Embedded servers for faster development

    • Auto-configuration of dependencies

    • Supports multiple data sources

    • Actuator for monitoring and managing applications

    • Simplifies development of RESTful web services

    • Enables building of microservices architecture

    • Provides a wide range of plugins and extensions

    • Reduces boilerplate c

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly focus on core java concept and then spring, hibernate, spring boot. Be confident with your answers. Always answer in a simple way don't make it complicated to understand it.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. There were questions mainly checking core java skills and concept on hibernate, spring boot, spring core, spring MVC, optimization
  • Q2. Serialization, internal working hashmap, concurrent hashmap, abstraction, interface, oops concepts, threading cycle, exception handling, singleton class, singleton pattern, spring annotations, springboot a...
  • Q3. Custom exception, custom immutable string, defining abstraction n interface, hashmap internal working, thread creation n working, singleton class ABOVE ALL PROGRAM

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare mainly core skills , before going to any interview prepare all these programs well in different scenarios. These scenarios like optimized, iterative and recursion

I applied via Other and was interviewed in Nov 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Brief Role on job and tools and technology I worked with day to day activity
  • Ans. 

    As a Senior Software Engineer, I worked with various tools and technologies to develop and maintain software applications.

    • Developed and maintained software applications using Java, Python, and C++ programming languages

    • Used Agile methodology for software development and collaborated with cross-functional teams

    • Worked with various tools such as Git, JIRA, Jenkins, and Docker for version control, issue tracking, continuous...

  • Answered by AI
  • Q2. In-depth technical interview which went around 40 min. since i had 8 years of experience
  • Q3. Fully technical
  • Q4. Salary discussion and Document verification.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Keywords that I put in of the technology, tools , experience.. (I guess )

General Tips: Just stay calm. Do not show fake experience, Speak genuinely, Answer to the point and explain if you have to add on more depending on your experience. Do not be over confident. Speak start to the eyes
Skills: Communication, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Decision Making Skills
Duration: 1-3 Months

JUNIPER Interview FAQs

How many rounds are there in JUNIPER Software Engineer III interview?
JUNIPER interview process usually has 3 rounds. The most common rounds in the JUNIPER interview process are One-on-one Round.
What are the top questions asked in JUNIPER Software Engineer III interview?

Some of the top questions asked at the JUNIPER Software Engineer III interview -

  1. Map based problem to find shortest path in 0 an...read more
  2. C++ questions like inheritence, deisgn patt...read more
  3. Basic coding questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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.8k 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
JUNIPER Software Engineer III Salary
based on 4 salaries
₹21 L/yr - ₹31 L/yr
At par with the average Software Engineer III Salary in India
View more details
Software Engineer
11 salaries
unlock blur

₹12 L/yr - ₹37 L/yr

Software Engineer III
5 salaries
unlock blur

₹21 L/yr - ₹31 L/yr

Senior Engineer
4 salaries
unlock blur

₹22.4 L/yr - ₹44 L/yr

Consultant
3 salaries
unlock blur

₹10.4 L/yr - ₹24 L/yr

Engineer
3 salaries
unlock blur

₹27.9 L/yr - ₹30.6 L/yr

Explore more salaries
Compare JUNIPER with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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