blob: 16aabe2cd5f0a1f4fe0a58b56e7b35ff9465947f (
plain)
1
2
3
4
5
6
7
8
9
|
disp("Part a");
q=60;
t=4*60;
i=q/t;
disp("the current flowing in the circuit (in A) is");disp(i);
disp("Part b");
t1=10*60;
q1=i*t1;
disp("the charge transferred (in C) is"); disp(q1);
|