Answer:
(a) attached below
(b)

(c) 
(d)
Ω
(e)
and 
Explanation:
Given data:





(a) Draw the power triangle for each load and for the combined load.
°
°
≅ 

≅ 
The negative sign means that the load 2 is providing reactive power rather than consuming
Then the combined load will be


(b) Determine the power factor of the combined load and state whether lagging or leading.

or in the polar form
°

The relationship between Apparent power S and Current I is

Since there is conjugate of current I therefore, the angle will become negative and hence power factor will be lagging.
(c) Determine the magnitude of the line current from the source.
Current of the combined load can be found by


(d) Δ-connected capacitors are now installed in parallel with the combined load. What value of capacitive reactance is needed in each leg of the A to make the source power factor unity?Give your answer in Ω


Ω
(e) Compute the magnitude of the current in each capacitor and the line current from the source.
Current flowing in the capacitor is

Line current flowing from the source is

Answer:
Union
Explanation:
The correct option is - union
Reason -
Guild is an association of people for mutual aid or the pursuit of a common goal.
Rally is come together in order to provide some support or make a shared effort.
Framework is a basic structure underlying a system, concept, or text.
Union is a club, society, or association formed by people with a common interest or purpose.
An embargo is a government order that restricts commerce with a specified country or the exchange of specific goods.
Answer:
#include<iostream>
Using namespace std;
int main()
{
int n, qty;
double price, amount;
cout<<"Number of items ";
cin>>n;
cout<<"ITEM<<"\t"<<"QUANTITY"<<"\t"<<"PRICE"<<"\t"<<"ITEM TOTAL";
for(int i= 1; I<= n; i++)
{
cin>>qty;
cin>>price;
amount = qty * price;
cout<<i<<"\t "<<qty<<"\t"<<price<<"\t"<<amount;
}
}
Explanation
The above program is written in C++ programming language
5 variables are declared and used in the program
n is declared as an integer to represent the total number of items
qty is declared as integer to represent the total quantity of each item
price is declared as double to represent the amount of each individual item
amount is declared as double to represent the total amount of an item; it is gotten by qty * price
i is declared as integer to iterated between each items
The amount of each item is calculated within the iteration and also printed immediately