Electrified Transit Engineering & DeliveryExpert-built kit

Protection & Relay Engineer

Performs short-circuit analysis, develops protection coordination curves, models arc flash hazards, and updates one-line diagrams for transit power systems.

Interview content for Senior Protection & Relay Engineer

28
What to ask. Competency and attitude questions, assigned to the right round.
190
What to listen for. Positive and negative indicators, per question.
6
What the hire must do. Capabilities with expected proficiency at each level.

Look inside: one question, as it appears in the kit

Pick the level you’re hiring. The sample changes with the level you select.

Round 2 · Hiring Manager Technical Deep Dive15 competency questions

Protection And Relay Engineering

Cyber-Physical Integration & Advanced Monitoring

Implements secure communication protocols, deploys condition monitoring sensors, and investigates cyber-physical anomalies.

Expected at Senior Protection & Relay Engineer

Sample competency question

Describe a time when you introduced a new monitoring or communication capability into an existing protection network.

Ask once, as written, then allow silence. A helpful rephrase may hand the candidate the answer.

Positive indicators

  • Prioritizes protection availability over monitoring features
  • Implements network segmentation or secure protocols
  • Tests under simulated fault/load conditions
  • Coordinates with IT/cybersecurity teams

Negative indicators

  • Deploys without security assessment
  • Overloads existing communication channels
  • Ignores impact on relay processing time

Independent implementation of OT security and monitoring is valuable for modernizing protection infrastructure, though enterprise architecture remains lead/principal scope.

Ryan Mahoney

Why this role is hard · Ryan Mahoney

The hardest part is hiring someone who can set relay parameters on their own while still pushing back when contractors rush commissioning or utilities ask for last-minute coordination shortcuts. You cannot evaluate this role on textbook calculations alone. You have to look for proof that they can turn complicated interconnection rules into straightforward field directions and stand by their work when a tripping sequence goes wrong. Too many applicants draw clean single-line diagrams but struggle when asked to manage the messy shift from engineering plans to live energization.

Everything in the download, in the order you’ll use it

Level guides for Protection & Relay Engineer, Senior Protection & Relay Engineer, Lead Protection & Relay Engineer and Principal Protection Systems Engineer.

Before you post

  • 1Ready-to-use job description
  • 3Video screening prompts
  • 8Resume screening criteria

In the room

  • 15Competency interview questions
  • 13Attitude interview questions
  • 1Hands-on work simulations
  • 1Presentation prompts
  • 1Coding tests

At the debrief

  • Progression framework
  • Exceeds / Meets / Below anchors for every exercise
  • 3Interview plan with time per round

Core Evaluation

Critical questions for this role

The competency and attitude questions below are where the hiring decision is made. They run in the live interview rounds and are calibrated to the level selected above.

15 Competency Questions

1 of 15
  1. Discipline

    Protection And Relay Engineering

  2. Job requirement

    Cyber-Physical Integration & Advanced Monitoring

    Implements secure communication protocols, deploys condition monitoring sensors, and investigates cyber-physical anomalies.

  3. Expected at Senior Protection & Relay Engineer

    Independent implementation of OT security and monitoring is valuable for modernizing protection infrastructure, though enterprise architecture remains lead/principal scope.

Interview round: Hiring Manager Technical Deep Dive

Describe a time when you introduced a new monitoring or communication capability into an existing protection network.

Positive indicators

  • Prioritizes protection availability over monitoring features
  • Implements network segmentation or secure protocols
  • Tests under simulated fault/load conditions
  • Coordinates with IT/cybersecurity teams

Negative indicators

  • Deploys without security assessment
  • Overloads existing communication channels
  • Ignores impact on relay processing time

13 Attitude Questions

1 of 13

Accountability Mindset

A cognitive and behavioral disposition characterized by an internal locus of control and systemic ownership, wherein the engineer proactively assumes responsibility for decisions, outcomes, and operational performance regardless of jurisdictional boundaries. It manifests through transparent error disclosure, blameless analytical rigor, proactive risk communication, and a continuous improvement orientation that prioritizes long-term grid reliability and safety over short-term defensiveness or credit accumulation.

Interview round: Recruiter Alignment & Professional Fit

How do you maintain audit-ready decision logs and ensure traceability when managing setting updates across multiple substations over a multi-year construction phase?

Positive indicators

  • References a centralized tracking system with access controls
  • Describes regular cross-checks between logs and field installations
  • Mentions formal handoff procedures for long-term projects

Negative indicators

  • Maintains logs in disparate locations or personal drives
  • Updates settings without referencing the originating study
  • Loses track of superseded versions during multi-year phases

Supporting Evaluation

How candidates earn the selection conversation

The goal is to reduce effort for everyone by collecting more useful signals before adding more interviews. Lightweight application prompts and structured screens help your team focus interview time on the candidates most likely to succeed.

Stage 1 · Application

Filter at the door

Runs the moment a candidate hits Submit. Disqualifying answers end the application; everything else is captured for review.

Video-Response Questions

1 of 3

Application Screen: Video Response

Describe a time you had to explain complex relay coordination boundaries or fault-current thresholds to a cross-functional team that included non-specialists, such as operations managers or utility partners. How did you structure your message to ensure they understood the safety and operational implications, and what specific adjustments did you make when you sensed confusion?

Candidate experience

REC
0:42 / 2:00
1Record
2Review
3Submit

Response time

2 min

Format

Recorded video

Stage 2 · Resume Screening

Read the resume against fixed criteria

Reviewers score every application that clears the door against the same criteria. Stronger reviews advance to live interviews; weaker ones are archived without further screening.

Resume Review Criteria

8 criteria
Leads the end-to-end protection design for complete transit corridors, managing deliverables from initial study through energization.
Designs and validates complex protection logic for bidirectional charging, islanding detection, and breaker failure scenarios.
Aligns protection boundaries with upstream utility requirements, resolving coordination conflicts through technical negotiation.
Guides junior engineers through complex studies and establishes repeatable testing or documentation workflows.

Does the resume show relevant prior work experience?

Is the resume complete, well-organized, and free from formatting, spelling, and grammar mistakes?

Does the resume indicate required academic credentials, relevant certifications, or necessary training?

Does the cover letter or personal statement convey clear relevance and familiarity with the job?

Stage 3 · During Interviews

Where the hire is decided

Interview rounds use the competency and attitude questions outlined above, then add tests, work simulations, and presentations that reveal deeper evidence about how the candidate thinks and works.

Coding Test

Live Interview · Coding Test

Without AI

Implement a function that ingests fault logs, validates data integrity against a provided schema, and computes coordination margins between primary and backup relays.

Write a Python function that takes a CSV of fault events and a list of relay zone definitions. For each fault, determine if the primary and backup relay settings are coordinated (backup trip time > primary trip time + margin). Return a list of coordination gap alerts. Handle missing timestamps and invalid zone IDs gracefully.

With AI

Use AI to draft the core validation logic, but you must design the API surface and extensibility strategy for integrating multiple relay vendor formats. Implement a pluggable parser architecture and justify your design choices.

Implement validate_coordination_margins with an extensible architecture that can ingest relay logs from multiple vendors (SEL, GE, ABB) with differing CSV schemas. AI will likely suggest a monolithic parser or excessive if/else branching. You must decide on a strategy (e.g., Strategy Pattern, plugin registry, or adapter layer) and justify your choice in comments. Implement your chosen architecture, ensuring new vendor formats can be added without modifying core validation logic. Include a configuration registry for vendor-specific column mappings.

Response time

20 min

Positive indicators

  • Clear separation of parsing, validation, and coordination logic
  • Robust handling of missing zones and malformed timestamps
  • Efficient lookup structures for zone definitions
  • Implements a clear adapter or plugin pattern for vendor schemas
  • Rejects AI-generated monolithic branching in favor of decoupled components
  • Documents how new vendors integrate without touching core logic
  • Maintains consistent validation output across formats

Negative indicators

  • Nested loops causing O(n^2) performance
  • No validation of zone definitions before calculation
  • Hardcoded margin values without configuration
  • Accepts AI code with hardcoded vendor checks or massive conditional blocks
  • Fails to isolate vendor parsing from coordination calculation
  • No configuration registry or extension points

Presentation Prompt

Walk us through your approach to managing protection validation and utility interconnection for a new transit corridor segment when upstream grid conditions shift unexpectedly mid-project. Discuss how you would rebalance coordination studies, negotiate with utility engineers, and maintain project timelines without compromising fault selectivity.

Format

approach-walkthrough · 20 min · ~2 hr prep

Audience

Hiring manager, principal protection engineer, and utility interface lead

What to prepare

  • Framework for assessing grid condition changes and their impact on protection schemes
  • Outline of your utility negotiation and coordination adjustment strategy
  • Notes on risk mitigation and commissioning sequencing under shifting constraints

Deliverables

  • A structured verbal walkthrough of your approach
  • Optional 3-4 slides or diagrams illustrating coordination boundaries and decision gates

Ground rules

  • Slides are optional; a clear narrative is the primary deliverable
  • Use hypothetical scenarios or anonymized past experience; do not disclose sensitive utility agreements
  • Focus on decision-making, stakeholder alignment, and technical trade-offs

Scoring anchors

Exceeds
Demonstrates mastery of utility interface dynamics, proposes innovative yet compliant coordination adjustments, and clearly balances schedule pressure with uncompromising safety governance.
Meets
Provides a logical, stepwise approach to re-evaluating coordination, outlines clear utility communication steps, and maintains technical rigor under changing conditions.
Below
Overlooks critical interdependencies, defaults to rigid templates, or cannot articulate a viable path to maintain selectivity while meeting project milestones.

Response time

20 min

Positive indicators

  • Frames the problem by mapping the impact of grid shifts on protection zones before proposing solutions
  • Proposes a clear, phased validation plan that maintains safety margins
  • Articulates a collaborative negotiation strategy with utility partners
  • Explicitly addresses how to communicate changes to field commissioning teams

Negative indicators

  • Assumes utility conditions are static or ignores contractual/technical constraints
  • Prioritizes schedule over protection selectivity without justification
  • Fails to outline a structured handoff process for updated settings
  • Uses vague technical language without defining coordination boundaries

Work Simulation Scenario

Scenario. Upstream utility grid conditions shifted unexpectedly during a transit corridor energization phase. You own the complete protection architecture and must approve relay settings while balancing aggressive project timelines with rigorous validation. You will drive a conversation with the utility interconnection engineer and the internal project manager.

Problem to solve. Navigate the tradeoff discussion to approve a protection scheme that maintains fault selectivity, addresses the shifted grid conditions, and keeps the energization schedule viable without overcomplicating contractor execution.

Format

stakeholder-roleplay · 40 min · ~2 hr prep

Success criteria

  • Balances technical rigor with schedule constraints through clear tradeoff framing
  • Maintains fault selectivity and grid interconnection compliance under shifted conditions
  • Drives a structured decision process that aligns utility and internal stakeholders
  • Communicates setting rationale and contractor execution boundaries clearly

What to review beforehand

  • Review utility interconnection agreement fundamentals and fault ride-through requirements
  • Understand how upstream grid impedance shifts impact downstream protection coordination margins

Ground rules

  • You will lead the discussion and drive toward a decision on relay settings and validation scope
  • Stakeholders have competing priorities but will respond to structured tradeoff framing
  • You have 40 minutes to align on a path forward and document next steps

Roles in scenario

Utility Interconnection Engineer (skeptical_stakeholder, played by cross_functional)

Motivation. Protects upstream grid stability and ensures compliance with interconnection agreements; resistant to rushed approvals that compromise fault coordination.

Constraints

  • Must maintain strict backup protection margins to prevent cascading utility outages
  • Cannot approve settings without updated short-circuit studies reflecting the grid shift
  • Limited availability for extended joint testing windows

Tensions to introduce

  • Pushes back on proposed relay settings, citing reduced fault current contribution
  • Demands additional primary injection testing that delays energization by 10 days
  • Questions whether transit-side directional elements are adequately programmed

In-character guidance

  • Maintain a firm but collaborative stance on grid safety requirements
  • Concede on testing scope if the candidate proposes a credible secondary validation alternative
  • Ask pointed questions about selectivity margins under shifted grid conditions

Do not

  • Do not escalate to hostility or refuse all compromise
  • Do not volunteer alternative relay settings or bypass interconnection protocols
  • Do not agree to energization without clear validation commitments

Internal Project Manager (cross_functional_partner, played by hiring_manager)

Motivation. Needs to meet the energization milestone to avoid contractual penalties and keep fleet deployment on schedule.

Constraints

  • Energization date is tied to bus procurement delivery windows
  • Budget for extended contractor testing is exhausted
  • Requires clear sign-off documentation to proceed with commissioning

Tensions to introduce

  • Presses for immediate setting approval using existing templates
  • Questions the necessity of additional utility coordination studies
  • Pushes to reduce contractor validation scope to save time and cost

In-character guidance

  • Emphasize schedule and budget constraints without dismissing technical risks
  • Respond positively to structured risk mitigation plans that preserve milestones
  • Ask for clear contractor execution boundaries and handoff timelines

Do not

  • Do not override technical safety requirements for schedule alone
  • Do not volunteer additional budget or timeline extensions
  • Do not solve the protection coordination problem or dictate relay settings

Scoring anchors

Exceeds
Seamlessly balances grid compliance, schedule viability, and contractor execution; proposes innovative validation pathways that satisfy all parties while preserving technical integrity.
Meets
Facilitates a structured tradeoff discussion, maintains fault selectivity, and aligns stakeholders on a feasible validation and approval path.
Below
Prioritizes schedule over safety validation, fails to address utility constraints, or leaves contractor responsibilities and approval criteria ambiguous.

Response time

40 min

Positive indicators

  • Frames tradeoffs explicitly, linking grid stability, schedule risk, and validation scope
  • Proposes credible alternatives (e.g., targeted secondary testing, updated modeling) to satisfy utility concerns without derailing schedule
  • Maintains fault selectivity and directional element integrity under shifted grid conditions
  • Communicates clear contractor execution boundaries and approval criteria to internal PM

Negative indicators

  • Sides entirely with schedule pressure, compromising protection validation or selectivity margins
  • Fails to address utility concerns or proposes technically infeasible validation shortcuts
  • Communicates ambiguously, leaving contractor execution or approval responsibilities unclear
  • Escalates conflict instead of driving structured alignment toward a decision

Progression Framework

This table shows how competencies evolve across experience levels. Each cell shows competency at that level.

Protection And Relay Engineering

6 competencies

CompetencyProtection & Relay EngineerSenior Protection & Relay EngineerLead Protection & Relay EngineerPrincipal Protection Systems Engineer
Cyber-Physical Integration & Advanced Monitoring

Applies baseline cybersecurity configurations to relay networks and monitors system alarms under guidance.

Implements secure communication protocols, deploys condition monitoring sensors, and investigates cyber-physical anomalies.

Designs secure OT network architectures, establishes incident response protocols for protection systems, and leads integration projects.

Defines enterprise cyber-physical security standards, pioneers AI-driven anomaly detection for protection assets, and shapes industry OT security guidelines.

Documentation, Compliance & Lifecycle Management

Updates as-built drawings, maintains relay databases, and tracks equipment warranties per established procedures.

Manages compliance audits, develops lifecycle replacement plans, and standardizes documentation templates.

Oversees enterprise asset management strategies, coordinates with regulatory bodies, and leads obsolescence mitigation programs.

Defines long-term asset lifecycle policies, integrates predictive maintenance data, and influences industry compliance frameworks for protection assets.

Grid Interconnection & Utility Interface

Prepares interconnection application documents and assists in utility coordination meetings.

Negotiates protection boundary settings with utilities, analyzes interconnection impacts, and ensures compliance with utility standards.

Manages complex interconnection projects, leads utility stakeholder engagements, and resolves jurisdictional protection conflicts.

Shapes regional interconnection policies, develops strategic utility partnerships, and architects resilient grid-tie protection frameworks for transit networks.

Protection System Design & Analysis

Performs standard fault current calculations and assists in drafting protection one-line diagrams under senior guidance.

Independently conducts complex coordination studies, selects protection devices, and optimizes system designs for reliability.

Architects multi-zone protection strategies, resolves complex coordination conflicts, and mentors engineers on design methodologies.

Defines enterprise-wide protection design standards, evaluates novel AC/DC topologies, and drives innovation in adaptive protection architectures for transit networks.

Relay Configuration & Settings Coordination

Inputs standard relay settings per manufacturer templates and verifies basic coordination under supervision.

Develops comprehensive setting files, performs time-current curve (TCC) coordination, and troubleshoots misoperations.

Establishes site-wide setting philosophies, leads complex re-coordination projects, and validates adaptive logic implementations.

Creates advanced setting algorithms for dynamic grid conditions, standardizes enterprise relay programming protocols, and advises vendors on firmware evolution.

Testing, Commissioning & Validation

Conducts routine secondary injection tests and documents results following established test procedures.

Leads complex commissioning sequences, validates end-to-end system responses, and resolves field discrepancies.

Develops comprehensive test plans for new installations, oversees contractor testing activities, and ensures regulatory compliance.

Designs next-generation automated testing frameworks, validates novel protection algorithms in lab environments, and sets enterprise QA/QC standards.