Get our Bestselling Ethical Hacker Course V13 for Only $12.99

For a limited time, check out some of our most popular courses for free on Udemy.  View Free Courses.

HashiCorp Terraform Associate TF-002 Free Practice Test

Share This Free Test

Welcome to this free practice test. It’s designed to assess your current knowledge and reinforce your learning. Each time you start the test, you’ll see a new set of questions—feel free to retake it as often as you need to build confidence. If you miss a question, don’t worry; you’ll have a chance to revisit and answer it at the end.

Your test is loading

If Terraform keeps showing up in your day-to-day work, the HashiCorp Certified: Terraform Associate exam is one of the fastest ways to prove you understand infrastructure as code beyond the basics. The TF-002 exam is designed for people who already know their way around cloud tools, the command line, and Git, but need a structured way to validate practical Terraform knowledge.

This guide breaks down the exam in plain language. You’ll get the official exam details, the major topic areas, how to study, how to use a free practice test without wasting time, and what to focus on if you want to pass on the first attempt.

The goal is not just to memorize commands. The real value is knowing how Terraform works in production: how it handles desired state, state files, modules, workspaces, and collaboration across teams.

Terraform is not just a tool for provisioning resources. It is a workflow for creating repeatable, version-controlled infrastructure that can be reviewed, tested, and managed like application code.

Exam Overview and Key Details

The official certification is HashiCorp Certified: Terraform Associate. The current exam code is TF-002, and that matters more than most people realize. If you search for practice questions, study notes, or exam policies without the code, you may find outdated material tied to older versions.

According to HashiCorp’s official certification page, the exam cost is USD 70, though regional pricing may vary. Delivery is available through Pearson VUE testing centers and also through online proctoring. The exam uses 57 questions, lasts 60 minutes, and requires a passing score of 70%. Those numbers shape your study strategy. You do not have time to overthink every question.

For official exam details, always verify against HashiCorp’s current certification information and Pearson VUE scheduling pages. That is the safest way to avoid stale prep material and incorrect registration details. See the official certification page at HashiCorp Certification and exam delivery details via Pearson VUE.

What the exam measures

  • Terraform fundamentals and infrastructure as code concepts
  • CLI workflow from init to apply
  • State management and collaboration basics
  • Terraform Cloud and Enterprise concepts
  • Module design and reuse

Key Takeaway

The TF-002 exam is short, timed, and practical. It rewards people who understand Terraform workflows, not people who only memorized syntax.

Who Should Take the TF-002 Exam

This certification makes the most sense for beginners to intermediate users who already work with cloud platforms, DevOps pipelines, or platform engineering tasks. If you are already using AWS, Microsoft Azure, Google Cloud, or private cloud infrastructure and want a vendor-neutral way to manage it as code, this exam is a strong fit.

The Terraform Associate exam is especially useful for junior DevOps engineers, cloud engineers, systems administrators, platform teams, and students entering infrastructure roles. You do not need to be a Terraform expert to attempt it, but you should understand core IT concepts: files, variables, environments, version control, and basic networking. HashiCorp’s official docs are a good baseline for what the tool actually does in practice: HashiCorp Terraform Docs.

Career-wise, this certification helps in two ways. First, it validates that you can work with infrastructure as code in a real environment. Second, it gives hiring managers a simple signal that you understand repeatable provisioning, change control, and infrastructure lifecycle management. Those are useful skills whether you are building dev environments, standing up cloud services, or helping standardize deployments across a team.

Good candidates for this exam

  • People who already use the command line regularly
  • Anyone comfortable with Git and pull-request workflows
  • Cloud practitioners who need to automate repeatable infrastructure
  • Teams moving away from manual configuration and one-off scripts
  • Students or career changers building an entry point into DevOps

For labor market context, the U.S. Bureau of Labor Statistics continues to report strong demand for system and cloud-adjacent technical roles across IT operations and software support categories. That does not map one-to-one to Terraform, but it explains why infrastructure automation skills continue to matter in hiring decisions. See BLS Occupational Outlook Handbook.

Understanding the Exam Structure

The exam uses multiple-choice and multiple-response questions. Multiple-response items are where a lot of candidates get tripped up. If a question asks for two correct answers and you choose one right answer plus one wrong answer, you do not get partial credit. That means you need precision, not just familiarity.

With 57 questions in 60 minutes, your average pace is barely over one minute per question. Some questions will take less than 30 seconds. Others will take longer. Your job is to move quickly through the easy items, then come back to the harder ones if time allows.

Read carefully for words like best, most appropriate, first, and not. Those terms change the answer. Many missed questions are not caused by lack of knowledge. They come from reading too fast and answering the wrong version of the question.

A practical pacing method

  1. Answer anything you know immediately.
  2. Flag questions that require deeper thought.
  3. Do not waste five minutes on a single scenario question.
  4. Return to flagged questions after the first pass.
  5. Reserve the final few minutes to check unanswered items.

Pro Tip

If a question contains a Terraform snippet, read the code before the prompt and then read the prompt again. The order matters. Small details in variables, providers, and resource names often change the correct answer.

Infrastructure as Code Concepts

Infrastructure as code (IaC) means defining infrastructure through files instead of manual clicks in a console. In Terraform, that usually means writing declarative configuration that describes the desired end state. Terraform then figures out how to reach that state by creating, changing, or deleting resources.

This is different from imperative scripting. A shell script might say, “create this, then do that, then check this condition.” Terraform says, “this is the target configuration.” That distinction matters because declarative infrastructure is easier to review, repeat, and audit. It also reduces the chance that two engineers create slightly different environments by hand.

A simple real-world example: a team needs dev, test, and production environments with the same VPC layout, subnet structure, and load balancer behavior. Without IaC, someone rebuilds each environment manually and inevitably misses something. With Terraform, the same code can be reused with different variables, which improves consistency and speeds up delivery.

Why IaC matters in operations

  • Consistency across environments
  • Auditability through version control and pull requests
  • Reduced human error from manual console work
  • Scalability for repeatable deployment patterns
  • Faster recovery when infrastructure must be recreated

If you want a broader standards-based view of infrastructure control and configuration management, NIST guidance is worth reviewing. NIST emphasizes the value of secure, repeatable system configuration practices in frameworks such as NIST SP 800-53 and the NIST Cybersecurity Framework. Terraform fits well into that mindset because it makes infrastructure changes explicit and reviewable.

Using the Terraform CLI

The Terraform CLI is the heart of the exam. If you understand the CLI workflow, you will answer a large portion of the exam correctly. This section carries major weight because Terraform is built around a predictable sequence: initialize, validate, plan, and apply.

terraform init prepares a working directory, installs providers, and sets up modules. terraform validate checks whether the configuration is syntactically valid. terraform plan shows what Terraform intends to change. terraform apply makes the changes in the target environment.

That order is worth remembering because it mirrors how teams work in production. Engineers typically initialize a workspace, inspect or modify configuration, run a plan, review the output, and only then apply. Skipping that sequence is how mistakes happen.

Common CLI commands and what they do

  • terraform init — initialize a new or existing working directory
  • terraform plan — preview changes before execution
  • terraform apply — execute the planned changes
  • terraform destroy — remove managed infrastructure
  • terraform fmt — format configuration files consistently
  • terraform validate — verify configuration correctness
  • terraform state — inspect or manipulate state data

In day-to-day work, the CLI is also useful for troubleshooting. If a resource looks wrong, state inspection can help determine whether Terraform still believes it exists. If a provider version changes unexpectedly, the lock file and initialization output can show what happened. This is the practical side of the exam: knowing how the tool behaves when things are not clean.

For official command behavior and examples, use the HashiCorp documentation at HashiCorp Terraform CLI Docs.

Managing Terraform State

Terraform state is the data Terraform uses to map real infrastructure to your configuration. It records resource IDs, metadata, dependencies, and tracked attributes. Without state, Terraform would not know what it already created or how to compare current infrastructure to desired configuration.

This is one of the most important exam topics because state is where collaboration, drift, and change tracking all meet. A local state file can work for solo practice or small experiments. In a team environment, however, remote state is usually better because it gives everyone a shared source of truth and reduces the risk of conflicting changes.

State locking matters too. If two people try to apply changes at the same time, locking helps prevent corruption and race conditions. That is not just an exam concept; it is a real operational safeguard. Without it, concurrent updates can overwrite each other and create hard-to-debug problems.

Local state versus remote state

Local state Simple for individual use, but risky for shared teams because the file can be lost, copied incorrectly, or edited outside the normal workflow.
Remote state Better for collaboration because it centralizes state, supports locking, and makes team workflows more predictable.

Common state problems include stale resources, missing resources, and accidental manual changes made outside Terraform. When that happens, the configuration may no longer match reality. The fix is usually to inspect the state, refresh the view of infrastructure, or reconcile the difference carefully instead of forcing changes blindly.

For organizations that handle sensitive data or regulated workloads, state management should also align with broader security and governance practices. HashiCorp’s documentation plus vendor and framework guidance from sources such as HashiCorp Terraform and NIST guidance are useful reference points when evaluating how infrastructure data should be controlled.

Configuring Terraform Cloud and Enterprise

Terraform Cloud and Terraform Enterprise are built for teams that need centralized runs, shared state, and policy control. They take Terraform beyond the local laptop workflow and into a managed collaboration model. That is why the exam includes them: they represent the organizational side of infrastructure as code.

In a small team, local runs may be enough. In a larger environment, someone needs control over workspaces, approvals, remote execution, and access boundaries. Terraform Cloud and Enterprise help solve that by offering a place to manage runs, organize workspaces, and enforce consistency across users.

Workspaces are especially important because they let teams separate environments, services, or projects while keeping them under the same operational model. For example, you might have distinct workspaces for development, staging, and production. That makes it easier to control change and reduce accidental cross-environment impact.

When cloud-based management makes sense

  • Multiple engineers need access to the same infrastructure state
  • Approval workflows are required before changes go live
  • Policy enforcement must be consistent
  • Remote runs are preferred over local execution
  • Teams need centralized visibility into changes and history

HashiCorp’s official Terraform Cloud and Enterprise documentation is the right place to study how these features are actually implemented: Terraform Cloud Docs. If you have used tools like CI/CD pipelines, the concept will feel familiar: push code, validate centrally, review the outcome, then promote the change.

Good Terraform governance is not about slowing teams down. It is about making infrastructure changes traceable enough that teams can move quickly without guessing what changed.

Implementing and Maintaining Terraform Modules

Terraform modules are reusable packages of Terraform configuration. A module can be as small as a single resource pattern or as broad as a multi-tier architecture. The main benefit is that modules reduce duplication and help teams standardize common infrastructure patterns.

The root module is the configuration you run directly. Child modules are reusable building blocks called by that root module. That distinction matters because many candidates confuse module structure with a general folder layout. The exam expects you to understand how Terraform composes infrastructure through modules, not just how files are organized on disk.

Well-designed modules improve consistency. If every application team needs a standard network, a reusable compute layout, or a pre-approved database pattern, modules let you encode those designs once and use them many times. That also makes updates easier. If you fix a bug in the module, every project using it can benefit from the change.

Good module habits

  • Use clear, predictable input variables
  • Expose only useful outputs
  • Version modules deliberately
  • Avoid hardcoding environment-specific values
  • Keep the interface small and understandable

Think in terms of common use cases. Networking modules often handle VPCs, subnets, routing, and security group patterns. Compute modules might standardize virtual machines, autoscaling groups, or container-related resources. Environment modules can combine multiple pieces into a deployable pattern for dev or prod.

HashiCorp’s module documentation is the best source for studying the official behavior and recommended patterns: Terraform Modules Documentation.

How to Prepare for the TF-002 Exam

Start with the official exam objectives and Terraform documentation. That sounds obvious, but many people begin with random practice questions and never build a stable foundation. The exam is easier when you know what Terraform is actually doing behind the scenes.

A strong prep plan should mix reading with hands-on practice. Install Terraform locally, create a few simple projects, and work through the full lifecycle: init, plan, apply, and destroy. Then move into more realistic scenarios such as variables, outputs, modules, and state handling. The point is to build muscle memory so the CLI workflows feel natural under time pressure.

Use notes or flashcards to reinforce terms that Terraform users must know cold: desired state, providers, resources, state locking, workspaces, and modules. These are the concepts that tend to blur together if you only read about them once.

A simple study plan

  1. Read the official exam objectives.
  2. Review HashiCorp documentation for CLI, state, modules, and Terraform Cloud.
  3. Build a small lab with variables, outputs, and a module.
  4. Practice reading plan output carefully.
  5. Take a timed practice test.
  6. Review every missed question and retest weak areas.

Note

Hands-on repetition matters more than passive reading. If you can explain why a plan shows a change, you are much closer to passing than someone who only memorized command names.

Free Practice Test Strategy

A free practice test is useful only if you treat it like a diagnostic tool. It should show you what you know, what you misunderstand, and where you are too slow. If you just chase scores without reviewing mistakes, you miss most of the value.

Take at least one practice test under timed conditions. That means one hour, no distractions, and no looking up answers while you work. The point is to simulate the pressure of the real exam. Time pressure changes how people read questions, especially when they are faced with multiple-response items or Terraform code blocks.

After the test, review every incorrect answer. Do not stop at “the right answer is B.” Ask why B is right, why the others are wrong, and which concept the question is really testing. This is how you turn a practice exam into a learning tool.

How to use practice tests effectively

  • Take the test before you feel fully ready so you can identify gaps early
  • Track which domains you miss most often
  • Review terminology that appears repeatedly in wrong answers
  • Retake the test only after you have studied the weak areas
  • Combine practice questions with real labs, not just reading

Practice questions help build pattern recognition. You begin to see how Terraform questions are framed and what details are usually relevant. But they should never become your only study method. The exam rewards understanding, and understanding comes from using the tool.

Common Mistakes to Avoid

The biggest mistake is memorizing commands without understanding the workflow. Knowing that terraform plan exists is not enough. You need to know what the plan is comparing, what state contributes to that comparison, and why the output can change when variables or providers change.

Another common gap is ignoring state management. That is risky because state is central to Terraform’s behavior. If you do not understand why state matters, you will struggle with collaboration questions, drift scenarios, and troubleshooting prompts.

Module best practices are another weak spot. Candidates often know that modules are reusable, but they do not understand inputs, outputs, versioning, or the difference between root and child modules. That becomes a problem when questions ask how to keep infrastructure consistent across environments.

What causes avoidable misses

  • Reading too fast and missing keywords
  • Assuming partial knowledge is enough on multiple-response items
  • Depending on a single study source
  • Skipping Terraform Cloud concepts because they seem less important
  • Practicing only with flashcards and not with real Terraform code

For a broader view of why configuration discipline matters in real environments, NIST and CIS guidance are both relevant. Even if the exam does not ask about security frameworks directly, the same operational discipline shows up in safer infrastructure change management. See CIS Benchmarks for a benchmark-driven example of standardized configuration thinking.

Exam-Day Tips

On exam day, your biggest advantage is control. Control your pace, control your reading, and control your environment. Start by answering the questions you know. That builds momentum and preserves time for harder prompts later.

Do not get stuck chasing one tricky scenario. If you cannot eliminate options quickly, flag the question and move on. The exam is short enough that one bad time sink can hurt your score more than one wrong answer.

Before submitting, review every unanswered question. It is surprising how often test-takers leave points on the table simply because they ran out of time without checking the final screen.

Online testing and test center checklist

  • Confirm your appointment time and ID requirements in advance
  • Test your webcam, microphone, and internet connection if testing online
  • Clear your desk and room of prohibited items
  • Have water, but only if your testing rules allow it
  • Arrive early if you are testing at a Pearson VUE center

Staying calm matters more than people admit. A well-prepared candidate can lose confidence by overthinking easy questions. Trust your preparation, read carefully, and stay focused on what Terraform is actually doing.

Warning

Do not assume the exam will reward “best guess” logic if you have not studied state, modules, and Terraform Cloud. Those topics are a large part of the score and often separate passing candidates from almost-ready candidates.

Conclusion

The HashiCorp Certified: Terraform Associate TF-002 exam is a practical certification for people who want to prove real infrastructure as code knowledge. It is not a theory-only test. It checks whether you understand Terraform workflows, state, modules, the CLI, and the collaboration features that show up in real environments.

If you want to pass, focus your time where the exam puts the most weight: Terraform CLI usage, state management, Terraform Cloud and Enterprise concepts, and module design. Then use a free practice test as a diagnostic tool, not a shortcut. Practice tests show you what to fix. Hands-on labs teach you how Terraform actually behaves.

For busy IT professionals, the best path is simple: study the official docs, build small projects, retake weak areas, and practice under time pressure. That combination makes the exam much more manageable and builds skills that are useful long after the certification is done.

Next step: take a timed practice test, review every miss, and then spend one more round in the lab before booking the exam.

All certification names and trademarks mentioned in this article are the property of their respective trademark holders. HashiCorp is a registered trademark of HashiCorp, Inc. This article is intended for educational purposes and does not imply endorsement by or affiliation with any certification body.

NOTICE: All practice tests offered by Vision Training Systems are intended solely for educational purposes. All questions and answers are generated by AI and may occasionally be incorrect; Vision Training Systems is not responsible for any errors or omissions. Successfully completing these practice tests does not guarantee you will pass any official certification exam administered by any governing body. Verify all exam code, exam availability  and exam pricing information directly with the applicable certifiying body.Please report any inaccuracies or omissions to customerservice@visiontrainingsystems.com and we will review and correct them at our discretion.

All names, trademarks, service marks, and copyrighted material mentioned herein are the property of their respective governing bodies and organizations. Any reference is for informational purposes only and does not imply endorsement or affiliation.

Get the best prices on our single courses on Udemy.  Explore our discounted courses today!

Frequently Asked Questions

What is the HashiCorp Terraform Associate TF-002 exam designed to validate?

The HashiCorp Certified: Terraform Associate exam is designed to validate practical, entry-level skills with Terraform as an infrastructure as code tool. It focuses on whether you can understand core Terraform concepts, read and work with configuration files, and use Terraform in a real workflow rather than simply memorizing definitions. That includes knowing how Terraform interacts with providers, state, variables, modules, resources, outputs, and the overall plan/apply lifecycle.

For many candidates, the exam acts as a structured checkpoint for proving that they can use Terraform in day-to-day cloud and DevOps work. It is especially useful if you already work with cloud platforms, version control, and command-line tools, because the exam expects you to understand how Terraform fits into a broader delivery pipeline. The goal is not to test deep platform specialization, but to confirm that you can manage infrastructure code in a consistent, repeatable way.

It is also important to remember that the exam emphasizes practical comprehension over rote memorization. You may see questions about which Terraform commands are appropriate in a given scenario, how state works, or how modules help with reuse and organization. Strong preparation usually means learning not just what Terraform features are called, but why and when you would use them in real infrastructure workflows.

Which Terraform topics should I study most for TF-002?

The highest-value topics for Terraform Associate TF-002 preparation are usually the fundamentals that show up across everyday Terraform usage. These include the Terraform workflow, providers, resources, data sources, state management, variables, outputs, modules, and the difference between plan, apply, and destroy operations. You should also understand how configuration is written in HashiCorp Configuration Language, or HCL, and how Terraform evaluates expressions and dependencies.

Another major area is state management, because many candidates underestimate how important it is to understand where Terraform stores information about deployed infrastructure and how that affects updates. You should know why state matters, what can happen if state is lost or out of sync, and how Terraform uses state to compare real infrastructure with desired configuration. Concepts like locking, drift, and remote backends are often worth reviewing closely because they connect directly to safe collaboration in teams.

It is also wise to study module structure, versioning, and workflow best practices. A solid grasp of variables, locals, and outputs helps you write reusable and maintainable code. In addition, understanding authentication, provider configuration, and the general purpose of the Terraform Registry can help you answer scenario-based questions. If you want to prepare efficiently, focus on how each topic works in a practical environment instead of studying each concept in isolation.

How does Terraform state affect infrastructure changes and collaboration?

Terraform state is one of the most important concepts in the entire Terraform ecosystem because it is the data source Terraform uses to track what it has already created and how those real-world objects map back to configuration. Without state, Terraform would have a much harder time determining what needs to be added, changed, or removed during a plan. In practice, state is what allows Terraform to compare your desired configuration against the current known infrastructure.

This becomes especially important when teams collaborate. If multiple people are managing the same infrastructure, state has to be handled carefully so that changes are coordinated and accurate. Remote backends and state locking are often used to reduce conflicts and prevent two operators from modifying the same state at the same time. That is why Terraform best practices usually recommend avoiding ad hoc manual changes in the cloud console, since those changes can create drift between the actual environment and the state file.

For exam purposes, you should understand that state is not just a technical file to store and forget about. It is part of Terraform’s operational model and directly influences plan output, resource replacement, and dependency tracking. If state becomes inconsistent, Terraform may behave in ways that surprise beginners, such as proposing to recreate resources or failing to recognize existing infrastructure. Learning how state works helps you use Terraform safely and explains many of the workflows and guardrails the exam expects you to know.

What is the difference between modules, resources, and data sources in Terraform?

Resources, data sources, and modules each serve a different purpose in Terraform, and understanding the distinction is essential for the Terraform Associate exam. A resource represents infrastructure that Terraform manages directly, such as a virtual machine, network component, or storage item depending on the provider. When you declare a resource, you are telling Terraform to create, update, or delete that object according to your configuration.

A data source, by contrast, is used to read information about existing infrastructure that is managed either outside Terraform or elsewhere in your configuration. Data sources do not create new infrastructure themselves; instead, they let Terraform retrieve values that can be used in other resource definitions or outputs. This makes them helpful when you need to reference existing images, subnets, accounts, or other external objects without hardcoding values.

Modules are higher-level building blocks that package related Terraform configuration into reusable units. A module can contain resources, data sources, variables, and outputs, and it helps organize code into smaller, more maintainable pieces. In exam scenarios, you will often need to identify whether the right solution is a resource for managing infrastructure, a data source for reading existing information, or a module for reuse and abstraction. Recognizing that difference is a big step toward working confidently with real Terraform code.

What are the most common misconceptions about Terraform plan and apply?

One common misconception is that Terraform plan guarantees exactly what will happen with absolute finality. In reality, plan is a preview based on the current state, your configuration, and any known values at the time the plan is created. If dependencies, variables, credentials, or external infrastructure change before apply is run, the actual result may differ from the original preview. That is why the plan step is best understood as a decision aid, not a permanent contract.

Another misconception is that apply simply “runs the plan” with no additional evaluation. Terraform does use the plan as the basis for execution, but the apply phase may still need to resolve values that were unknown earlier, interact with provider APIs, and confirm actual infrastructure actions. This is why changes can sometimes fail at apply time even when a plan looked acceptable. Understanding this distinction helps explain why Terraform workflows are cautious and why outputs are sometimes marked as unknown until execution time.

It is also easy to assume that plan and apply always work the same way in every environment. In reality, backend configuration, provider authentication, variable input, and state freshness can all affect the results. For the exam, you should know that plan is about evaluating differences and apply is about making changes, but both depend on a correct and current working context. That mindset will help you answer scenario-based questions that test your understanding of safe infrastructure delivery, not just command syntax.

How should I prepare for TF-002 if I already use Terraform at work?

If you already use Terraform at work, the best way to prepare for TF-002 is to turn day-to-day familiarity into structured understanding. Many working users know how to run init, plan, and apply, but the exam often checks whether you understand what those commands do under the hood and how Terraform behaves in edge cases. A strong preparation strategy is to review the official Terraform documentation for core concepts, then practice explaining each workflow step in your own words.

You should also focus on broadening beyond your normal workplace patterns. At work, you may use a narrow set of providers, modules, and deployment patterns, but the exam can ask about generic Terraform behavior across different scenarios. Review topics such as backends, state locking, variable precedence, module inputs and outputs, provider configuration, and the role of the Terraform Registry. It helps to compare your usual approach with standard Terraform best practices so you can spot any gaps in your knowledge.

Practice tests are especially useful because they expose the type of reasoning the exam expects. Instead of only memorizing terms, use practice questions to identify where you hesitate on concepts like drift, resource lifecycle, or data sources. If possible, build or inspect small Terraform configurations and trace how variables, outputs, and modules work together. That hands-on reinforcement can turn everyday experience into exam-ready confidence and make the TF-002 content feel much more predictable on test day.

Certification Body Links

CompTIA®

Vendor-neutral IT certifications including A+, Network+, and Security+.

Visit CompTIA®

Cisco®

Networking and security certifications from CCNA to CCIE.

Visit Cisco®

AWS®

Associate, Professional, and Specialty AWS certifications.

Visit AWS®

(ISC)²®

Information security certifications including CISSP and CC.

Visit (ISC)²®

IBM®

Technical certifications across IBM technologies and platforms.

Visit IBM®

GIAC®

Vendor-neutral security certifications aligned with SANS training.

Visit GIAC®

CNCF®

Cloud-native certifications including CKA, CKAD, and CKS.

Visit CNCF®

GitLab®

DevOps platform certifications for users and administrators.

Visit GitLab®

PMI®

Project management certifications including PMP and CAPM.

Visit PMI®

ISACA®

Audit, security, and governance certifications like CISA, CISM, CRISC.

Visit ISACA®

EXIN®

IT service management, Agile, and privacy certifications.

Visit EXIN®

ISO®

International standards body (relevant to ISO/IEC IT standards).

Visit ISO®

ICDL®

Digital skills certification formerly known as ECDL.

Visit ICDL®

NVIDIA®

Deep learning and accelerated computing training and certifications.

Visit NVIDIA®

Intel®

Training and certifications for partners and developers.

Visit Intel®

F5®

Application delivery and security certifications.

Visit F5®

ServiceNow®

Platform administrator, developer, and implementer certifications.

Visit ServiceNow®

All names, trademarks, service marks, and copyrighted material are the property of their respective owners. Use is for informational purposes and does not imply endorsement.