Refer to the exhibit. 
DRAG DROP Drag and Drop the Bash commands from the left onto the correct actions on the right.
Looks right based on the CLI basics. In practice labs and official docs, ls -l is for details and ls -t sorts by mod date. So mapping would be: cd~ to home, cd/ to root, mkdir for make directory, cp -r for directory copy.
Refer to the exhibit. 
EXPOSE 5000 tells Docker that the container will listen on port 5000. The other options aren't valid Dockerfile instructions, so not really applicable. Pretty sure it's C but open to corrections if I'm missing something.EXPOSE 5000 is the right Dockerfile directive to tell Docker the container listens on that port. A and D aren't valid syntax. Let me know if you see it different.Fill in the blanks to complete the statement. Cisco DNA provide the capability to send an HTTP _______________ request to the API endpoint https://DNA-c_API_ADDRESS/api/vi/network-device/ and receive the network __________ list in __________ format.
docker run after tagging the image. The build command already happened before, I think. Let me know if I'm missing something here.DRAG DROP 
Pretty sure a lot of people get tripped up by "copies new files or directories" since COPY isn't used here. Mapping should be: FROM ubuntu - Initializes a new build stage, MAINTAINER - document author, RUN apt-get update... - command to execute. Anyone disagree? If so, which do you swap?
Refer to the exhibit. 

