You are on page 1of 8

2

3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

20

21
22

23

24
25
26

27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
In gradle, JAR files are published to
Jobs are the unit of execution in Jenkins.
Which of the following statement is true about Jenkins?
The plugins provided by jenkins supports
Applying the Application plugin also implicitly applies the Java plugin.
How to check gradle version?
Gradle tasks can also be created and extended dynamically at runtime.
In gradle the init task creates a Gradle project, which contains _______________.
In gradle a disabled task is labelled as _________.
Which task is added by wrapper plugin to the project?
The two build files generated by android studio are in ________________.
Gradle Build Init plugin is an automatically applied plugin.
Which of the following is a quality plugin of Gradle?
Lifecycle tasks typically have task actions.
In gradle it is useful to have a build that is more declarative as possible , since this
In Gradle, the java plugin searches for java production source code in the directory ___________.
Which of the following statements are true?
Which of the following is a quality plugin of Gradle?
In gradle to specify, which projects belong to the build, and which file is used?

Consider the following gradle build script:


task a {
doLast { println 'A'
}}
task b(dependsOn: a) {
doLast { println 'B'
}}
task c(dependsOn: a){
DoLast { println 'C'
}}

To execute the hello task in the build file, type ___ on the command line.
Multiline comments in Gradle build files are included using _____ .

Consider the following gradle build script:


task a{
ext.myProperty = "Hello"
}
task b{
doLast {
println a.myProperty
println c.myProperty
}}
task c(dependsOn: b){
ext.myProperty = "Hey"
println "Hi"}
If the task gradle -q c is run, what is the output?

Gradle build scripts are written in _________.


Gradle build scripts use a combination of declarative and imperative statements.
Which plugins are configured while integrating gradle with Jenkins?
Which are the two types of plugins in gradle?
In Jenkins, a build job performs _______.
Which method is used to attach a predicate to a skipping task?
Gradle is an imperative build tool.
Gradle wrapper makes the execution of the build independent of the installed Gradle version.
The war plugin enables the default JAR archive generation of the Java plugin.
Which plugin facilitates creating an executable JVM application _________.
To build Android project, which version of gradle is required?
The external dependencies for the build script are defined using ___________.
Which of the following is Gradle's in-built task?
The scala plugin applied in the gradle can deal with ____________.
While building a java project with gradle, the JAR files are created in ____ after the execution of gradle build command.
Java plugin is a binary plugin.
In the android plugin for gradle, which two properties on the android configuration block are required?
Gradle dependencies are stored in builds.
Gradle is a _______ based build tool.
Which of the following statement is false?
Finalizer tasks are automatically added to the task graph when the finalized task is scheduled to run.
The wrapper plugin can be auto-applied to the root project of the current build without modifying the build.gradle file.
In android studio, what is the folder in which the build file is used to build the Android application?
ALL
0
ALL
ALL
1
gradle -v
1
all
DISABLED
wrapper
root fol of proj and app
1
all
0
Both
src/test/java
Only Maven script can be migrated to Gradle build script Only Ant script
pmd
build.gradle settings.gradle

AC

Both
/*ML*/

Hi hello hey

Scala Groovy or koltin


TRUE
Gradle plugin and plugin of repository used

Script and binary


ALL
SKIP()
0
0
TRUE
JAVA PLUGIN
1.12
ALL
ALL
ALL
BUILD/CLASSES
TRUE
Build tool version and complie options
0
JVM
Rich command line interface
0
TRUE
gradle folder
Which plugins are configured while integrating gradle with Jenkins?
In gradle, JAR files are published to
Jobs are the unit of execution in Jenkins.
Which of the following statement is true about Jenkins?
The plugins provided by jenkins supports
2
Gradle Plugin and Java plugin
ALL
0
ALL
ALL

You might also like