205k views
2 votes
A technician is writing a batch file script and wants to use a variable called Students and set the starting value to 0. Which command would be used

2 Answers

2 votes

Final answer:

In a batch file script, the command SET Students=0 is used to create a variable named Students and set its initial value to 0.

Step-by-step explanation:

To set a variable called Students with a starting value of 0 in a batch file script, a technician would use the following command:

The command used to set the starting value of a variable in a batch file script is set. To set the variable 'Students' to a starting value of 0, the technician would use the command:

set Students=0

This will assign the value of 0 to the variable 'Students'.

SET Students=0

This line defines the variable Students and initializes it with the value of 0. Throughout the batch file, this variable can now be referenced by using %Students% to access its value.

User Spencer Goff
by
7.6k points
4 votes

Answer:

Batch files can also be run in a command prompt or the Start-Run line. variable-name is the name of the variable you want to set. value is the value.

Step-by-step explanation:

User Miles Elam
by
8.9k points