120 volt divided by 22 ampere
= 5.4545454545455 ohm (Ω)
P = V × I
= 120 volt × 22 ampere
= 2640 watt (W)
Answer:
for 5.6V 9 turns, for 12.0V 19 turns, for 480V 755 turns
Explanation:
Vp/Vs= Np/Ns
Vp: Primary voltage
Vs: Secondary Voltage
Np: number of turns on primary side
Ns: number of turns on secondary side
for output 5.6V
140/5.6= 220/Ns
Ns= 8.8 or 9 Turns
for output 12.0V
140/12= 220/Ns
Ns= 18.9 or 19 turns
for output 480V
140/480= 220/Ns
Ns= 754.3 or 755 turns
Answer: c. The Professional Engineers Act and Board Rules
Explanation:
The reference source may be consulted to answer questions regarding the Professional Engineers Act is the The Professional Engineers Act and Board Rules.
The Professional Engineers Act and Board Rules is an Act that was established in order to regulate the qualifications for professional engineered, register them and also make sure that their conducts and behavior are looked into.
Answer:
- #include <iostream>
- using namespace std;
- void printLarger(int a, int b){
-
- if(a > b){
- cout<<a;
- }else{
- cout<<b;
- }
- }
- int main()
- {
- printLarger(4, 5);
- return 0;
- }
Explanation:
The solution code is written in C++.
Firstly define a function printLarger that has two parameters, a and b with both of them are integer type (Line 5). In the function, create an if condition to check if a bigger than b, print a to terminal (Line 7-8). Otherwise print b (Line 9-10).
In the main program, test the function by passing 4 and 5 as arguments (Line 16) and we shall get 5 printed.