Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      Amazon

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: Amazon reviews | Amazon jobs | Amazon salaries | Amazon benefits
      Amazon interviewsAmazon Embedded Software Engineer interviewsAmazon interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Embedded Software Engineer Interview

      18 Jan 2026
      Anonymous interview candidate
      Redmond, WA
      No offer
      Positive experience
      Average interview

      Application

      I applied through a recruiter. I interviewed at Amazon (Redmond, WA) in Oct 2025

      Interview

      For the embedded C role I interviewing for, there is the initial interview, in which you have to answer two coding questions, provide working code in C/C++. The interview time allocated was 45 minutes.

      Interview questions [1]

      Question 1

      Problem Statement: Given a byte array in network byte order, write an algorithm to find the starting bit position of the first occurrence of the 32-bit, big-endian pattern (0xFE6B2840) in the byte array. The pattern may or may not be byte aligned in the input. The function htonl() and ntohl() are provided in the C library to convert the endian order from host to network order, and from network to host order respectively: uint32_t htonl(uint32_t hostlong); uint32_t ntohl(uint32_t netlong); Note: network byte order is big-endian, host byte order is little-endian. Signature of function to implement: int findPattern(const uint32_t numBytes, const uint8_t data[]) Description of function parameters: Input parameters: uint32_t numBytes - The number of bytes in the array named 'data' uint8_t data[] - The byte stream of data to search Return: -1: if the given pattern (0xFE6B2840) is not found. -2: if the inputData is Null or the size of the 'data' is insufficient to find the pattern (0xFE6B2840). Otherwise, the pattern is found. Return the starting bit position of the pattern (0xFE6B2840). Example 1 - Byte Aligned: Inputs: numBytes: 8 data: { 0x00, 0x01, 0xFE, 0x6B, 0x28, 0x40, 0x02, 0x03 } Starting position is here at bit 16 Returns: 16 Example 2 - Non-byte Aligned: Image 2: This is the same as example 1, left-shifted by 1 bit! Inputs: numBytes: 8 data: { 0x00, 0x03, 0xFC, 0xD6, 0x50, 0x80, 0x04, 0x06 } Starting position is here at bit 15 (least significant bit of the second byte of the input) Returns: 15
      1 Answer

      Other Embedded Software Engineer interview reviews for Amazon

      Embedded Software Engineer Interview

      4 Jun 2026
      Anonymous interview candidate
      No offer
      Neutral experience
      Average interview

      Application

      I interviewed at Amazon

      Interview

      Medium technical problem that could be solved within time. I wish there were more behavioral questions but interviewer provided only technical problems. The interviewer didn't seem interested in going over resume or my particular skill, which led to providing non-tailored technical problems.

      Interview questions [1]

      Question 1

      Watchdog kernel OS scheduling problem.
      Answer question

      Embedded Software Engineer Interview

      1 May 2026
      Anonymous interview candidate
      No offer
      Negative experience
      Average interview

      Application

      I interviewed at Amazon

      Interview

      Recruiter call, online coding assessment, online interview, in person interview. Incompetent recruiter told me that the interview was going to be about embedded coding but it was actually system design.

      Embedded Software Engineer Interview

      25 Apr 2026
      Anonymous interview candidate
      Gdańsk
      No offer
      Positive experience
      Average interview

      Application

      I interviewed at Amazon (Gdańsk)

      Interview

      The entire process went smoothly, starting with the initial recruiter phone call and followed by a technical interview with a software engineer. The technical discussion was heavily focused on embedded‑systems concepts, particularly bit manipulation, bitwise operations, and low‑level programming fundamentals.