Maven - Online Quiz



Following quiz provides Multiple Choice Questions (MCQs) related to Maven. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.

Questions and Answers

Q 1 - Which of the following aspects of a project can be managed using Maven?

A - Builds

B - Documentation

C - Reporting

D - All of the above.

Answer : D

Explanation

All of the above aspects of a project can be managed using Maven.

Answer : A

Explanation

clean: cleans up artifacts created by prior builds.

Q 3 - Which of the following phase in maven life cycle processes and deploys the package if necessary into an environment where integration tests can be run?

A - integration-test

B - verify

C - install

D - deploy

Answer : A

Explanation

integration-test phase processes and deploys the package if necessary into an environment where integration tests can be run.

Q 4 - Which of the Build Profile is defined in Maven global settings xml file (%M2_HOME%/conf/settings.xml)?

A - Per Project

B - Per User

C - Global

D - None of the above.

Answer : C

Explanation

Global − Defined in Maven global settings xml file (%M2_HOME%/conf/settings.xml).

Answer : C

Explanation

Maven will automatically fetch the latest SNAPSHOT everytime dependent project is built. Unlike regular versions, Maven checks for a new SNAPSHOT version in a remote repository for every build.

Q 6 - Which of the following refers to the name of the project?

A - ${pom.name}

B - ${project.name}

C - ${maven.name}

D - ${name}

Answer : A

Explanation

${pom.name} refers to the name of the project.

Answer : B

Explanation

A mojo is a Maven plain Old Java Object.

Q 8 - Which of the following is correct about artifactId in Maven pom.xml?

A - This is an Id of the project.

B - This is generally name of the project.

C - Both of the above.

D - None of the above.

Answer : C

Explanation

This is an Id of the project.This is generally name of the project. For example, consumer-banking. Along with the groupId, the artifactId defines the artifact's location within the repository.

Q 9 - Which of the following phase in maven life cycle performs actions required before integration tests are executed. For example, setting up the required environment?

A - process-resources

B - pre-integration-test

C - prepare-package

D - None of the above.

Answer : B

Explanation

pre-integration-test performs actions required before integration tests are executed. For example, setting up the required environment.

Answer : C

Explanation

Maven plugins are used to do both of the above mentioned tasks.

maven_questions_answers.htm
Advertisements