Azure IoT Hub is a cloud service designed to:
Think about what connects devices to the cloud securely.
Azure IoT Hub acts as a central message hub that securely connects IoT devices to the cloud, enabling reliable communication.
What is the output of this command?
az iot hub list --query "[].name" --output json
The command lists all IoT hubs in your subscription by name.
The command returns a JSON array of IoT hub names available in the current Azure subscription.
Which option shows the correct format of a device connection string for Azure IoT Hub?
Look for exact key names used in Azure IoT Hub connection strings.
The correct keys are HostName, DeviceId, and SharedAccessKey exactly as shown in option D.
A device fails to connect to Azure IoT Hub with error 'Unauthorized'. What is the most likely cause?
Unauthorized errors usually relate to credentials or permissions.
Unauthorized errors happen when the device uses wrong or expired credentials to connect to IoT Hub.
Arrange these steps in the correct order to set up Azure IoT Hub and connect a device:
Think about what must exist before you can register devices and send data.
You must first create the IoT Hub, then register devices to get credentials, then configure the device app, and finally send data.