Answer:

Explanation:
From the question we are told that:
Number of lamps 
Potential difference 
Total Resistance of the lamp is 
Generally the equation for Current I is mathematically given by



Answer & Explanation:
function Temprature
NYC=[33 33 18 29 40 55 19 22 32 37 58 54 51 52 45 41 45 39 36 45 33 18 19 19 28 34 44 21 23 30 39];
DEN=[39 48 61 39 14 37 43 38 46 39 55 46 46 39 54 45 52 52 62 45 62 40 25 57 60 57 20 32 50 48 28];
%AVERAGE CALCULATION AND ROUND TO NEAREST INT
avgNYC=round(mean(NYC));
avgDEN=round(mean(DEN));
fprintf('\nThe average temperature for the month of January in New York city is %g (F)',avgNYC);
fprintf('\nThe average temperature for the month of January in Denvar is %g (F)',avgDEN);
%part B
count=1;
NNYC=0;
NDEN=0;
while count<=length(NYC)
if NYC(count)>avgNYC
NNYC=NNYC+1;
end
if DEN(count)>avgDEN
NDEN=NDEN+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in New York city was above the average',NNYC);
fprintf('\nDuring %g days, the temprature in Denvar was above the average',NDEN);
%part C
count=1;
highDen=0;
while count<=length(NYC)
if NYC(count)>DEN(count)
highDen=highDen+1;
end
count=count+1;
end
fprintf('\nDuring %g days, the temprature in Denver was higher than the temprature in New York city.\n',highDen);
end
%output
check the attachment for additional Information
Answer:
There are three common methods of charging a battery; constant voltage, constant current and a combination of constant voltage/constant current with or without a smart charging circuit.
Constant voltage allows the full current of the charger to flow into the battery until the power supply reaches its pre-set voltage. The current will then taper down to a minimum value once that voltage level is reached. The battery can be left connected to the charger until ready for use and will remain at that “float voltage”, trickle charging to compensate for normal battery self-discharge.
Constant current is a simple form of charging batteries, with the current level set at approximately 10% of the maximum battery rating. Charge times are relatively long with the disadvantage that the battery may overheat if it is over-charged, leading to premature battery replacement. This method is suitable for Ni-MH type of batteries. The battery must be disconnected, or a timer function used once charged.
Constant voltage / constant current (CVCC) is a combination of the above two methods. The charger limits the amount of current to a pre-set level until the battery reaches a pre-set voltage level. The current then reduces as the battery becomes fully charged. The lead acid battery uses the constant current constant voltage (CC/CV) charge method. A regulated current raises the terminal voltage until the upper charge voltage limit is reached, at which point the current drops due to saturation.