LoginSignup
68
79

More than 1 year has passed since last update.

GCP Professional Cloud Architectに1日で合格する方法

Last updated at Posted at 2022-06-07

image.png
Professional Cloud Architectに合格しました。受験体験記を共有したいと思います。

Professional Cloud Architectとは

2022年の最も高収入につながる IT 認定資格ランキングで2位の資格です。平均年収2200万円($169,029)

合格するためにやったこと

模擬問題集で70%あれば合格できます。1セット1時間合計4時間で終わります。試験開始前に間違えた問題を再度確認しておきましょう。Udemyのセール時に購入するのがおすすめです

【最短攻略】Google Cloud 認定 Professional Cloud Architect 模擬問題集

Udemy自動化

Tampermonkeyをインストールし、下記ユーザースクリプトをインストールすることで次へボタンを自動で押せます。2倍ほど速くテストを進められるので便利です。タッチパネルでやると更によいです。

// ==UserScript==
// @name         AutoNextUdemy
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.udemy.com/course/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=udemy.com
// @grant        none
// ==/UserScript==

document.body.addEventListener('click', e => {
    if (e.target.type === 'radio') {
        requestIdleCallback(() => document.querySelector('[data-purpose="go-to-next-question"]').click())
    } else if (e.target.type === 'checkbox') {
        const m = document.querySelector('#question-prompt').textContent.match(/(?<=select )\d|\d(?=を選択)|\d(?=つ選択してください)|\d(?=つ選択)/)
        if (m && e.target.closest('form').querySelectorAll('input[type=checkbox]:checked').length === parseInt(m[0], 10)) {
            requestIdleCallback(() => document.querySelector('[data-purpose="go-to-next-question"]').click())
        }
    }
})

まとめ

上記の問題集だけで十分合格できると思いました。参考になれば幸いです。

受験料無料キャンペーン開催中

Google Cloud Skills BoostをするとGoogle Cloud 認定資格試験バウチャー 1 回分をプレゼントキャンペーンやってるようです。もしよろしければご活用ください

68
79
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
68
79