Answer:
The current drawn from the outlet is 0.2 A
The number of turns on the input side is 350 turns
Explanation:
Given;
number of turns of the secondary coil, Ns = 35 turns
the output current,
= 2 A
power supplied,
= 24 W
the standard wall outlet in most homes = 120 V = input voltage
For an ideal transformer; output power = input power
the current drawn from the outlet is calculated;

The number of turns on the input side is calculated as;

Answer and Explanation:
The diesel engines are employed in heavy vehicles as they are capable of producing high torque value at low speed.
As they have high compression ratios they can't be used in light vehicles like bikes and compact cars.
As a result of high compression ratios of diesel engines, noise and vibrations are produced which only heavy vehicles can withstand.
Another reason being that heavy vehicles require more fuel and in this case diesel is efficient because petrol burns at a faster rate than diesel.
Otto engines are used for light vehicles and provides high speed and can be regulated and tuned for more torque production.
Answer:
NML = 2.6 V - 2.5737 = 26.3 mV
NML = 26.25 mV - 0 = 26.25 mV
Explanation:
<h3>Please refer to the attachment below for explanation.</h3>
Answer:
# the function fix_yz is defined
# it takes a string as parameter
def fix_yz(word):
# new_word is to hold the new corrected string
new_word = ""
# loop through the string
# and check for any instance of y or z.
# if any instance is found, it is replaced accordingly
for each_letter in word:
if each_letter == 'z':
new_word += 'y'
elif each_letter == 'Z':
new_word += 'Y'
elif each_letter == 'y':
new_word += 'z'
elif each_letter == 'Y':
new_word += 'Z'
else:
new_word += each_letter
# the value of new string is returned
return new_word
Explanation:
The function is written in Python 3 and it is well commented. An image is attached showing the output of the given example.
The function take a string as input. It then loop through the string and check for any instance of 'y' or 'z'; if any instance is found it is swapped accordingly and then append to the new_word.
The value of bew_word is returned after the loop.
Answer: 500 volts AC, 750 volts DC
Class 00 rubber gloves are given the color "beige" based on the color code of rubber gloves.
The proof test voltage for this class of rubber gloves is 2500 volts of AC voltage and 10000 volts of DC voltage
Please mark it as brainliest answer:).