Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

← Create content collections and execution environments practice sets

EX294 Create content collections and execution environments • Complete Question Bank

EX294 Create content collections and execution environments — All Questions With Answers

Complete EX294 Create content collections and execution environments question bank — all 0 questions with answers and detailed explanations.

78
Questions
Free
No signup
Certifications/EX294/Practice Test/Create content collections and execution environments/All Questions
Question 1hardmultiple choice
Read the full Ansible explanation →

An automation team is designing a content collection to distribute internal Ansible modules across the organization. The collection should be installed from a private Galaxy server. To minimize namespace conflicts and ensure discoverability, which naming convention should be used for the collection?

Question 2mediummultiple choice
Read the full Ansible explanation →

When building an execution environment with ansible-builder, a developer notices that the build process fails with an error about missing dependencies. The developer wants to ensure all required Python packages are installed in the execution environment. Which file should be used to specify additional Python packages?

Question 3easymultiple choice
Read the full Ansible explanation →

A system administrator wants to publish a custom Ansible collection to a private Automation Hub. What is the correct command to build the collection before publishing?

Question 4mediummultiple choice
Read the full Ansible explanation →

An organization uses custom Ansible plugins stored in a collection. A junior admin reports that after updating the collection to version 2.0.0, a playbook that uses a custom filter plugin fails with 'undefined filter'. What is the most likely cause?

Question 5hardmultiple choice
Read the full Ansible explanation →

A DevOps engineer is creating an execution environment for a team that needs both Ansible and the 'requests' Python library. The engineer creates an execution environment definition file (EE.yml) with the following content: --- version: 3 images: base_image: name: registry.redhat.io/ansible-automation-platform-22/ee-minimal-rhel8:latest options: package_manager_path: /usr/bin/microdnf dependencies: python: requirements.txt system: bindep.txt

What is missing from this definition to ensure the 'requests' library is installed?

Question 6hardmulti select
Read the full Ansible explanation →

Which TWO statements about Ansible content collections are correct?

Question 7mediummulti select
Read the full Ansible explanation →

Which THREE files are commonly used when building an execution environment with ansible-builder?

Question 8easymultiple choice
Read the full Ansible explanation →

A user wants to run a playbook that uses a module from 'myorg.mycollection'. The playbook is located in /home/user/projects. Which of the following is true about the collection discovery?

Exhibit

Refer to the exhibit.

$ ansible-galaxy collection list

# /home/user/.ansible/collections/ansible_collections
Collection                       Version
-------------------------------- -------
community.general                5.0.0
myorg.mycollection               1.2.3

# /usr/share/ansible/collections/ansible_collections
Collection                       Version
-------------------------------- -------
redhat.insights                  1.0.0
Question 9hardmultiple choice
Read the full Create content collections and execution environments explanation →

What is the most likely cause of the build failure?

Exhibit

Refer to the exhibit.

$ cat execution-environment.yml
---
version: 3
images:
  base_image:
    name: registry.redhat.io/ansible-automation-platform-22/ee-minimal-rhel8:latest
options:
  package_manager_path: /usr/bin/microdnf
dependencies:
  galaxy: requirements.yml
  python: requirements.txt
  system: bindep.txt

$ cat requirements.txt
ansible
requests

$ cat bindep.txt
python3-devel [platform:rpm]
gcc [platform:rpm]

$ ansible-builder build -f execution-environment.yml

Build fails with: 'Error: No matching package to install: python3-devel'.
Question 10hardmultiple choice
Read the full Ansible explanation →

You are an automation engineer at a large enterprise. The company uses Ansible Automation Platform 2.x and has a private Automation Hub server. The security team mandates that all execution environments must be built from a hardened base image that has been approved by the security team. The base image is stored in a private container registry at registry.internal.company.com/hardened-ee:latest. You need to create an execution environment that includes a custom collection 'company.tools' which is hosted on the private Automation Hub. Additionally, the execution environment must include the Python library 'cryptography' version 3.4.8. You have created the following files:

execution-environment.yml: --- version: 3 images: base_image: name: registry.internal.company.com/hardened-ee:latest options: package_manager_path: /usr/bin/microdnf dependencies: galaxy: requirements.yml python: requirements.txt

requirements.yml: --- collections: - name: company.tools source: https://automationhub.company.com/api/galaxy/content/private/

requirements.txt:

cryptography==3.4.8

When you run 'ansible-builder build -f execution-environment.yml', the build fails with an error: 'Error: Failed to resolve dependency cryptography==3.4.8'. Based on this scenario, what is the most likely cause of the failure?

Question 11easymultiple choice
Read the full Ansible explanation →

An admin wants to build an execution environment using ansible-builder. Which file is required to define the base image and additional Python dependencies?

Question 12hardmultiple choice
Read the full Ansible explanation →

A team develops an Ansible collection and wants to distribute it internally. They have a private Automation Hub. Which approach best ensures that collection dependencies from external sources are also available?

Question 13mediummulti select
Read the full Ansible explanation →

Which TWO statements are true about Ansible content collections?

Question 14hardmultiple choice
Study the full Python automation breakdown →

An admin attempts to build an execution environment using the exhibited files. The build fails with an error about incompatible Python dependency. What is the most likely cause?

Exhibit

Refer to the exhibit.

$ cat execution-environment.yml
---
version: 1
build_arg_defaults:
  EE_BASE_IMAGE: 'registry.redhat.io/ansible-automation-platform-21/ee-minimal-rhel8:latest'
dependencies:
  galaxy: requirements.yml
  python: requirements.txt

$ cat requirements.yml
---
collections:
  - name: redhat.insights
  - name: community.general

$ cat requirements.txt
ansible==2.9.27
Question 15mediummultiple choice
Read the full Ansible explanation →

Your organization uses Ansible Automation Platform 2.2 with private Automation Hub. You have developed a custom collection named 'my_company.network' that depends on 'cisco.ios' and 'vyos.vyos'. The collection is published in your private hub. You are building an execution environment using ansible-builder. The execution-environment.yml specifies 'EE_BASE_IMAGE: registry.redhat.io/ansible-automation-platform-22/ee-supported-rhel8:latest'. The dependencies section points to a requirements.yml file that includes your collection. When you run 'ansible-builder build', the build succeeds, but when running a playbook that uses modules from 'cisco.ios', you get an error 'module not found'. What is the most likely reason and the correct action to resolve it?

Question 16mediummulti select
Read the full Ansible explanation →

Which TWO statements about Ansible Execution Environments (EE) are true?

Question 17hardmultiple choice
Read the full Ansible explanation →

A user runs the commands shown in the exhibit. The execution environment (EE) builds successfully but the playbook run fails with the error. What is the most likely cause?

Network Topology
ANSIBLE_GALAXY_CLI_COLLECTION_OPTS: "pre"$ ansible-navigator run playbook.ymleei my-ee:latestpp neverce path/to/collectionsRefer to the exhibit.$ ansible-builder build -f execution-environment.ymlversion: 1build_arg_defaults:ansible_config: ansible.cfg...$ cat ansible.cfg[defaults]collections_path = ./collections$ ls collections/ansible_collections/community.general/
Question 18easymultiple choice
Read the full Ansible explanation →

You are a Red Hat Certified Engineer tasked with creating a content collection for your organization. The collection will contain roles and modules used by multiple teams. The requirements are: (1) The collection must follow the Ansible community structure. (2) It must include a module that manages network devices. (3) The collection must be versioned and published to Automation Hub. (4) You must provide a minimal working example for other developers. After initial development, you run 'ansible-galaxy collection build' and it fails with 'ERROR! Unknown file type in collection: .gitkeep'. The collection directory contains:

- galaxy.yml - plugins/modules/network_config.py - roles/network/ - tests/ - .gitkeep (in tests/)

What single action should you take to resolve the build error?

Question 19mediumdrag order
Read the full Create content collections and execution environments explanation →

Drag and drop the steps to configure SELinux to allow Apache to read a custom web directory in the correct order.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5
Question 20mediummatching
Read the full Create content collections and execution environments explanation →

Match each firewall zone to its default behavior.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Default zone, untrusted network

Private network, slightly trusted

Demilitarized zone, limited access

All traffic accepted

All incoming packets dropped

Question 21mediummultiple choice
Read the full Create content collections and execution environments explanation →

A team wants to use a certified collection from Red Hat Automation Hub but cannot access it directly due to firewall restrictions. What is the best practice?

Question 22hardmultiple choice
Read the full Ansible explanation →

Ansible Builder fails during the build of an execution environment with error: 'No matching manifest for linux/amd64 in the manifest list entries'. What is the most likely cause?

Question 23easymultiple choice
Read the full Ansible explanation →

Which file is required to define the content of an Ansible execution environment when using ansible-builder?

Question 24mediummultiple choice
Study the full Python automation breakdown →

A developer creates a collection and wants to ensure it includes a required Python library for a module. Where should this dependency be declared?

Question 25hardmultiple choice
Read the full Ansible explanation →

An organization uses a private Git repository to store Ansible content collections. They want to automate the building of execution environments that include these collections. Which approach is recommended?

Question 26easymultiple choice
Read the full Create content collections and execution environments explanation →

Which command publishes a collection to Automation Hub?

Question 27mediummultiple choice
Read the full Ansible explanation →

An execution environment fails to start because the container image is missing the ansible-runner package. Which step in the build process should have included it?

Question 28hardmultiple choice
Read the full Create content collections and execution environments explanation →

A collection version is already published on Automation Hub. The developer needs to update the collection with a new feature. What must be done to the version number before publishing again?

Question 29easymultiple choice
Read the full Create content collections and execution environments explanation →

Which key in the galaxy.yml file defines the collection's namespace?

Question 30mediummulti select
Read the full Create content collections and execution environments explanation →

Which TWO options are valid methods for including collections in an execution environment?

Question 31hardmulti select
Read the full Create content collections and execution environments explanation →

Which THREE actions are required to successfully publish a collection to Automation Hub?

Question 32easymulti select
Read the full Create content collections and execution environments explanation →

Which TWO factors should be considered when choosing a base container image for an execution environment?

Question 33mediummultiple choice
Read the full Ansible explanation →

Refer to the exhibit. A user runs ansible-runner with --container-image localhost/ee-30:latest and receives the error shown. What is the most likely cause?

Exhibit

Error: Unable to find a matching container image for execution environment 'ee-30'. 
Check that the execution environment is defined in the local container registry.
Question 34mediummultiple choice
Read the full Create content collections and execution environments explanation →

Refer to the exhibit. A user includes this in the execution-environment.yml. The build process fails because the second collection cannot be resolved. What is the most likely reason?

Exhibit

collections:
  - name: namespace.collection
    version: ">=1.0.0,<2.0.0"
  - name: other.collection
    source: https://internal.galaxy.example.com/api/
Question 35hardmultiple choice
Read the full NAT/PAT explanation →

Refer to the exhibit. A user attempts to download the collection using the download URL but the signature verification fails. What is the most likely reason?

Exhibit

{
  "results": [
    {
      "namespace": "redhat",
      "name": "insights",
      "version": "1.0.0",
      "signatures": [
        {"signature": "abc123...", "signing_key_id": "key1"},
        {"signature": "def456...", "signing_key_id": "key2"}
      ],
      "download_url": "https://console.redhat.com/api/automation-hub/content/published/collections/redhat-insights-1.0.0.tar.gz"
    }
  ]
}
Question 36hardmultiple choice
Read the full Ansible explanation →

A developer is building an execution environment using `ansible-builder` and encounters the error: 'Error: Failed to pull base image: manifest for registry.redhat.io/ansible-automation-platform/ansible-builder-rhel8:2.0.0 not found: manifest unknown.' The developer checks the registry and verifies that the image exists with a different tag. Which action should the developer take to resolve the issue?

Question 37mediummultiple choice
Read the full Create content collections and execution environments explanation →

An organization wants to share a collection internally across multiple teams while ensuring that each team can only use specific modules from the collection. Which approach best supports this requirement?

Question 38easymultiple choice
Read the full Ansible explanation →

An Ansible developer needs to use the `podman_container` module in a playbook. The module is part of the `containers.podman` collection. Which command must be run first to make the module available?

Question 39hardmultiple choice
Read the full DNS explanation →

The build fails with a DNS resolution error for `registry.redhat.io`. Which troubleshooting step is most likely to resolve the issue?

Network Topology
$ ansible-builder createfile execution-environment.ymltag my-ee:latest$ ansible-builder buildRefer to the exhibit.```Step 1/5 : FROM registry.redhat.io/ansible-automation-platform/ansible-builder-rhel8:latest
Question 40mediummultiple choice
Study the full Python automation breakdown →

An organization wants to include custom Python packages in their execution environment to support custom modules. Which method should be used to define these Python dependencies?

Question 41easymultiple choice
Read the full Create content collections and execution environments explanation →

A developer has created a collection and needs to publish it to a private Automation Hub. Which command should be used to upload the collection archive?

Question 42hardmultiple choice
Read the full Ansible explanation →

An execution environment fails to build because `pip install` fails when installing a Python package from a private repository that requires authentication. The build works when run locally by the developer. Which approach should be taken to securely provide credentials during the `ansible-builder build` process?

Question 43mediummultiple choice
Read the full Ansible explanation →

A team uses `ansible-navigator` to run playbooks with an execution environment. The playbook requires a collection that is not included in the execution environment. Which approach allows the team to use the collection without rebuilding the execution environment?

Question 44easymultiple choice
Read the full Ansible explanation →

A developer wants to create a new Ansible collection from a skeleton template. Which command should be used?

Question 45mediummulti select
Read the full Ansible explanation →

Which TWO of the following are required in a valid Ansible collection directory structure?

Question 46hardmulti select
Read the full Ansible explanation →

Which THREE of the following are valid directives that can be used in an `execution-environment.yml` file for `ansible-builder`?

Question 47easymulti select
Read the full Create content collections and execution environments explanation →

Which TWO of the following are valid methods to install a collection from a private Automation Hub?

Question 48hardmultiple choice
Read the full Create content collections and execution environments explanation →

Based on the exhibit, which collection provides modules for managing Red Hat Insights subscriptions?

Exhibit

Refer to the exhibit.

```
$ ansible-galaxy collection list

# /home/user/.ansible/collections/ansible_collections
Collection                   Version
---------------------------- -------
community.general             5.0.0
redhat.insights               1.0.0
ansible.posix                 1.3.0
```
Question 49mediummultiple choice
Read the full Create content collections and execution environments explanation →

Based on the exhibit, what is the purpose of the `galaxy` dependency entry?

Exhibit

Refer to the exhibit.

```yaml
# execution-environment.yml
---
version: 1
build_arg_defaults:
  EE_BASE_IMAGE: 'registry.redhat.io/ansible-automation-platform/ansible-builder-rhel8:latest'
dependencies:
  galaxy: requirements.yml
  python: requirements.txt
  system: bindep.txt
```
Question 50easymultiple choice
Read the full Ansible explanation →

Based on the exhibit, which file is generated by `ansible-builder` to support the build?

Network Topology
$ ansible-builder buildfile execution-environment.ymltag my-ee:latestRefer to the exhibit.```
Question 51easymultiple choice
Read the full NAT/PAT explanation →

A user wants to use a collection from Automation Hub. Which command downloads and installs the collection to the default collections path?

Question 52mediummultiple choice
Read the full Ansible explanation →

An organization uses a private Automation Hub. A user has configured the server in ansible.cfg. Which command installs a collection from this server?

Question 53hardmultiple choice
Read the full Ansible explanation →

An execution environment is built using ansible-builder. The definition file includes a base image from registry.redhat.io. After building, the container runs but ansible-navigator can't find the EE. What is the most likely cause?

Question 54easymultiple choice
Read the full Ansible explanation →

Which directory is the default location for installed Ansible collections on a control node for a regular user?

Question 55mediummultiple choice
Read the full Create content collections and execution environments explanation →

A developer wants to create a new collection named 'myutils' under namespace 'myorg'. Which command initializes the collection structure?

Question 56mediummultiple choice
Read the full Create content collections and execution environments explanation →

An organization's execution environment must include a custom RPM that is not in the default base image. How should this be added in the execution-environment.yml?

Question 57easymultiple choice
Read the full Ansible explanation →

Which command runs a playbook using an execution environment named 'my-ee'?

Question 58easymultiple choice
Read the full Create content collections and execution environments explanation →

A user wants to build an execution environment from a definition file. Which command is used?

Question 59hardmultiple choice
Study the full Python automation breakdown →

During a collection development, a developer wants to include a Python dependency that is not available in the base image of the execution environment. Where should this dependency be declared?

Question 60easymulti select
Read the full Create content collections and execution environments explanation →

Which TWO actions are required to use a private Automation Hub to share collections?

Question 61mediummulti select
Read the full Create content collections and execution environments explanation →

Which TWO statements about execution environments are true?

Question 62hardmulti select
Read the full Create content collections and execution environments explanation →

Which THREE components are typically included in an execution environment?

Question 63mediummultiple choice
Read the full Ansible explanation →

Refer to the exhibit. An administrator has configured ansible.cfg as shown. Which command will successfully install the 'community.general' collection from this server?

Exhibit

[galaxy]
server_list = my_automation_hub

[galaxy_server.my_automation_hub]
url=https://privatehub.example.com/api/automation-hub/
auth_url=https://privatehub.example.com/auth/realms/automation-hub/protocol/openid-connect/token
token=my_token_value
Question 64hardmultiple choice
Read the full Ansible explanation →

Refer to the exhibit. A developer builds an execution environment using this execution-environment.yml. After building, the container starts but ansible-navigator cannot connect to the container because the required SSH packages are missing. Which file most likely needs to be updated?

Exhibit

version: 3
build_arg_defaults:
  EE_BASE_IMAGE: registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel8:latest
dependencies:
  galaxy: requirements.yml
  python: requirements.txt
  system: bindep.txt
Question 65hardmultiple choice
Read the full Ansible explanation →

An organization uses ansible-builder to create an execution environment (EE) for network automation. The EE includes a custom collection 'acme.network' that requires the 'netaddr' Python library. The ansible-builder definition file (execution-environment.yml) lists 'netaddr' in the requirements.txt under dependencies.python. After building the EE and pushing it to the local registry, a user runs ansible-navigator with the EE and executes a playbook that uses a module from 'acme.network'. The playbook fails with an error that 'netaddr' is not installed. The user checks the running container and confirms that 'netaddr' is installed via pip list. What is the most likely cause?

Question 66easymultiple choice
Read the full Ansible explanation →

A system administrator wants to build an Ansible execution environment using ansible-builder. Which file format is required to define the base image, dependencies, and additional Python packages for the build?

Question 67mediummultiple choice
Read the full Create content collections and execution environments explanation →

An organization uses a private automation hub to distribute collections. A developer has created a new collection and needs to ensure it is available in the hub for others. Which command should the developer use to upload the collection to the private automation hub?

Question 68hardmultiple choice
Read the full Ansible explanation →

A team is setting up an Ansible execution environment that requires a specific version of a Python library that is not available in the default base image. The team wants to minimize the size of the final container. Which approach should they take in the execution-environment.yml file?

Question 69mediummulti select
Read the full Ansible explanation →

An Ansible content creator wants to ensure that a collection is properly structured and meets Red Hat's best practices. Which TWO of the following are required files in a valid Ansible collection structure?

Question 70hardmulti select
Read the full Create content collections and execution environments explanation →

A system administrator is troubleshooting an execution environment that fails to build. The error indicates that a required collection cannot be found. Which THREE of the following actions could resolve the issue?

Question 71easymultiple choice
Read the full Ansible explanation →

You are responsible for maintaining a team of 10 Ansible developers. They all rely on a shared collection stored in a private Git repository. Recently, multiple developers reported that their playbooks are failing because they have different versions of the collection installed locally. You decide to standardize the environment by creating a consistent Ansible execution environment. You have a base image of Red Hat Enterprise Linux 8.6, and you need to include the collection from the Git repository. Additionally, the execution environment should be rebuilt automatically whenever the collection is updated. Which approach should you take?

Question 72mediummultiple choice
Read the full Ansible explanation →

Your team maintains a collection that includes custom modules and plugins. You have been tasked with creating a content collection that adheres to the Red Hat Ansible Content Collection requirements. You have created the directory structure and written the collection code. Now you need to package the collection for distribution to your internal automation hub. You run 'ansible-galaxy collection build' and it completes successfully, generating a tarball. However, when you try to publish it to your private automation hub using 'ansible-galaxy collection publish', you get an authentication error. You have verified that your automation hub server URL and API token are correct. What is the most likely cause of the error?

Question 73hardmultiple choice
Read the full Create content collections and execution environments explanation →

You are building an execution environment for a large enterprise that requires several collections from both Red Hat Automation Hub and an internal GitLab repository. Your execution-environment.yml file includes both sources. However, the build process consistently fails during the 'adding collections' step with an error indicating that a specific collection from the internal Git repository cannot be found. You have confirmed that the Git repository URL and branch are correct, and that the repository is accessible from the build host. The collection's galaxy.yml file exists and is valid. What is the most likely reason for the failure?

Question 74mediummultiple choice
Read the full Ansible explanation →

Your organization is migrating from manually maintained control nodes to using execution environments. You have created an execution environment that includes all necessary collections and Python dependencies. You want to ensure that developers use this execution environment when running playbooks. You have configured ansible-navigator on their workstations. However, some developers report that when they run a playbook, it uses the local installation of Ansible instead of the execution environment. What should you check first?

Question 75hardmultiple choice
Study the full Python automation breakdown →

Your security team requires that all containers used in production must be scanned for vulnerabilities and must not contain any unnecessary packages to reduce attack surface. You are building an execution environment based on the 'ee-minimal-rhel8' image from Red Hat. You need to add a custom Python library named 'my_lib' that is available on a private PyPI server. You also need to install a collection from a private Git repository. The execution environment must be as small as possible. Which approach to building the execution environment satisfies the security and size requirements?

Question 76mediummultiple choice
Read the full Ansible explanation →

Refer to the exhibit. An Ansible user runs `ansible-navigator` from the `/home/user/project` directory. The execution environment image is not present locally. What will occur?

Exhibit

---
ansible-navigator:
  execution-environment:
    image: registry.example.com/ansible-ee:latest
    enabled: true
    pull:
      policy: missing
    volume-mounts:
      - src: /home/user/project
        dest: /project
    container-engine: podman
Question 77hardmulti select
Read the full Ansible explanation →

An administrator needs to create a custom execution environment that includes a specific Ansible collection and a Python package. Which two steps are required to build and use the execution environment? (Choose two.)

Question 78easymultiple choice
Read the full Ansible explanation →

A DevOps team maintains an Ansible environment using execution environments. They have been using a local execution environment image named 'custom-ee:latest' built with ansible-builder. Recently, they updated the requirements.yml file to include a new collection from Automation Hub. They rebuilt the execution environment using ansible-builder and pushed it to their private registry as 'registry.internal/custom-ee:1.2'. However, when running ansible-navigator on a control node, it still uses the old local image and does not pull the updated one. The ansible-navigator configuration file (ansible-navigator.yml) specifies:

execution-environment: image: registry.internal/custom-ee:1.2

enabled: true

pull: policy: tag

The control node has no prior local image with that tag. What is the most likely reason the new image is not being used?

Practice tests

Scored 10-question sessions with instant feedback and explanations.

EX294 Practice Test 1 — 10 Questions→EX294 Practice Test 2 — 10 Questions→EX294 Practice Test 3 — 10 Questions→EX294 Practice Test 4 — 10 Questions→EX294 Practice Test 5 — 10 Questions→EX294 Practice Exam 1 — 20 Questions→EX294 Practice Exam 2 — 20 Questions→EX294 Practice Exam 3 — 20 Questions→EX294 Practice Exam 4 — 20 Questions→Free EX294 Practice Test 1 — 30 Questions→Free EX294 Practice Test 2 — 30 Questions→Free EX294 Practice Test 3 — 30 Questions→EX294 Practice Questions 1 — 50 Questions→EX294 Practice Questions 2 — 50 Questions→EX294 Exam Simulation 1 — 100 Questions→

Practice by domain

Each domain maps to a weighted exam section. Focus on the domain where you are weakest.

Deploy Ansible Automation PlatformManage inventories and credentialsManage task execution and rolesCoordinate rolling updatesTransform data with filters and pluginsCreate content collections and execution environmentsImplement advanced Ansible automationManage automation security and operations

Practice by scenario

Filter questions by type — troubleshooting, exhibit, drag-and-drop, PBQ, ACLs, OSPF, and more.

Browse scenarios→

Continue studying

All Create content collections and execution environments setsAll Create content collections and execution environments questionsEX294 Practice Hub