Get premium membership and access questions with answers, video lessons as well as revision papers.

i) Draw a flowchart to compute the combined resistance (R) of two resistors R+1 and Ra=2 in parallel using the formula ii) WRITE A PROGRAM USING...

      

i) Draw a flowchart to compute the combined resistance (R) of two resistors R+1 and Ra=2 in parallel using the formula
ii) WRITE A PROGRAM USING Pascal or c languages for the flowchart in c(i) above.

  

Answers


Kavungya
i)fig105620191107.png

ii)PROGRAM resistors (Input, Output );
VAR
R, R1, R2: Real;
Begin
Writeln (‘Input R1 and R2’); Readln (R1, R2)
R: = 1/ (1/R+ 1/R2); 3 (reciprocals-1mk, sum/reci – 1mk, result r- 1mk)
Writeln ( R);
END
Kavungya answered the question on June 5, 2019 at 08:10


Next: List paragraph formatting activities in word processing.
Previous: State the output of the following flowchart segment

View More Computer Studies Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions