Upload Button Icon Add office photos

Filter interviews by

Arista Automation System Support Engineer Interview Questions and Answers for Freshers

Updated 25 Jul 2024

Arista Automation System Support Engineer Interview Experiences for Freshers

1 interview found

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What are the components using of One PC?
  • Ans. 

    Components of a PC include CPU, motherboard, RAM, storage, GPU, power supply, and peripherals.

    • CPU (Central Processing Unit)

    • Motherboard

    • RAM (Random Access Memory)

    • Storage (HDD/SSD)

    • GPU (Graphics Processing Unit)

    • Power Supply

    • Peripherals (keyboard, mouse, monitor)

  • Answered by AI
  • Q2. You know about? how to Install OS?
  • Ans. 

    Yes, I know how to install an operating system.

    • Ensure the system meets the minimum requirements for the OS

    • Create a bootable installation media (USB, DVD)

    • Boot the system from the installation media

    • Follow on-screen instructions to select language, partition disk, and install OS

    • Complete the installation process and configure settings

  • Answered by AI
  • Q3. What type of Hardware Using in PC
  • Ans. 

    Various types of hardware components are used in a PC, including CPU, GPU, RAM, motherboard, storage devices, power supply, and peripherals.

    • CPU (Central Processing Unit)

    • GPU (Graphics Processing Unit)

    • RAM (Random Access Memory)

    • Motherboard

    • Storage devices (HDD, SSD)

    • Power supply

    • Peripherals (keyboard, mouse, monitor)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - develop skills

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Apr 2021. There were 5 interview rounds.

Round 1 - Aptitude Test 

English, reasoning (verbal and non verbal). Basics. That could be worked out of giving mock tests.

Round 2 - Coding Test 

You just have to write a code based on the given question. There are multiple language to select from and you can opt for any like Java, python etc

Round 3 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.
  • Q6. Be honestly manipulative and answer all your achievements and awards to and also cover previous employment if any. Avoid negative speeches in any context
Round 4 - Technical 

(1 Question)

  • Q1. They would ask what have you prepared before asking any technical questions. So answer wisely and technically.
Round 5 - Behavioral 

(1 Question)

  • Q1. These consists of questions based on behavioural as well as managerial skills one can expect from you,once recruited. Situation based basically.

Interview Preparation Tips

Interview preparation tips for other job seekers - If trying for IT sector, being from a non-tech stream, just work on two things- 1. A language (c, c++, Java, python etc) 2. DBMS, as it is in much demand. For tech stream, you already have an upper hand for the technical round.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What type of joins are used in your project ?
  • Q2. Did you have knowledge on google cloud platform ?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Introduction and educational background.
  • Q2. Basic knowledge of technical
Round 2 - Technical 

(2 Questions)

  • Q1. Aboit yoir self abd Deep in tech abd about the process and
  • Q2. If freshers then you will prepare about self and knowledge of technical

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are fresher then you focus only your communication and if your are experience then will prepare you technical also communication and aboit rol and responsibilities.etc
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy round you can qualify easily.

Round 2 - Group Discussion 

Normal GD where you have to speak

Round 3 - One-on-one 

(2 Questions)

  • Q1. My CV was scrutinized
  • Q2. My project were scrutinized

Interview Preparation Tips

Interview preparation tips for other job seekers - Work hard and keep working.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Pls do interview schedule
  • Q2. Html related questions
  • Q3. Css related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm a fresher

I was interviewed in May 2023.

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 - One-on-one 

(6 Questions)

  • Q1. What is oops concepts in Java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI
  • Q2. What is a collections in java
  • Ans. 

    Collections in Java refer to classes and interfaces that implement data structures like lists, sets, and maps.

    • Collections provide a way to store and manipulate groups of objects in Java

    • Examples include ArrayList, LinkedList, HashSet, and HashMap

    • Collections framework includes interfaces like List, Set, Map, and classes like ArrayList, HashSet, and HashMap

  • Answered by AI
  • Q3. What is list and set in java
  • Ans. 

    List and Set are both interfaces in Java used to store collections of elements, but with different characteristics.

    • List is an ordered collection that allows duplicate elements, while Set is an unordered collection that does not allow duplicates.

    • List implementations include ArrayList, LinkedList, and Vector, while Set implementations include HashSet, TreeSet, and LinkedHashSet.

    • List allows access to elements by index, wh...

  • Answered by AI
  • Q4. Write. Program of palindrome program
  • Ans. 

    A palindrome program checks if a given string reads the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and convert all characters to lowercase

    • Compare the string with its reverse to check if it is a palindrome

  • Answered by AI
  • Q5. Write a program of prime numbers
  • Ans. 

    Program to generate prime numbers

    • Create a function to check if a number is prime

    • Iterate through numbers and check for prime numbers

    • Store prime numbers in an array

  • Answered by AI
  • Q6. What is inheritance and what is class and object
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class. A class is a blueprint for creating objects, while an object is an instance of a class.

    • Inheritance allows a class to reuse code from another class, promoting code reusability and reducing redundancy.

    • A class is a template or blueprint for creating objects, defining attributes and methods.

    • An object...

  • Answered by AI
Round 3 - Coding Test 

Coding round test in tech Mahindra

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jun 2023. 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. Network related questions
  • Q2. Some hardware related questions
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 - Aptitude Test 

Learn some coding language like python and Java
And SAP ABAP

Round 3 - Technical 

(3 Questions)

  • Q1. What is the use of static word in java
  • Ans. 

    Static keyword in Java is used to create class-level variables and methods.

    • Static variables and methods belong to the class rather than the instance of the class.

    • Static variables are initialized only once at the start of the program.

    • Static methods can be called without creating an instance of the class.

    • Static keyword can also be used to create static blocks that are executed only once when the class is loaded.

    • Example: ...

  • Answered by AI
  • Q2. Can we implement multiple interfaces in a single Java class?
  • Ans. 

    Yes, Java supports multiple interface implementation in a single class.

    • A class can implement multiple interfaces separated by a comma.

    • All the methods of the implemented interfaces must be implemented in the class.

    • Example: public class MyClass implements Interface1, Interface2 { }

  • Answered by AI
  • Q3. What is the “Diamond problem” in Java?
  • Ans. 

    Diamond problem is a multiple inheritance issue in Java where two classes have a common parent class and a subclass inherits from both.

    • Occurs when two classes have a common parent class and a subclass inherits from both

    • Results in ambiguity and conflicts in method and variable resolution

    • Solved in Java by implementing interfaces instead of multiple inheritance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get this job of my this preference and this python and Java coding language

Skills evaluated in this interview

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Recently using windows
  • Ans. 

    Yes, I have recently used Windows.

    • I have been using Windows as my primary operating system for the past 5 years.

    • I am familiar with various versions of Windows, including Windows 10 and Windows Server.

    • I have experience in troubleshooting Windows-related issues, such as driver conflicts and system crashes.

    • I have worked with Active Directory, Group Policy, and other Windows administration tools.

    • I have deployed and managed...

  • Answered by AI
  • Q2. How do you put on laptop OS
  • Ans. 

    To install an OS on a laptop, you need to create a bootable installation media and follow the installation process.

    • Create a bootable installation media (USB or DVD)

    • Access the BIOS/UEFI settings and set the boot order to prioritize the installation media

    • Restart the laptop and boot from the installation media

    • Follow the on-screen instructions to select the OS, partition the disk, and complete the installation

    • Once the inst...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. How to set printer IP
  • Ans. 

    To set printer IP, access the printer's settings through the control panel or web interface and configure the IP address.

    • Access the printer's control panel or web interface

    • Navigate to the network settings or TCP/IP settings

    • Enter the desired IP address and subnet mask

    • Save the changes and restart the printer if necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Excell sheet work ,OS process , printer work,
Scanner work all i now

Skills evaluated in this interview

Arista Automation Interview FAQs

How many rounds are there in Arista Automation System Support Engineer interview for freshers?
Arista Automation interview process for freshers usually has 1 rounds. The most common rounds in the Arista Automation interview process for freshers are Technical.
What are the top questions asked in Arista Automation System Support Engineer interview for freshers?

Some of the top questions asked at the Arista Automation System Support Engineer interview for freshers -

  1. what are the components using of One ...read more
  2. You know about? how to Install ...read more
  3. what type of Hardware Using in...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Arista Automation interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

Arista Automation System Support Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

3.0

Job Security

3.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
System Support Engineer
3 salaries
unlock blur

₹3.4 L/yr - ₹4.4 L/yr

Explore more salaries
Compare Arista Automation with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
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