Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Arrow Electronics Team. If you also belong to the team, you can get access from here

Arrow Electronics

Compare button icon Compare button icon Compare
4.0

based on 138 Reviews

Filter interviews by

Arrow Electronics Web Engineer Interview Questions and Answers

Updated 16 May 2023

Arrow Electronics Web Engineer Interview Experiences

1 interview found

Web Engineer Interview Questions & Answers

user image Rajesh C

posted on 16 May 2023

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

I applied via LinkedIn and was interviewed before May 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. Technical Questions based on the Role you have applied for, what you have in the Resume. Coding test to test your Abilities
Round 3 - One-on-one 

(1 Question)

  • Q1. Manager Round about what you may do, once you are in
Round 4 - HR 

(1 Question)

  • Q1. Salary and Benefits Discussion

Interview Preparation Tips

Topics to prepare for Arrow Electronics Web Engineer interview:
  • Java
  • Javascript
  • SQL
  • ExtJS
  • Spring Boot
Interview preparation tips for other job seekers - Arrow is a Product based company, and has lot of internal Projects, Mention what you know and where you are strong ,in the resume, Be Confident -Speak well

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude and technical questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Pattern question
  • Q2. Doubly linked list insertion
Round 3 - Behavioral 

(2 Questions)

  • Q1. C++ linked lists
  • Q2. Resume based, projects were asked.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. C questions on oops concepts
  • Q2. Python and ml questions
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic fundamentals of cs, dsa
  • Q2. Puzzles, os concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basics for cs fundamentals, dsa leetcode medium
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Technical plus aptitude based on domain you choose( pre placemt talks)

Round 2 - Technical 

(2 Questions)

  • Q1. Communication theory , aptitude, electronics basics for firmware domain(screening)
  • Q2. Coding related questions
Round 3 - Technical 

(1 Question)

  • Q1. Circuits related practical questions
Round 4 - HR 

(1 Question)

  • Q1. General things only
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Profit and loss ,time and work ,speed distance and time

Round 2 - Coding Test 

Java ,ops ,collection frameworks

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

2 problem was given to solve
1) Smallest Negative balance - -----%20America%20-%20Weekly%20Algorithm%20Challenges/Week%2021%20Algorithm%20Challenge/Smallest%20Negative%20Balance.md
2) Find the absolute difference between alpha & beta from the array.
Alpha -An element k in a array occurs k consecutive time
Beta - An element k in an array occurs k consecutive time starting from index k

Sample input
Arr[] = {2,2,2,4,4,4,4,1,2,2]
Output
Alpha - 3
Beta - 1
Absolute difference - 1

Note : consider array index starts with 1

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the problem statement clearly, prepare well for problem solving & DSA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. General behavioral and situational questions about team members
Round 2 - Technical 

(1 Question)

  • Q1. Identify if the number is positive, negative or zero
  • Ans. 

    Identify if a number is positive, negative, or zero

    • Check if the number is greater than 0 to determine if it is positive

    • Check if the number is less than 0 to determine if it is negative

    • If the number is neither greater nor less than 0, it is zero

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quantitative Questions
Computer Science core MCQ questions
2 Coding Questions

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Projects mentioned on resume
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React.js for front-end development

    • Implemented RESTful APIs for backend using Node.js

    • Utilized MongoDB for database management

  • Answered by AI
  • Q2. Questions based on Linked List
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Add two linked list
  • Ans. 

    To add two linked lists, iterate through both lists simultaneously and add corresponding nodes, considering carry from previous addition.

    • Create a dummy node to hold the result.

    • Initialize current node to dummy node.

    • Iterate through both lists, adding values and carry from previous addition.

    • Move to next nodes in both lists.

    • Handle cases where one list is longer than the other.

    • Handle final carry if present.

  • Answered by AI
  • Q2. Find shortest path in graph
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path in a graph

    • Implement Dijkstra's algorithm to find the shortest path between two nodes in a graph

    • Maintain a priority queue to keep track of the shortest distance to each node

    • Update the shortest distance to each node as you traverse the graph

    • Track the path by storing the previous node for each node visited

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Check tree is BST
  • Ans. 

    Check if a binary tree is a Binary Search Tree (BST)

    • Perform an in-order traversal of the tree and check if the resulting array is sorted

    • Keep track of the previous node value during traversal to compare with the current node value

    • Ensure that each node's value is greater than the previous node's value in the in-order traversal

  • Answered by AI
  • Q2. Check substring palindrome or not
  • Ans. 

    Check if a substring in an array of strings is a palindrome or not.

    • Iterate through each string in the array

    • For each string, check if any of its substrings are palindromes

    • Return true if a palindrome substring is found, false otherwise

  • Answered by AI

Skills evaluated in this interview

Arrow Electronics Interview FAQs

How many rounds are there in Arrow Electronics Web Engineer interview?
Arrow Electronics interview process usually has 4 rounds. The most common rounds in the Arrow Electronics interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Arrow Electronics Web 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 Arrow Electronics. The most common topics and skills that interviewers at Arrow Electronics expect are Javascript, Core Java, Ajax, HTML and Information Technology.

Tell us how to improve this page.

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 272 Interviews
Intel Interview Questions
4.2
 • 220 Interviews
Tata Electronics Interview Questions
4.0
 • 142 Interviews
Texas Instruments Interview Questions
4.1
 • 123 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Molex Interview Questions
3.9
 • 53 Interviews
View all
Arrow Electronics Web Engineer Salary
based on 14 salaries
₹8.3 L/yr - ₹23.1 L/yr
72% more than the average Web Engineer Salary in India
View more details

Arrow Electronics Web Engineer Reviews and Ratings

based on 3 reviews

4.7/5

Rating in categories

4.7

Skill development

4.6

Work-life balance

4.6

Salary

5.0

Job security

4.6

Company culture

4.6

Promotions

4.7

Work satisfaction

Explore 3 Reviews and Ratings
Applications Engineer
68 salaries
unlock blur

₹9.6 L/yr - ₹25 L/yr

Associate Manager IT
29 salaries
unlock blur

₹18.1 L/yr - ₹40 L/yr

IT Associate
27 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

IT Manager
20 salaries
unlock blur

₹18.1 L/yr - ₹45 L/yr

Senior Technical Lead
19 salaries
unlock blur

₹24 L/yr - ₹25 L/yr

Explore more salaries
Compare Arrow Electronics with

Avnet

3.7
Compare

Future Electronics

4.0
Compare

WPG Holdings

4.7
Compare

RS Components & Controls (I)

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