Upload Button Icon Add office photos

Filter interviews by

Analog Devices Data Engineer Interview Questions and Answers

Updated 15 Jan 2025

Analog Devices Data Engineer Interview Experiences

2 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Company Website and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to my resume were asked, specifically pertaining to SQL, Python, dbt and Snowflake
Round 2 - Technical 

(1 Question)

  • Q1. Mixture of technical and managerial
Round 3 - Technical 

(1 Question)

  • Q1. One more round was conducted to understand my project and technical knowledge
Round 4 - Behavioral 

(1 Question)

  • Q1. Questions based on project and general understanding of pipelines and ETL

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Dec 2024

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

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

50 mcq 40 minutes fast paced

Round 2 - One-on-one 

(2 Questions)

  • Q1. SQL querying, using window functions and cte
  • Q2. Easy dsa using recursion
  • Ans. 

    Recursion is a technique where a function calls itself to solve a problem.

    • Identify the base case - the condition under which the function stops calling itself.

    • Define the recursive case - the condition under which the function calls itself.

    • Ensure progress towards the base case with each recursive call.

    • Example: Factorial calculation using recursion.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - clearing this is kinda luck based imo

Data Engineer Interview Questions Asked at Other Companies

asked in Cisco
Q1. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
asked in Sigmoid
Q2. Next Greater Element Problem Statement You are given an array arr ... read more
asked in Sigmoid
Q3. Problem: Search In Rotated Sorted Array Given a sorted array that ... read more
asked in Cisco
Q4. Covid Vaccination Distribution Problem As the Government ramps up ... read more
asked in Sigmoid
Q5. K-th Element of Two Sorted Arrays You are provided with two sorte ... read more

Data Engineer Jobs at Analog Devices

View all

Interview questions from similar companies

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

(3 Questions)

  • Q1. Very Easy sql questions
  • Q2. Very eeasy basic python question
  • Q3. Arey bhai access karne de
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic about python

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare for py3
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. OOPS concept and All Major pillars with Scanrio-based questions asked on Abstract class and Interface
  • Q2. .Net MVC and .Net Core based on program.cs file and Dependency Injection and Middleware in deep
  • Q3. Pattern question and check string Palindrome
  • Q4. SQL Queries around 4th highest salary of Employee
  • Q5. All basic programming concept checking like having prefix and postfix expression problem solving on paper
Round 2 - Technical 

(4 Questions)

  • Q1. TechnoManagerial Round Collection question to find about number of character present in the word Mirafra with live coding F2F
  • Q2. API testing ang REST API Concept
  • Q3. Professional Journey
  • Q4. Project Details
Round 3 - Technical 

(2 Questions)

  • Q1. It was a director round but say you need to give again technical round ,they wasted my time and money.
  • Q2. SQL Queries on pen and paper

Interview Preparation Tips

Interview preparation tips for other job seekers - HR said you haven't the skill to represent on client. Never believe on HR what they said.Final round was my Director's round but she wasted my time
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
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

Analog Devices Interview FAQs

How many rounds are there in Analog Devices Data Engineer interview?
Analog Devices interview process usually has 3 rounds. The most common rounds in the Analog Devices interview process are Technical, One-on-one Round and Behavioral.
How to prepare for Analog Devices Data 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 Analog Devices. The most common topics and skills that interviewers at Analog Devices expect are Analog, Healthcare, Python, Database Design and Data Analysis.
What are the top questions asked in Analog Devices Data Engineer interview?

Some of the top questions asked at the Analog Devices Data Engineer interview -

  1. easy dsa using recurs...read more
  2. Questions related to my resume were asked, specifically pertaining to SQL, Pyth...read more
  3. One more round was conducted to understand my project and technical knowle...read more

Tell us how to improve this page.

Analog Devices Data Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Tata Electronics Interview Questions
4.0
 • 144 Interviews
Texas Instruments Interview Questions
4.1
 • 124 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Molex Interview Questions
3.9
 • 53 Interviews
View all
Data Engineer

Bangalore / Bengaluru

3-4 Yrs

₹ 25-25 LPA

Data Engineer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

3-4 Yrs

₹ 25-25 LPA

Explore more jobs
Senior Engineer
23 salaries
unlock blur

₹22.5 L/yr - ₹40 L/yr

Software Engineer
22 salaries
unlock blur

₹5 L/yr - ₹19.4 L/yr

Senior Software Engineer
20 salaries
unlock blur

₹17 L/yr - ₹38 L/yr

Design & Verification Engineer
13 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Design Engineer
13 salaries
unlock blur

₹15 L/yr - ₹34.6 L/yr

Explore more salaries
Compare Analog Devices with

Texas Instruments

4.1
Compare

STMicroelectronics

4.1
Compare

NXP Semiconductors

3.7
Compare

Microchip Technology

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