ExamQuestions.com

Register
Login
Microsoft Azure IoT Developer (AZ-220) Exam Questions

Microsoft

Microsoft Azure IoT Developer (AZ-220)

70 / 125

Question 70:

You have 100 edge devices registered in your environment monitoring IoT infrastructure. After several weeks of operation you experience that 20 of them installed at distant places where the network bandwidth and stability results in communication problems and data loss. In order to improve reliability, you decide to reconfigure the devices for offline operation to cope with temporary network outages and you add this code to the edgeAgent and the edgeHub sections of your deployment manifest: 
<pre class="brush:java;">"createOptions": {
"HostConfig": {
"PortBindings": {
"8080/tcp": [
{
"HostPort": "80"
}
]
}
}
}
</pre>
Does it help you to achieve your goal?

Answer options:

A.Yes
B.No