Courseiva
Container Operations And LifecyclehardMultiple ChoiceObjective-mapped

EX188 Container Operations And Lifecycle Practice Question

An administrator needs to view the processes running inside a specific container named worker_node, along with custom ps options like -ef to see full command arguments. Which command accomplishes this?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

podman top worker_node -ef

podman top displays the running processes of a container and accepts ps-compatible argument flags.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • podman ps --processes worker_node

    Why it's wrong here

    podman ps does not take a --processes flag.

  • podman exec worker_node ps -ef

    Why it's wrong here

    While podman exec can run ps inside the container, podman top is the native tool designed specifically for this purpose without needing shell execution inside the container.

  • podman inspect --processes worker_node

    Why it's wrong here

    podman inspect does not provide a process list via a flag.

  • podman top worker_node -ef

    Why this is correct

    podman top accepts standard ps options after the container name to customize output.

About these practice questions

Courseiva writes every EX188 question from scratch — 296 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written and reviewed by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

Last reviewed August 2026 · checked against the official Red Hat exam blueprint

This EX188 practice question is part of Courseiva's free Red Hat certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the EX188 exam.