Answer:
The correct answer is - Technician B is correct.
Explanation:
Because when the service technicians remove inspection plug from a differential of the rear wheel drive vehicles and then the gear lubes is started to flows out and after that, it catches the fluids and allows the fluids to continue to the drain.
So, that's why the technician B is correct.
I don’t understand please speak English
Answer:
You will need to implement a for loop ( I am assuming this is java)
Explanation:
int count20s = 0;
for(int x =0; x< customerAges.length;x++){
if(20 <= customerAges[x] && customerAges[x] <= 29){
count20s++;
}
I included my code in the picture below.