Upload Button Icon Add office photos

Filter interviews by

NetBrain Network Automation Engineer Interview Questions and Answers

Updated 25 Sep 2023

NetBrain Network Automation Engineer Interview Experiences

2 interviews found

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Demonstrate core values and customer success attitude
  • Q2. Basic TCP/IP related questions
  • Q3. Details routing protocol and switching questions
  • Q4. Network automation working experience questions
  • Q5. Scenario based questions
  • Q6. Learning and presentation ability

Network Automation Engineer Interview Questions & Answers

user image Jyoti Ranjan Muduli

posted on 14 Jul 2023

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

I applied via Referral and was interviewed in Jan 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 tips
Round 2 - Aptitude Test 

Math, difference in diagrams, reasoning.

Round 3 - Technical 

(2 Questions)

  • Q1. Routing Switching , python, MPLS
  • Q2. What is function in python, how BGP works. OSPF related questions
Round 4 - Case Study 

Related to Netbrain Platform. What is PDAS NG, what is trigger automation etc

Network Automation Engineer Interview Questions Asked at Other Companies

asked in Qualys
Q1. How to backup network device config?

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Assignment 

First was round based on Quality engineering concepts and aptitude combob

Round 2 - Technical 

(2 Questions)

  • Q1. Question on How proxy configured for device
  • Q2. What is test scenario,test case.
  • Ans. 

    Test scenario is a high-level description of the functionality to be tested, while test case is a detailed step-by-step procedure to validate the functionality.

    • Test scenario is a broad description of what needs to be tested, while test case is a detailed set of steps to verify a specific aspect of the scenario.

    • Test scenario is usually written in a more general and abstract way, while test case is more specific and conc...

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Write a java code to print sum of 100 numbers
  • Ans. 

    Java code to print sum of 100 numbers

    • Create an array of 100 numbers

    • Use a loop to iterate through the array and calculate the sum

    • Print the sum at the end

  • Answered by AI
  • Q2. Write a count of K char in your name
  • Ans. 

    My name is John Doe. There are 1 'o' in my name.

    • Count the occurrences of the specified character in the name

    • Iterate through each character in the name and compare with the specified character

    • Increment a counter each time the specified character is found

  • Answered by AI
  • Q3. How to move to another tabs in selenium
  • Ans. 

    To move to another tab in Selenium, switch to the desired tab using window handles.

    • Use getWindowHandles() to get all window handles

    • Switch to the desired tab using switchTo().window(handle)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Follow the JD most of the questions were from JD

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Write a program to print 2 nd highest number from array with using sorting?
  • Ans. 

    Program to find 2nd highest number in array without sorting.

    • Iterate through array to find highest and second highest numbers

    • Initialize variables to store highest and second highest numbers

    • Compare each element with highest and second highest numbers

  • Answered by AI
  • Q2. Write a program to add value into hashmap?
  • Ans. 

    Program to add values into a hashmap in Java.

    • Create a new HashMap object.

    • Use the put() method to add key-value pairs into the hashmap.

    • Keys must be unique, values can be duplicated.

    • Example: HashMap map = new HashMap<>(); map.put("A", 1);

  • Answered by AI
  • Q3. What are main concepts of OOPS in java?
  • Ans. 

    Main concepts of OOPS in Java include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class B extends class A.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability of a method to do different things ba...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What are the different http codes used in rest assure?
  • Ans. 

    Different HTTP codes used in Rest Assured

    • 200 - OK: Request was successful

    • 201 - Created: Request was successful and a new resource was created

    • 400 - Bad Request: Request was invalid

    • 401 - Unauthorized: Request requires user authentication

    • 404 - Not Found: Requested resource was not found

    • 500 - Internal Server Error: Server encountered an unexpected condition

  • Answered by AI
  • Q2. Write a code using rest assure for status code
  • Ans. 

    Code using Rest Assured for checking status code

    • Import Rest Assured library

    • Use given() method to specify the base URI

    • Use when() method to specify the HTTP method and endpoint

    • Use then() method to validate the status code

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Group anagram strings in a array
  • Ans. 

    Group anagram strings in an array

    • Iterate through the array of strings

    • For each string, sort the characters alphabetically

    • Use a hashmap to group anagrams together based on sorted strings

  • Answered by AI
  • Q2. Reverse subset of array 'k'
  • Ans. 

    Reverse a subset of strings in an array 'k'

    • Iterate through the array 'k' and reverse the strings within the specified subset range

    • Use a temporary variable to swap the strings at the start and end of the subset range

    • Ensure to handle edge cases like empty array or invalid subset range

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between hash map and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values and keys, while HashTable is synchronized and does not allow null values or keys.

    • HashMap is non-synchronized and not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values and keys, while HashTable does not allow null values or keys.

    • HashMap is generally preferred over HashTable for non-thread-safe operations due to better performance.

  • Answered by AI
  • Q2. What is final finally finalize
  • Ans. 

    final, finally, and finalize are keywords in Java used for different purposes.

    • final is a keyword used to declare constants, prevent method overriding, and prevent inheritance.

    • finally is a block of code that is always executed, whether an exception is thrown or not.

    • finalize is a method used for cleanup operations before an object is garbage collected.

  • Answered by AI
  • Q3. What is idempotent in API
  • Ans. 

    Idempotent in API means that making the same request multiple times has the same effect as making it once.

    • Idempotent operations produce the same result regardless of how many times they are called.

    • GET and PUT requests are typically idempotent, while POST requests are not.

    • For example, sending a PUT request to update a resource should have the same result whether it is sent once or multiple times.

  • Answered by AI
  • Q4. Pillars of JAVA and explain with example
  • Ans. 

    The pillars of JAVA are Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability of a method to do different things based on the ob...

  • Answered by AI

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

(1 Question)

  • Q1. Questions are based on ur projects Some code snipets Some sql query writings
Round 3 - One-on-one 

(1 Question)

  • Q1. Then 2nd round is mangerial Interpersonal skills
Round 4 - HR 

(1 Question)

  • Q1. Salry negotiations Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true explain project very well.
Basics should be clear

I applied via campus placement at Nutan Institute of Management Development and Research, Jalgaon

Round 1 - Coding Test 

Coding test Whit box testing black book testing Gray Box testing

Round 2 - Technical 

(4 Questions)

  • Q1. Technical related Questions
  • Q2. Technical related question
  • Q3. Attitude test related
  • Q4. JavaScript programming related

Interview Preparation Tips

Interview preparation tips for other job seekers - Ok no issue Automation test engineer interview related question

I applied via Naukri.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Telephonic Call 

(1 Question)

  • Q1. Introduce yourself 1.What is STLC 2. difference between Test plan,test case,test scanario 3.Positive and negative scanarion on pen. 4.selenium framework. 5.how to write selenium test cases.
  • Ans. 

    I am an Automation Test Engineer with knowledge of STLC, test plan, test case, test scenario, Selenium framework, and writing Selenium test cases.

    • STLC stands for Software Testing Life Cycle and is a process followed to ensure quality in software testing.

    • Test plan is a document that outlines the testing strategy, objectives, and scope of testing.

    • Test case is a set of steps and conditions that are executed to verify the ...

  • Answered by AI
Round 2 - Assignment 

Asking quetions on selenium, testNG and java
1.Tell me about yourself
2.Difference between Find Elements and find element
3.Difference between implicity and explicity wait.
4.syntax for explicity wait.
5.How to invoke browser.
6.What is testNg Annotations.
7.How to read excel file in selenium.
8.How to do parallel Testing.
9.Which tools using in selenium framework.
10.Exceptions in selenium.
11.What is stale exceptions.
12.How to do drag and drop in selenium.
13.WAP for two largest numbers
14.What is collection.
15.differencee between final and finaliy.
16.what is constructor.
17.what is defect bug cycle.
18.What is SDLC.
19Access modifiers in java.
20.Checked and unchecked exception.
21.how to handle alerts in selenium.
22.how to handle frames.

Round 3 - HR 

(1 Question)

  • Q1. I was not given final round interview. just submitted documents they not called yet. I am waiting for call

Interview Preparation Tips

Topics to prepare for Infosys Automation Test Engineer interview:
  • Java
  • Selenium
  • Testng
  • Manual Testing
Interview preparation tips for other job seekers - This interview quetions for fresher. Interview was easy.

Skills evaluated in this interview

NetBrain Interview FAQs

How many rounds are there in NetBrain Network Automation Engineer interview?
NetBrain interview process usually has 4 rounds. The most common rounds in the NetBrain interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for NetBrain Network Automation Engineer 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 NetBrain. The most common topics and skills that interviewers at NetBrain expect are Change Management, Incident management, Network Security, Python and Managed Services.
What are the top questions asked in NetBrain Network Automation Engineer interview?

Some of the top questions asked at the NetBrain Network Automation Engineer interview -

  1. what is function in python, how BGP works. OSPF related questi...read more
  2. Details routing protocol and switching questi...read more
  3. Network automation working experience questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 NetBrain interviews
Referral
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
NetBrain Network Automation Engineer Salary
based on 6 salaries
₹25.3 L/yr - ₹33.4 L/yr
195% more than the average Network Automation Engineer Salary in India
View more details
Network Automation Engineer
6 salaries
unlock blur

₹25.3 L/yr - ₹33.4 L/yr

Automation Engineer
4 salaries
unlock blur

₹24.5 L/yr - ₹30 L/yr

Business Development Representative
3 salaries
unlock blur

₹9 L/yr - ₹11.5 L/yr

Explore more salaries
Compare NetBrain with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview