1z0-819 Exam QuestionsBrowse all questions from this exam

1z0-819 Exam - Question 128


Which two commands are used to identify class and module dependencies? (Choose two.)

Show Answer
Correct Answer: AD

The two commands that can be used to identify class and module dependencies are 'java --show-module-resolution' and 'jdeps --list-deps'. The 'java --show-module-resolution' command shows all modules required and resolved by the root, providing insight into module dependencies. The 'jdeps --list-deps' command is a command-line tool that can analyze the static dependencies of Java applications and libraries, listing the dependencies of a Java class file.

Discussion

3 comments
Sign in to comment
StavokOptions: BD
Jul 30, 2023

The two commands that can be used to identify class and module dependencies are B. jmod describe and D. jdeps --list-deps.jmod describe is a command that can be used to display information about the contents of a jmod file, including its dependencies 1. jdeps --list-deps is a command that can be used to list the dependencies of a Java class file 1jdeps is a command-line tool that can be used to analyze the static dependencies of Java applications and libraries

d7bb0b2Options: BD
Jan 8, 2024

A and E not exist and C is a compiler class opcion.

ASPushkinOptions: BD
May 5, 2024

A exists java --show-module-resolution it shows all modules all the modules required and resolved by the root