Multiple choice technology architecture

which of the following tags to declare a variable in ant build script?

  1. property

  2. file

  3. variable

  4. declare

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

In Ant build scripts, the property tag is used to declare variables. Properties are name-value pairs that can be referenced throughout the build script using ${property.name} syntax. 'file', 'variable', and 'declare' are not valid Ant tags for declaring properties.