Answer:
d. 2.3 ohms (5.3 amperes)
Explanation:
The calculator's 1/x key makes it convenient to calculate parallel resistance.
Req = 1/(1/4 +1/8 +1/16) = 1/(7/16) = 16/7 ≈ 2.3 ohms
This corresponds to answer choice D.
__
<em>Additional comment</em>
This problem statement does not tell the applied voltage. The answer choices suggest that it is 12 V. If so, the current is 12/(16/7) = 21/4 = 5.25 amperes.
Answer:
note:
<u>solution is attached in word form due to error in mathematical equation. furthermore i also attach Screenshot of solution in word due to different version of MS Office please find the attachment</u>
Flip flops are not required
Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).