Electrical Engineer Interview Questions
Prepare for your electrical engineering interview with 10 expert-curated questions and sample answers covering circuit design, power systems, embedded systems, and behavioral topics.
behavioral Questions
Tell me about a complex electrical design challenge you solved.
behavioraladvanced
Tell me about a complex electrical design challenge you solved.
Sample Answer
I was designing a power supply for an IoT sensor node that needed to operate for 5 years on a single battery in an outdoor environment (-40 to +85°C). The challenge was achieving sub-microamp quiescent current while maintaining reliable wake-up and communication. I selected an ultra-low-power LDO regulator with 300nA quiescent current, designed a sleep mode circuit that duty-cycled the radio at 0.1%, and used a comparator-based wake-up circuit instead of a microcontroller timer to minimize sleep current. I validated the design through thermal chamber testing and current profiling, achieving a measured average current of 8µA—well within the 5-year battery life target with margin.
Tip: Quantify the design constraints and your solution's performance against those constraints.
Describe a time you had to debug a circuit that wasn't working as expected.
behavioralintermediate
Describe a time you had to debug a circuit that wasn't working as expected.
Sample Answer
A motor driver board was intermittently shutting down under load. My initial measurements showed the output was clean, so I suspected a thermal issue. Using a thermal camera, I found a MOSFET running 30°C hotter than its neighbors. I traced the issue to an asymmetric PCB layout—one MOSFET had a shorter, wider trace to the sense resistor, causing current imbalance. The hottest MOSFET was hitting its thermal shutdown threshold. I fixed it in the next revision by equalizing trace lengths and widths, and added current sensing on each phase for monitoring. This experience taught me to always simulate current sharing in parallel MOSFET designs.
Tip: Show systematic debugging methodology and the lessons you applied to prevent similar issues in future designs.
technical Questions
Explain the difference between AC and DC power systems, and when you'd use each.
technicalbeginner
Explain the difference between AC and DC power systems, and when you'd use each.
Sample Answer
DC (direct current) flows in one direction and is used for batteries, electronic circuits, solar panels, and low-voltage applications. AC (alternating current) periodically reverses direction and is the standard for power distribution because transformers can easily step voltage up for efficient long-distance transmission and down for safe end-use. AC is used for grid power, motors, and most industrial equipment. Modern power systems often convert between them—AC from the grid is rectified to DC for electronics, and DC from solar panels is inverted to AC for grid connection. The choice depends on the application: DC for precision electronics, AC for power distribution and motors.
Tip: Show practical understanding beyond the textbook definition—mention real applications and conversion between the two.
Walk me through your PCB design process from schematic to manufacturing.
technicaladvanced
Walk me through your PCB design process from schematic to manufacturing.
Sample Answer
I start with requirements: electrical specs, form factor, environment, and cost targets. I create the schematic in Altium Designer, selecting components based on availability, cost, and thermal performance. After schematic review, I move to layout—placing critical components first (power, high-speed signals, RF), defining stack-up for impedance control, and routing with DFM rules. I follow best practices: ground planes for return paths, proper decoupling capacitor placement, thermal relief on power planes, and controlled impedance for differential pairs. I run DRC and simulate signal integrity for high-speed traces. Before sending to fab, I generate Gerbers, review them in a viewer, and create a BOM with alternates for supply chain flexibility.
Tip: Mention specific tools, standards, and design rules you follow—this shows practical experience beyond academic knowledge.
How do you ensure EMC compliance in your designs?
technicalintermediate
How do you ensure EMC compliance in your designs?
Sample Answer
I design for EMC from the start rather than fixing problems at the end. Key practices include: proper PCB layer stackup with continuous ground planes, short and direct return current paths, controlled impedance routing for high-speed signals, and strategic placement of filtering components (ferrite beads, common-mode chokes, TVS diodes). I minimize loop areas in switching circuits, use shielding for sensitive blocks, and implement proper connector filtering. For pre-compliance testing, I use a near-field probe and spectrum analyzer to identify emission sources before formal testing. In my last product, this approach achieved first-pass EMC certification, saving approximately $15K in re-testing costs.
Tip: Emphasize proactive EMC design rather than reactive fixes, and mention both conducted and radiated considerations.
What is your experience with embedded systems and microcontroller programming?
technicalintermediate
What is your experience with embedded systems and microcontroller programming?
Sample Answer
I've worked extensively with ARM Cortex-M processors (STM32, nRF52) and 8-bit microcontrollers (PIC, AVR). I program in embedded C and have experience with RTOS (FreeRTOS) for multi-tasking applications. I've implemented communication protocols (SPI, I2C, UART, CAN), ADC signal conditioning, PWM motor control, and low-power sleep modes. On a recent project, I developed firmware for a battery-powered sensor that managed BLE communication, sensor sampling, and flash data logging with an RTOS, achieving 2-year battery life. I use JTAG/SWD debuggers and logic analyzers for debugging, and I write unit tests for critical firmware modules.
Tip: Match your embedded experience to the job requirements—IoT, automotive, industrial, or consumer electronics will value different protocols and architectures.
How do you approach power supply design for noise-sensitive analog circuits?
technicaladvanced
How do you approach power supply design for noise-sensitive analog circuits?
Sample Answer
For noise-sensitive circuits, I focus on three areas: regulator selection, filtering, and layout. I use low-noise LDOs with high PSRR (>70dB at frequencies of interest) rather than switching regulators near sensitive analog blocks. If switching regulators are necessary for efficiency, I place them upstream with LC post-regulation. I implement multi-stage decoupling: bulk capacitors (10-100µF) for low-frequency noise, ceramic capacitors (100nF and 10nF) for mid and high frequencies, and ferrite beads for isolation between digital and analog power domains. Layout-wise, I use separate power planes for analog and digital, single-point grounding to prevent ground loops, and keep switching regulator inductors away from sensitive signal paths.
Tip: Show practical noise reduction techniques, not just textbook theory—mention specific PSRR values and decoupling strategies.
What safety standards are you familiar with, and how do they influence your designs?
technicalbeginner
What safety standards are you familiar with, and how do they influence your designs?
Sample Answer
I'm familiar with IEC 62368-1 for IT and AV equipment safety (creepage and clearance distances, insulation requirements), UL standards for North American market access, and IEC 61508/61511 for functional safety in industrial systems. For medical devices, I've worked with IEC 60601-1. These standards influence my designs from the start: I calculate creepage and clearance distances based on working voltage and pollution degree, design isolation barriers with the correct reinforced insulation rating, implement protective earth connections, and select components with appropriate safety certifications. I also design for fault tolerance—what happens when a component fails should not create a safety hazard.
Tip: Name the specific standards relevant to the industry you're targeting and show how they shaped actual design decisions.
situational Questions
A prototype works on your bench but fails in the field. How do you troubleshoot?
situationaladvanced
A prototype works on your bench but fails in the field. How do you troubleshoot?
Sample Answer
I'd systematically identify what's different between the bench and field environments. I'd characterize the failure mode: is it intermittent or consistent, temperature-dependent, load-dependent, or related to input power quality? I'd review the environmental conditions—temperature range, humidity, vibration, EMI sources, and power supply characteristics in the field. I'd add instrumentation: data logging of supply voltages, temperatures, and key signals to capture the failure in situ. Common culprits are inadequate voltage margins, thermal issues, ESD events, or noise from nearby equipment. Once identified, I'd validate the fix in environmental testing (thermal cycling, vibration, ESD) before redeploying.
Tip: Show a systematic approach to characterizing environmental differences, not just random component swaps.
Your team disagrees on a design approach—some want a custom ASIC, others prefer an FPGA. How do you decide?
situationalintermediate
Your team disagrees on a design approach—some want a custom ASIC, others prefer an FPGA. How do you decide?
Sample Answer
I'd evaluate based on volume, timeline, cost, and flexibility. FPGAs excel for low-to-medium volumes (<100K units), rapid prototyping, and designs that may need field updates—higher unit cost but no NRE. ASICs make sense for high volumes (>500K) where the NRE ($500K-$5M+) is amortized, and for applications requiring lowest power or smallest die size. I'd build a cost crossover analysis showing total cost versus volume, factor in time-to-market (FPGA is 6-12 months faster), and assess technical requirements (clock speeds, power budget, IP availability). I'd present the data to the team and recommend FPGA for initial production with an ASIC migration path if volumes justify it.
Tip: Show data-driven decision making and the ability to find a pragmatic middle ground.
Preparation Tips
Review fundamental EE concepts: Ohm's law, Kirchhoff's laws, Thevenin/Norton equivalents, frequency response, and feedback control theory—you may be tested on these basics.
Prepare a portfolio of PCB designs, schematics, or test results you can walk through, showing your design methodology and problem-solving approach.
Research the company's products and identify the specific EE disciplines they need (power, RF, embedded, signal processing) so you can emphasize relevant experience.
Practice explaining complex technical concepts clearly—you may interview with hiring managers or cross-functional team members who aren't electrical engineers.
Be ready for practical exercises: reading a schematic, identifying issues in a PCB layout, or writing pseudocode for a microcontroller peripheral configuration.
Practice Electrical Engineer Interview Questions
Get AI-powered feedback on your answers and ace your next interview.
Start Interview PrepRelated Interview Questions
Mechanical Engineer
Prepare for your mechanical engineering interview with 10 expert-curated questions and sample answers covering design, thermodynamics, materials, and behavioral topics.
Software Engineer
Prepare for your software engineer interview with 10 expert-curated questions and sample answers covering coding, system design, and behavioral topics.
DevOps Engineer
Ace your DevOps engineer interview with 10 targeted questions and sample answers on CI/CD, infrastructure as code, containerization, and incident response.