Exam 1z0-819 All QuestionsBrowse all questions from this exam
Question 60

Your organization provides a cloud server to your customer to run their Java code. You are reviewing the changes for the next release and you see this change in one of the config files:

old: JAVA_OPTS="$JAVA_OPTS -Xms8g -Xmx8g"

new: JAVA_OPTS="$JAVA_OPTS -Xms8g -Xmx8g -noverify"

Which is correct?

    Correct Answer: D

    You should reject the change because -noverify is a critical security risk. The -noverify option disables the bytecode verification process during class loading, which can leave the system vulnerable to malicious code. Bytecode verification is an important step in ensuring the security and integrity of Java code, so it is generally not recommended to disable it.

Discussion
StavokOption: D

You should reject the change because -noverify is a critical security risk. The -noverify option disables the bytecode verification process during class loading, which can leave the system vulnerable to malicious code. Bytecode verification is an important step in ensuring the security and integrity of Java code, so it is generally not recommended to disable it. Therefore, the correct answer is D

d7bb0b2Option: D

D is correct !

tmuralimanoharOption: D

Answer: D