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

Example 1: ArchiMate relationship in PlantUML code to demonstrate 15 relationship types

 Following section presents 15 types of relationships in ArchiMate and PlantUML to generate the diagram. Since this code is generated by GEN-AI it may require precision on aspects other than PlantUML syntax: Diagram Plant UML Code:  @startuml '!includeurl https://raw.githubusercontent.com/plantuml-stdlib/Archimate-PlantUML/master/Archimate.puml ' Another way of including Archimate Library (above is commented for following) !include <archimate/Archimate> !theme archimate-standard from https://raw.githubusercontent.com/plantuml-stdlib/Archimate-PlantUML/master/themes title ArchiMate Relationships Overview <style> element{     HorizontalAlignment: left;     MinimumWidth : 180;     Padding: 25; } </style> left to right direction rectangle Other {     Business_Role(Role_SeniorManager, "Senior Manager")     Business_Role(Role_Manager, "Manager") } rectangle Dynamic {     Business_Event(Event_CustomerReques...

Examples 7: ArchiMate flow relationship between elements in layers

Diagram Code @startuml !include < archimate / Archimate > < style > element {     HorizontalAlignment : left ;     MinimumWidth : 180 ;     Padding : 20 ; } note {     BackgroundColor : #FFFFCC ;     RoundCorner : 5 ;     MaximumWidth : 250 ; } </ style > title "ArchiMate 3.2 Valid Flow Relationships" left to right direction ' Business Layer Flow Relationships rectangle "Business Layer Flows" {     Business_Process ( bp1 , "Order Process" )     Business_Process ( bp2 , "Payment Process" )     Rel_Flow ( bp1 , bp2 , "Order data" )     note on link         Flow between Business Processes     end note         Business_Function ( bf1 , "Sales Function" )     Business_Function ( bf2 , "Delivery Function" )     Rel_Flow ( bf1 , bf2 , "Sales information" )     note on link     ...

SmartSimpleTextGenerator: A Smarter Way to Generate Text

  Introduction In the world of text generation, simple n-gram models can produce decent results, but they often lack context-awareness and coherence. To address these limitations, I have developed SmartSimpleTextGenerator , an improved version of my previous project, ImprovedSimpleTextGenerator . This new version enhances the text generation process by integrating Part-of-Speech (POS) tagging , n-gram models , and a back-off strategy , making the generated text more meaningful and contextually relevant. Key Features of SmartSimpleTextGenerator ✅ N-Gram Model with POS Tagging – Uses trigrams (default n=3) and applies POS tagging for better word prediction. ✅ Back-off Strategy – If a trigram sequence is unavailable, it falls back to bigrams and unigrams to ensure smooth text generation. ✅ Sentence Tokenization & Structure Preservation – Tokenizes input text properly while maintaining sentence integrity. ✅ Randomized Word Selection – Generates diverse outputs rather ...