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(

Azure AD and AWS Cognito side-by-side

In the last few weeks, I was involved in multiple opportunities on Microsoft Azure and Amazon, where we had to analyse AWS Cognito, Azure AD and other solutions that are available on the market. I decided to consolidate in one post all features and differences that I identified for both of them that we should need to take into account. Take into account that Azure AD is an identity and access management services well integrated with Microsoft stack. In comparison, AWS Cognito is just a user sign-up, sign-in and access control and nothing more. The focus is not on the main features, is more on small things that can make a difference when you want to decide where we want to store and manage our users.  This information might be useful in the future when we need to decide where we want to keep and manage our users.  Feature Azure AD (B2C, B2C) AWS Cognito Access token lifetime Default 1h – the value is configurable 1h – cannot be modified

ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded

Today blog post will be started with the following error when running DB tests on the CI machine: threw exception: System.InvalidOperationException: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' registered in the application config file for the ADO.NET provider with invariant name 'System.Data.SqlClient' could not be loaded. Make sure that the assembly-qualified name is used and that the assembly is available to the running application. See http://go.microsoft.com/fwlink/?LinkId=260882 for more information. at System.Data.Entity.Infrastructure.DependencyResolution.ProviderServicesFactory.GetInstance(String providerTypeName, String providerInvariantName) This error happened only on the Continuous Integration machine. On the devs machines, everything has fine. The classic problem – on my machine it’s working. The CI has the following configuration: TeamCity .NET 4.51 EF 6.0.2 VS2013 It see