Skip to main content

Certifications related to architects

 

Certifications

Enterprise & IT Governance

    • TOGAF Certified Enterprise Architect

    • COBIT 5 training and certification (4 different exams)

    • Zachman Certified - Enterprise Architect

Cloud

    • AWS Certified Solution Architect

    • Google certified professional (Cloud Architect)

    • IBM Certified Solution Architect - Cloud Computing Infrastructure V1

    • IBM Certified Solution Advisor - Cloud Computing Architecture V4

    • MCSE: Cloud Platform and Infrastructure

Specialist

    • Oracle IT Architecture Release 3 Certified Architecture Specialist

    • Oracle Certified Master, Java EE 6 Enterprise Architect

    • Oracle Application Integration Architecture 11g Certified Implementation Specialist

    • Oracle IT Architecture BPM 2013 Certified Architecture Specialist

    • Oracle IT Architecture SOA 2013 Certified Architecture Specialist

    • Cisco certified architect (for Cisco technologies not a generic one)

    • Red Hat® Certified Architect (RHCA (Upon obtaining either RHCE or Red Hat Certified JBoss Developer

    • MCSE: Mobility, MCSE: Data Management and Analytics

    • Pega Systems: Certified Lead System Architect, Certified Senior System Architect, Certified Pega Business Architect

    • CISSP-ISSAP: Information Systems Security Architecture Professional

Note: Some of the certifications are provided by IASA which was earlier known as International Association of Software Architects and now it claims that is is an association of All IT Architects.

Certified IT Architect - *

where * may stand for: Foundation (CITA-F), Associate (CITA-A), Specialist (CITA-S), Professional (CITA-P)

IASA has published something called "IT Architecture Body of Knowledge" ITABoK. For more detail click here.

Courses and/or certifications from other sources

Graduate Certificate in Software Architecture: University of South Carolina

https://viterbigradadmission.usc.edu/programs/masters/msprograms/computer-science/grad-cert-software-architecture/

SEI Software Architecture Professional Certificate: Carnegie Mellon University, Software Engineering Institute

https://www.sei.cmu.edu/education-outreach/credentials/credential.cfm?customel_datapageid_14047=15203

Software Design and Architecture Specialization: University of Alberta through Coursera

https://www.coursera.org/specializations/software-design-architecture

Following are some online courses:

Free course Software Architecture & Design by Georgia Tech through Udacity platform

https://in.udacity.com/course/software-architecture-design--ud821

Free course The Software Architect Code: Building the Digital World at edX

https://www.edx.org/course/the-software-architect-code-building-the-digital-world-0

Interesting resources

1. https://www.zachman.com/certification/certification-overview

2. https://ce.uci.edu/pdfs/brochures/software_architect.pdf

3. https://online.usc.edu/programs/graduate-certificate-in-software-architecture/

4. https://www.sei.cmu.edu/education-outreach/credentials/credential.cfm?customel_datapageid_14047=15203

5. http://www.opengroup.org/certifications

6. https://www.arcitura.com/soa-school/

7. https://www.redhat.com/en/services/certification/rhca

8. https://aws.amazon.com/certification/certified-solutions-architect-associate/

9. https://www.microsoft.com/en-us/learning/azure-exams.aspx

10. https://education.oracle.com/oracle-it-architecture-release-3-certified-architecture-specialist/trackp_131

11. https://education.oracle.com/oracle-certified-master-java-ee-6-enterprise-architect/trackp_212

Comments

Popular posts from this blog

Virtual environments in python

 Creating virtual environments is essential for isolating dependencies and ensuring consistency across different projects. Here are the main methods and tools available, along with their pros, cons, and recommendations : 1. venv (Built-in Python Virtual Environment) Overview: venv is a lightweight virtual environment module included in Python (since Python 3.3). It allows you to create isolated environments without additional dependencies. How to Use: python -m venv myenv source myenv/bin/activate # On macOS/Linux myenv\Scripts\activate # On Windows Pros: ✅ Built-in – No need to install anything extra. ✅ Lightweight – Minimal overhead compared to other tools. ✅ Works across all platforms . ✅ Good for simple projects . Cons: ❌ No dependency management – You still need pip and requirements.txt . ❌ Not as feature-rich as other tools . ❌ No package isolation per project directory (requires manual activation). Recommendation: Use venv if you need a simple, lightweight solut...

Building a Simple Text Generator: A Hands-on Introduction

Introduction Text generation is one of the most exciting applications of Natural Language Processing (NLP) . From autocorrect and chatbots to AI-generated stories and news articles , text generation models help machines produce human-like text. In this blog post, we’ll introduce a simple yet effective text generation method using Markov Chains . Unlike deep learning models like GPT, this approach doesn’t require complex neural networks—it relies on probability-based word transitions to create text. We’ll walk through: ✅ The concept of Markov Chains and how they apply to text generation. ✅ A step-by-step implementation , fetching Wikipedia text and training a basic text generator. ✅ Example outputs and future improvements. The Concept of Markov Chains in Text Generation A Markov Chain is a probabilistic model that predicts future states (or words) based only on the current state (or word), rather than the full sentence history. How it works in text generation: 1️⃣ We analyze a gi...

Mastering Trade-Off Analysis in System Architecture: A Strategic Guide for Architects

 In system architecture and design, balancing conflicting system qualities is both an art and a science. Trade-off analysis is a strategic evaluation process that enables architects to make informed decisions that align with business goals and technical constraints. By prioritizing essential system attributes while acknowledging inevitable compromises, architects can craft resilient and efficient solutions. This enhanced guide provides actionable insights and recommendations for architects aiming to master trade-off analysis for impactful architectural decisions. 1. Understanding Trade-Off Analysis Trade-off analysis involves identifying and evaluating the conflicting requirements and design decisions within a system. Architects must balance critical aspects like performance, scalability, cost, security, and maintainability. Since no system can be optimized for every quality simultaneously, prioritization based on project goals is essential. Actionable Insights: Define key quality ...