Electronics Engineering
Question Write a MATLAB script that keeps asking the user to enter a number until they enter a number less than 3 or greater than 10. Summary This question belongs to MATLAB sof...
Question You are given an array x. Write a script that prints out every pair of consecutive numbers in x where the second number is more than twice that of the first (xk+1 > ...
Question This problem involves developing a program to numerically integrate a functionusing Simpson’s integration. a) Develop a script & supporting functions that perf...
Question This problem involves developing a program to numerically differentiate a functionusing central differences. a) Develop a script & supporting functions that performs...
Question Find the Thevenin Equivalent circuit values for the circuit below at terminals ab. Summary The question belongs to Electrical Engineering and it discusses about findi...
Question A 90 MVA single phase transformer rated 80/120kV is connected as an autotransformer. Rated voltage |V1| = 80 kV is applied to the low-voltage winding of the transformer. ...
Question For the following for loop: x = [4 8 2.1 3 9 7 1]; c = 0; for k = 1:2:length(x)-2 if x(k) + x(k+1) > c c = x(k) + x(k+1); end end a) How many times does the fo...
Question A certain car battery with a 12 V emf has an initial charge of 180 A. hours. Assuming that the potential across the terminals stays constant until the battery is complete...
Question Four capacitors are connected as shown in the diagram. What is the equivalent capacitance in µF? (1) 1.5 (2) 3.3 (3) 4.0 (4) 6.0 (5) 0.67
Question What is the equivalent resistance in ohms o the circuit shown in the figure?
Question A certain wire has resistance R. What is the resistance of a second wire, made of the same material, which is half as long and has 1/3 the diameter?
Question An ideal 6.00 V power supply is connected to a series RC circuit in which the resistor is 120Ω and the capacitor (initially uncharged) is 47.0 p. The charge accumulated...
