Ultimate access to all questions.
When developing a crypto-wallet webapp using Cloud Shell, where should you store a custom utility to ensure it is in the default execution path and persists across sessions?
Explanation:
The correct answer is B because Cloud Shell provides 5 GB of persistent disk storage mounted as your $HOME
directory on the virtual machine instance. This storage is per-user and available across projects, persisting between sessions. Files stored in your home directory, including scripts and configuration files, remain accessible. The ~
symbol represents the home directory.
$HOME
directory./usr/local/bin
directory is not writable./cloud-shell/scripts
is not a valid directory.For more details, refer to Cloud Shell documentation.