A Linux administrator uses Podman for container management. Which TWO commands display a list of currently running containers?
Correct: `podman container ls` is an alias for `podman ps`.
Why this answer
Option D is correct because `podman container ls` is the explicit Podman command to list running containers, equivalent to `podman ps`. Option E is also correct because `podman ps` is the standard shorthand for listing running containers in Podman, mirroring Docker's `docker ps` syntax. Both commands display the same output of currently active containers.
Exam trap
The trap here is that candidates may assume `docker ps` works identically in Podman due to CLI compatibility, but the exam expects Podman-native commands, and they may overlook that `podman container ls` is the explicit form while `podman ps` is the shorthand.