Answer:
Three objectives of a tariff are
1) To control trade between countries
2) To protect domestic industries
3) To provide a source of income
Three characteristics of a tariff are;
1) Adequate return
2) Attractive
3) Fairness
Explanation:
A tariff is an import or export tax placed on goods traded between countries, it serves to control the foreign trade between the two countries and to protect or develop local industry
A Tariff is an important source of income to countries
Three characteristics of a tariff are;
1) Adequate return
Proper return from the consumer should be factored in a tariff to account for the alternatives or normal expense pattern 
2) Attractive
The tariff should be attractive to encourage consumption of electricity or complimentary goods
3) Fairness
Based on the consumption of related resources brought about by large scale utilization, large consumer tariff should be lower than those that consume less complementary resources. 
 
        
             
        
        
        
Answer:
The FSM uses the states along with the generation at the P output on each of the positive edges of the CLK. The memory stores the previous state in the machine and the decoder generates a P output based on the previous state. 
Explanation:
The code is in the image.
 
        
             
        
        
        
The true statement about the dot plot is 1 has 4 and 0 dots.
Explanation:
- after creating a Bar chart 4 is the right answer.
- The highest among st all the other plots is 1 but 4 shows 3.
- Taking an average from all the data points 3 comes to the right answer.
- Median the central Mid-point is 3.
- Mode also comes to 3.
- It is skewed on the right due to the 1st one.
- Skewed shows the data point either increasing or in decreasing.
- There a to Bi- histograms which has two ups and downs.
- The true statement has to be as Mean=Median=Mode is 3.
 
        
             
        
        
        
Answer:
<em>T = 25.41 Nm</em>
Explanation:
Calculating Nsync (Synchronous Speed):



Calculating s (Slip):
![s = (Nsync - Nm) / Nsync \\[tex]s = (3600-2464)/3600\\s = 0.3156](https://tex.z-dn.net/?f=s%20%3D%20%28Nsync%20-%20Nm%29%20%2F%20Nsync%20%5C%5C%3C%2Fp%3E%3Cp%3E%5Btex%5Ds%20%3D%20%283600-2464%29%2F3600%5C%5Cs%20%3D%200.3156)
Calculating Vth (Thevenin Voltage):

Calculating Rth (Thevenin Resistance):
 
 
Calculating Xth (Thevenin Reactance):
Xth = Xs = 1.3 ohm
Calculating Torque:
![T = (3Vth^{2}Rr/s) / (Wsync[(Rth+Rr/s)^{2} + (Xth + Xr)^{2}])\\T = (3*205.39*0.7/0.3156) / 377[(2.22+0.7/0.315)^{2} + (1.3+1.8)^{2}]](https://tex.z-dn.net/?f=T%20%3D%20%283Vth%5E%7B2%7DRr%2Fs%29%20%2F%20%28Wsync%5B%28Rth%2BRr%2Fs%29%5E%7B2%7D%20%2B%20%28Xth%20%2B%20Xr%29%5E%7B2%7D%5D%29%5C%5CT%20%3D%20%283%2A205.39%2A0.7%2F0.3156%29%20%2F%20377%5B%282.22%2B0.7%2F0.315%29%5E%7B2%7D%20%2B%20%281.3%2B1.8%29%5E%7B2%7D%5D)
T = 280699 / 377 [19.69 + 9.61] 
<em>T = 25.41 Nm</em>
 
        
             
        
        
        
Answer:
def filter_only_certain_strings(data_list):
    new_list = []
    for data in data_list:
        # fix here. change >= to >  
        # because we want to return strings longer than 5 characters in length.
        if type(data) == str and len(data) > 5:
            new_list.append(data)
    return new_list
Explanation:
def filter_only_certain_strings(data_list):
    new_list = []
    for data in data_list:
        # fix here. change >= to >  
        # because we want to return strings longer than 5 characters in length.
        if type(data) == str and len(data) > 5:
            new_list.append(data)
    return new_list