create a batch subdirectory on the homework disk and any batch files frome the root directory into the batch subdirectory

To create a batch subdirectory on the homework disk and move batch files from the root directory into the batch subdirectory, follow these steps:

1. Open the command prompt:
- On Windows, press the "Windows key" + "R" to open the Run dialog box.
- Type "cmd" and press "Enter" to open the command prompt.

2. Change the directory to the root directory of the homework disk:
- Type the drive letter followed by a colon, e.g., "D:" if the homework disk is on drive D.
- Press "Enter" to switch to the homework disk's root directory.

3. Create a batch subdirectory:
- Type "mkdir batch" and press "Enter" to create a subdirectory named "batch".

4. Move batch files to the batch subdirectory:
- Type "move *.bat batch\" and press "Enter".
- This command will move all batch files from the root directory to the batch subdirectory.

Once you have completed these steps, any batch files present in the root directory of the homework disk will be moved to the newly created "batch" subdirectory.