Show code
InlineKnowledgeCheck_kc_uav_features_1 = ({
question: "A wildfire monitoring team deploys a FANET (Flying Ad-hoc Network) of 6 UAVs to track fire spread across a 20 km squared forest. Three UAVs have thermal cameras (data producers), and three act as relay nodes. After 45 minutes, the FANET loses connectivity when Relay-UAV-2 experiences GPS failure and drifts 3 km off course. What FANET characteristic would have prevented this network partition?",
options: [
"Implementing Software-Defined Networking (SDN) for centralized path recalculation",
"Using mesh topology with multi-hop routing instead of relying on fixed relay positions",
"Increasing UAV altitude to extend line-of-sight communication range",
"Deploying solar panels on relay UAVs to eliminate battery constraints"
],
correctAnswer: 1,
feedback: {
correct: "Absolutely correct! Mesh topology with multi-hop routing is the key FANET resilience feature. In mesh topology, every UAV can communicate with multiple neighbors. If Relay-UAV-2 drifts away, data can route through Relay-UAV-1 and Relay-UAV-3 instead. FANETs use position-based routing that automatically recalculates paths based on UAV coordinates. When Relay-UAV-2's GPS fails, adjacent UAVs detect its position drift and exclude it from routing tables.",
incorrect: [
"While SDN enables centralized control and dynamic path recalculation, it doesn't solve the fundamental topology problem. The SDN controller needs to communicate with all UAVs to recalculate paths. If Relay-UAV-2 was the only link between camera UAVs and the controller, the controller can't reach those UAVs.",
"Increasing altitude does extend line-of-sight communication range, but doesn't address relay node failure. Regulatory limits restrict UAV altitude to 120 m for civilian operations. Higher altitudes also have stronger winds, causing faster battery drain and position instability.",
"Solar panels would extend flight endurance, but have zero impact on GPS failure and position drift. Solar panels don't fix navigation systems. The scenario explicitly states Relay-UAV-2 drifted due to GPS failure, not battery depletion."
]
},
difficulty: "hard",
learningObjective: "Understand FANET resilience characteristics and topology advantages for network reliability"
})