0
0
EV Technologyknowledge~10 mins

Sensor suite (LiDAR, radar, camera) in EV Technology - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to identify the sensor that uses laser light to measure distance.

EV Technology
sensor_type = "[1]"  # This sensor uses laser light pulses to create 3D maps.
Drag options to blanks, or click blank then click option'
ALiDAR
BRadar
CCamera
DUltrasound
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing radar with LiDAR because both measure distance.
Choosing camera as it captures images but does not measure distance with lasers.
2fill in blank
medium

Complete the code to select the sensor that uses radio waves to detect objects and their speed.

EV Technology
sensor_type = "[1]"  # This sensor sends radio waves and measures their reflections.
Drag options to blanks, or click blank then click option'
AInfrared
BLiDAR
CCamera
DRadar
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing LiDAR which uses laser light, not radio waves.
Selecting camera which captures images but does not use radio waves.
3fill in blank
hard

Fix the error in the code to correctly identify the sensor that captures visual images.

EV Technology
sensor_type = "[1]"  # This sensor captures images similar to human eyes.
Drag options to blanks, or click blank then click option'
ARadar
BCamera
CLiDAR
DSonar
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing camera with LiDAR or radar which do not capture images.
Choosing sonar which uses sound waves, not images.
4fill in blank
hard

Fill both blanks to complete the description of sensor functions.

EV Technology
The [1] sensor uses [2] waves to detect object speed and distance.
Drag options to blanks, or click blank then click option'
ARadar
BLaser
CRadio
DCamera
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up laser and radio waves.
Choosing camera which does not use waves to detect speed.
5fill in blank
hard

Fill all three blanks to complete the dictionary comprehension describing sensor data processing.

EV Technology
sensor_data = { [1]: [2] for [3] in sensors if sensors[[3]] != None }
Drag options to blanks, or click blank then click option'
Asensor.upper()
Bsensors[sensor]
Csensor
Ddata
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'data' instead of the loop variable for keys or values.
Not converting sensor names to uppercase for keys.