0 votes
in Gradle by
Which of the following is not a valid Gradle task?

a) clean

b) compileTest

c) formatSource

d) assemble

1 Answer

0 votes
by

Answer: c) formatSource

reason: There is no “formatSource” task in Gradle. The correct task is “format” which is used to format the source code.

...