Skip to main content

TOGAF® 9 Certification - Architecture Resources for exam preparation

In the last 3 weeks I wasn't active anymore on my blog. This happened because I decided to certified myself as TOGAF 9.

What is TOGAF?
TOGAF is a an architecture framework (Open Group Architecture Framework) for enterprise architectures. The framework comes with support for designing, planning, implement, governance and support an enterprise information technology architecture.
The core of this framework is TOGAF ADM (Architecture Development Method) that describes the method for developing and managing the full lifecycle of an enterprise architecture.

Why TOGAF?
On the market we can find a lot of certificates and standards related to this subject. I decided to go with TOGAF because is one of the frameworks that stays on the foundation of any company when you talk about enterprise architecture.
Additional to this, it is well used in bank, healthcare and life science industry. In comparison with other certificates, you cannot take this exam from your own laptop. It is requested to go in a certification exam center.

How I prepared for it?
There are two approaches if you want to be TOGAF certified:

  1. Go a training organized by an accredited organization - perfect for companies that wants to certified their employes. It is more expensive, but you can learn more in a shorter period of time
  2. Train yourself - this approach is like home schooling - You need to take all the books and other materials that are necessary for the exam and learn by yourself. It is not so expensive like the first option, but you need more time to learn.
I went with the second approach. being more convenient and flexible from the time perspective.

Learning content 
Over the internet you will find a lot of training content, from online materials to videos, books and study guides. The one that I decide to use can be found below.

Part 1 Exam
Part 2 Exam
Hint
After you cover the Study Guide and Udemy content, I highly recommend to take an exam simulator. In this way you can calibrate yourself related on what topics you need to focus and how much you need to learn. 
The first exam (foundation) is focused on theory and framework. Be prepared to remember by heart (memorise) a lot of things. 

The second exam is more light from this perspective. Is more about how well you know the architecture framework and how you apply it on different situations. 

Taking the exam
There are two exams that needs to be taken:
  • OG0-091 TOGAF® 9 Part 1 Exam
  • OG0-092 TOGAF® 9 Part 2 Exam
You can take them in the same day or separately. Each exam costs 320$ and if you take them together the costs is under 500$. 
Personally I preferred to take them separately - 7 days break between them. Even if the second exams has only 8 questions, it will take you more than an hour to respond to the questions and you will need to look into the TOGAF standard to find information. If you remember that kind of exams from high school that is with open books and you need to know exactly where and what to look for. This is why it is important to read the full standard before (700 pages - smile).

Final thoughts
TOGAF framework is pretty interesting and it was a pleasure reading it. All ADM phases are well described and with a lot of examples for different situations. Don't expect to implement this framework 1 to 1 inside the company, but it will be the foundation for your own EA (Enterprise Architecture). 

Comments

Popular posts from this blog

Windows Docker Containers can make WIN32 API calls, use COM and ASP.NET WebForms

After the last post , I received two interesting questions related to Docker and Windows. People were interested if we do Win32 API calls from a Docker container and if there is support for COM. WIN32 Support To test calls to WIN32 API, let’s try to populate SYSTEM_INFO class. [StructLayout(LayoutKind.Sequential)] public struct SYSTEM_INFO { public uint dwOemId; public uint dwPageSize; public uint lpMinimumApplicationAddress; public uint lpMaximumApplicationAddress; public uint dwActiveProcessorMask; public uint dwNumberOfProcessors; public uint dwProcessorType; public uint dwAllocationGranularity; public uint dwProcessorLevel; public uint dwProcessorRevision; } ... [DllImport("kernel32")] static extern void GetSystemInfo(ref SYSTEM_INFO pSI); ... SYSTEM_INFO pSI = new SYSTEM_INFO(...

How to audit an Azure Cosmos DB

In this post, we will talk about how we can audit an Azure Cosmos DB database. Before jumping into the problem let us define the business requirement: As an Administrator I want to be able to audit all changes that were done to specific collection inside my Azure Cosmos DB. The requirement is simple, but can be a little tricky to implement fully. First of all when you are using Azure Cosmos DB or any other storage solution there are 99% odds that you’ll have more than one system that writes data to it. This means that you have or not have control on the systems that are doing any create/update/delete operations. Solution 1: Diagnostic Logs Cosmos DB allows us activate diagnostics logs and stream the output a storage account for achieving to other systems like Event Hub or Log Analytics. This would allow us to have information related to who, when, what, response code and how the access operation to our Cosmos DB was done. Beside this there is a field that specifies what was th...

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills)

Cloud Myths: Cloud is Cheaper (Pill 1 of 5 / Cloud Pills) The idea that moving to the cloud reduces the costs is a common misconception. The cloud infrastructure provides flexibility, scalability, and better CAPEX, but it does not guarantee lower costs without proper optimisation and management of the cloud services and infrastructure. Idle and unused resources, overprovisioning, oversize databases, and unnecessary data transfer can increase running costs. The regional pricing mode, multi-cloud complexity, and cost variety add extra complexity to the cost function. Cloud adoption without a cost governance strategy can result in unexpected expenses. Improper usage, combined with a pay-as-you-go model, can result in a nightmare for business stakeholders who cannot track and manage the monthly costs. Cloud-native services such as AI services, managed databases, and analytics platforms are powerful, provide out-of-the-shelve capabilities, and increase business agility and innovation. H...