
(ii)(a) Winds bringing rainfall
Step 1: Wind bringing rainfall to Area A
The wind which brings rainfall to the shaded area A is $\text{Western Disturbance}$. These winds originate from the $\text{Mediterranean Sea}$ and cause winter rainfall in the northwestern parts of India.
Step 2: Wind bringing rainfall to Area B
The wind which brings rainfall to the shaded area B is $\text{Northeast Monsoon}$. These winds blow from the northeast direction and bring rainfall to the eastern coastal regions, especially Tamil Nadu and parts of Andhra Pradesh.
(ii)(b) Benefits of rainfall
Step 1: Benefits for Area A
The winter rainfall caused by $\text{Western Disturbance}$ is very important for $\text{rabi crops}$ such as wheat, barley, and mustard. It supports proper growth and increases agricultural productivity in northwestern India.
Step 2: Benefits for Area B
The rainfall brought by the $\text{Northeast Monsoon}$ is essential for agriculture in the eastern coastal regions. It helps in the cultivation of crops like rice, groundnut, and cotton. It also recharges groundwater levels in the region.

Give the output of the following Java program segment:
String a[] = {"Atasi", "Aditi", "Anant", "Amit", "Ahana"};
System.out.println(a[1].charAt(1) + "*" + a[2].charAt(2));
The output of the above statement is:
Assertion (A): The substring() method modifies the original String.
Reason (R): The substring() method can extract part of a String from a specific index.
Rewrite the following program segment using a for loop:
Given program segment:
int a = 5, b = 10;
while (b > 0)
{
b -= 2;
}
System.out.println(a * b);
Note: Ensure that the variable $b$ remains accessible for the System.out.println statement after the loop terminates.
Define a class named StepTracker with the following specifications:
Member Variables:
String name — stores the user's name.int sw — stores the total number of steps walked ($sw$).double cb — stores the estimated calories burned ($cb$).double km — stores the estimated distance walked in kilometers ($km$).Member Methods:
1. void accept()
To input the name and the sw (steps walked) using Scanner class methods only.
2. void calculate()
Calculates calories burned ($cb$) and distance in ($km$) based on steps walked ($sw$) using the provided estimation logic.