Multiple choice technology architecture

Which Tag in Ant will Invoke the build Process?

  1. Target

  2. Deploy

  3. Compile

  4. copy

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In Ant build scripts, the Target tag is the fundamental execution unit - you invoke a target to run a specific build process. Targets contain tasks like compile, deploy, copy. When you run 'ant targetname', you're invoking a Target tag. Deploy, Compile, and Copy are tasks within targets, not the invoking mechanism.