Upload Button Icon Add office photos

Filter interviews by

Arista Networks Senior Software Engineer Interview Questions, Process, and Tips

Updated 11 Sep 2024

Top Arista Networks Senior Software Engineer Interview Questions and Answers

Arista Networks Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. A string contains parenthesis, curly brackets and square brackets. Check if the string is valid or not.
  • Ans. 

    Check if a string containing parenthesis, curly brackets, and square brackets is valid.

    • Use a stack to keep track of opening brackets

    • Pop from stack when encountering a closing bracket, ensuring it matches the corresponding opening bracket

    • Return false if stack is not empty at the end

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Find the memory of the given structure (Struct padding is the hint)
  • Ans. 

    The question asks to find the memory of a given structure by considering struct padding.

    • Struct padding refers to the unused bytes added to align the members of a structure.

    • To find the memory of a structure, we need to consider the size of each member and the padding added.

    • The total memory of a structure is the sum of the sizes of its members and the padding.

  • Answered by AI
  • Q2. Write code to find the position of a number in a BST
  • Ans. 

    Code to find the position of a number in a BST

    • Implement a recursive function to traverse the BST

    • Compare the target number with the current node value

    • If the target is smaller, go to the left subtree; if larger, go to the right subtree

    • Repeat until the target is found or the subtree is null

  • Answered by AI
  • Q3. Create a Trie data structure and perform insertion and search on it.
  • Ans. 

    A Trie is a tree-like data structure used for efficient retrieval of strings. It supports insertion and search operations.

    • A Trie is also known as a prefix tree.

    • Each node in the Trie represents a character.

    • The root node represents an empty string.

    • Each node can have multiple children, each representing a different character.

    • Insertion involves traversing the Trie and creating new nodes as needed.

    • Search involves traversing...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Arista Networks Senior Software Engineer interview:
  • Data Structures
  • OS
  • C

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed before Feb 2022. There were 2 interview rounds.

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 - Technical 

(2 Questions)

  • Q1. Basic javascript questions
  • Q2. Opps concepts of PHP

Interview Preparation Tips

Interview preparation tips for other job seekers - All questions are related to my past experience and projects
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java basics , oops , spring
Round 2 - One-on-one 

(1 Question)

  • Q1. Manger round basics behavior

I applied via Naukri.com and was interviewed in Jun 2022. There were 9 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 - Work 

(1 Question)

  • Q1. Work related discussion session.
Round 3 - Technical 

(1 Question)

  • Q1. Pick one question from 3 given questions and complete it in 7 days. I opted for creating traingle with opengl using shader.
Round 4 - Coding Test 

Data structures and algorithms
Problem were from leetcode and geek for geeks.

Round 5 - Technical 

(1 Question)

  • Q1. Data structures and algorithms
Round 6 - Technical 

(1 Question)

  • Q1. Design and algorithms
Round 7 - Coding Test 

Coding round , questions from leetcode

Round 8 - Case Study 

Situation based questions and thought process

Round 9 - Behavioral 

(2 Questions)

  • Q1. Managerial round 1, culture fit, behaviour
  • Q2. Managerial round 2, innovative things done previously, how to face criticism, does experience matters in learning from subordinate

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself. What matters is how you proceed with a blocked situation.
Round 1 - Technical 

(1 Question)

  • Q1. Regarding project and skills

Interview Preparation Tips

Interview preparation tips for other job seekers - I have done interview with sterlite technologies

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - HR 

(4 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?
  • Q3. Why are you looking for a change?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Sterlite Technologies Senior Software Engineer interview:
  • EJB
  • Java
  • Gitlab
  • SQL
  • Rest
Interview preparation tips for other job seekers - Ask about the technologies they are hiring for and training procedure at the time of interview. Otherwise you'll regret joining.

I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

8 Questions

  • Q1. Version of Java and Spring boot you are using in your current project?
  • Ans. 

    We are using Java 11 and Spring Boot 2.4.3 in our current project.

    • Java 11 provides better performance and security features compared to previous versions.

    • Spring Boot 2.4.3 offers improved support for Kotlin and GraalVM.

    • We are also using Spring Data JPA for database access and Spring Security for authentication and authorization.

  • Answered by AI
  • Q2. What is Singleton Design Pattern? Can we create a clone of an object from singleton class?
  • Ans. 

    Singleton Design Pattern ensures only one instance of a class exists. No, we cannot create a clone of an object from singleton class.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It is used when only one object is required to coordinate actions across the system.

    • The instance is created only when it is requested for the first time.

    • The constructor of the singleton class is private.

    • Clone method is

  • Answered by AI
  • Q3. Joins in SQL
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Joins are used to retrieve data from multiple tables in a single query

    • Types of joins include inner join, left join, right join, and full outer join

    • Join conditions are specified using the ON keyword and can include multiple conditions

    • Aliases can be used to simplify the syntax of join queries

  • Answered by AI
  • Q4. What are triggers?What are stored procedures?
  • Ans. 

    Triggers are database objects that automatically execute in response to certain events. Stored procedures are precompiled SQL statements.

    • Triggers are used to enforce business rules or to audit changes to data.

    • Stored procedures are used to encapsulate frequently used SQL statements for reuse and to improve performance.

    • Triggers can be used to update related tables when a record is inserted, updated, or deleted.

    • Stored pro...

  • Answered by AI
  • Q5. Write a Program for reverse sort of keys in HashMap.
  • Ans. 

    Program to reverse sort keys in HashMap

    • Create a List from the keySet() of the HashMap

    • Sort the List in reverse order using Collections.sort()

    • Iterate through the sorted List and add the keys to a new LinkedHashMap

    • Return the LinkedHashMap

  • Answered by AI
  • Q6. Dependency Injection and Inversion of Control?
  • Q7. What is Maven ? what are different cycles in Maven
  • Ans. 

    Maven is a build automation tool used primarily for Java projects. It manages dependencies and builds the project.

    • Maven is based on the concept of POM (Project Object Model) which describes the project dependencies, build process, and other configurations.

    • Maven has different cycles such as validate, compile, test, package, verify, install, and deploy.

    • The validate cycle checks if the project is correct and all necessary...

  • Answered by AI
  • Q8. Various Springboot Annotations.
  • Ans. 

    Springboot annotations are used to simplify the development process and provide additional functionality.

    • Annotations like @RestController and @RequestMapping are used to create RESTful web services.

    • @Autowired is used for dependency injection.

    • @Transactional is used to manage transactions.

    • @Component is used to mark a class as a Spring component.

    • @Value is used to inject values from properties files or environment variable...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy and I had a nice experience . Interviewer was good . Just be clear with your basics and try to explain your points effectively.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Regarding Java memory management
Round 2 - One-on-one 

(1 Question)

  • Q1. Regarding RMI process
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Dsa and pointer and logical .

Round 2 - Coding Test 

Tree and LL and graphs.

Round 3 - HR 

(2 Questions)

  • Q1. How will you solved problems
  • Ans. 

    I approach problems methodically by breaking them down, analyzing root causes, brainstorming solutions, and testing them.

    • Break down the problem into smaller, manageable parts

    • Analyze the root causes of the problem

    • Brainstorm potential solutions

    • Test and iterate on the solutions until the problem is resolved

  • Answered by AI
  • Q2. How will you manage workload
  • Ans. 

    I will manage workload by prioritizing tasks, setting realistic deadlines, delegating when necessary, and regularly reviewing progress.

    • Prioritize tasks based on deadlines and importance

    • Set realistic deadlines and milestones

    • Delegate tasks to team members when necessary

    • Regularly review progress and adjust workload as needed

  • Answered by AI

Arista Networks Interview FAQs

How many rounds are there in Arista Networks Senior Software Engineer interview?
Arista Networks interview process usually has 1 rounds. The most common rounds in the Arista Networks interview process are One-on-one Round.
How to prepare for Arista Networks Senior Software 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 Arista Networks. The most common topics and skills that interviewers at Arista Networks expect are C++, Distribution System, Java, Javascript and Microservices.
What are the top questions asked in Arista Networks Senior Software Engineer interview?

Some of the top questions asked at the Arista Networks Senior Software Engineer interview -

  1. Find the memory of the given structure (Struct padding is the hi...read more
  2. Write code to find the position of a number in a ...read more
  3. Create a Trie data structure and perform insertion and search on ...read more

Tell us how to improve this page.

Arista Networks Senior Software Engineer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more
Arista Networks Senior Software Engineer Salary
based on 11 salaries
₹20 L/yr - ₹56.6 L/yr
134% more than the average Senior Software Engineer Salary in India
View more details

Arista Networks Senior Software Engineer Reviews and Ratings

based on 2 reviews

2.0/5

Rating in categories

1.5

Skill development

2.0

Work-life balance

1.0

Salary

2.5

Job security

2.5

Company culture

1.0

Promotions

1.5

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
228 salaries
unlock blur

₹16 L/yr - ₹60 L/yr

Softwaretest Engineer
26 salaries
unlock blur

₹11.4 L/yr - ₹43.4 L/yr

Software Developer
22 salaries
unlock blur

₹12 L/yr - ₹45 L/yr

Technical Solutions Engineer
15 salaries
unlock blur

₹8 L/yr - ₹26 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹20 L/yr - ₹56.6 L/yr

Explore more salaries
Compare Arista Networks with

Sterlite Technologies

3.8
Compare

Indus Towers

3.8
Compare

Cisco

4.2
Compare

BT Business

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