Atlassian Quiz Questions and
Answers (100% Pass)
CERT QUIZ -- Evaluate and select system components to meet requirements
and technical limitations for a new or existing environment.
QUESTION: A couple of system administrators are discussing whether a
reverse proxy should be used for the company's HTTPS encrypted Jira
installation. Which statement accurately describes some of the benefits of
using Apache as a non-caching reverse proxy?
A) The reverse proxy will benefit system security by making it possible for the
admins to more easily monitor Jira's outgoing communication.
B) The reverse proxy will improve Jira's performance by reducing the number
of requests that reach the Jira application server.
C) The reverse proxy will improve Jira's performance as SSL termination and
gzip compression can be offloaded from the JVM and can be more
efficiently handled by Apache.
D) It is much harder to configure SSL in Apache than it is on Jira's JVM.
Master01 | September, 2024/2025 | Latest update
, 1 | P a g e | © copyright 2024/2025 | Grade A+
✓ WHY?
✓
✓ A) The reverse proxy is an incoming proxy and dose not monitor
outgoing communication. In fact, outgoing communication initiated
by the Jira application will not use the reverse proxy at all.
✓ B) Since the question specified that Apache has been configured as a
"non-caching" reverse proxy, each and every request that reaches the
proxy will be passed on to Jira.
✓ C) Correct. Apache is much better at handling SSL termination and
gzip compression, and achieves these tasks using far fewer resources.
✓ D) Configuring Apache to use SSL is much easier than doing the same
for the JVM/Tomcat. The knowledge regarding how to do this is also
much more wipespread.
CERT QUIZ: Given a scenario, interpret configuration files, identify modification
points, and determine appropriate modifications.
QUESTION: A less experienced colleague has been asked to make some
configuration changes to your Jira 7.1 Core instance. A few advanced
configuration settings need to be changes. Your colleague has figured out
that these settings are stored in the following file: <jira-install-dir>/atlassian-
Master01 | September, 2024/2025 | Latest update
, 1 | P a g e | © copyright 2024/2025 | Grade A+
jira/WEB-INF/classes/jpm.xml. The colleague wants to make changes to that
file to update the settings.
What is your advice to the colleague?
A) This is the wrong place to change the advanced configuration settings.
They can, and should, only be changed via the Jira administration area
(web-interface). Changing them anywhere else is not recommended.
B) This is the correct file. It lists all the advanced configuration settings and
although there are other options, the values can and should be edit
✓ WHY
✓
✓ A) The settings can also be changed in Jira-config-properties.
✓ B) This is not the correct file. This file contains the default settings and
any changes here would get lost during an upgrade.
✓ C) Correct. The settings should not be changed in the jpm.xml file but
they can be changed in the listed places.
✓ D) This file is not used to configure these options.
CERT QUIZ: Explain the critical information required and associated limitations
for backingup data, recovering data, and/or restoring operations.
Master01 | September, 2024/2025 | Latest update