Answer:
(a) the subtransient current through the breaker in per-unit and in kA rms = 71316.39kA
(b) the rms asymmetrical fault current the breaker interrupts, assuming maximum dc offset. = 152KA
Explanation:
check the attached files for explanation
Answer:
1. cout << "Num: " << songNum << endl;
2. cout << songNum << endl;
3. cout << songNum <<" songs" << endl;
Explanation:
//Full Code
#include <iostream>
using namespace std;
int main ()
{
int songNum;
songNum = 5;
cout << "Num: " << songNum << endl;
cout << songNum << endl;
cout << songNum <<" songs" << endl;
return 0;
}
1. The error in the first cout statement is that variable songnum is not declared.
C++ is a case sensitive programme language; it treats upper case and lower case characters differently.
Variable songNum was declared; not songnum.
2. Cout us used to print a Variable that has already been declared.
The error arises in int songNum in the second cout statement.
3. When printing more than one variables or values, they must be separated with <<
Answer:
They are used in imaging application gadgets such as video cameras,TV, surveillance cameras and document scanners
Explanation:
A charge couple device (CCDs) are highly capable in imagery detector.Its common application is in video and digital imaging.The quality of a charge couple device is determined by factors such as the dynamic range, dark charge level and the quantum efficiency.These devices serve the purpose of detecting optical images though some are installed with applications for data storage.
Answer:
import java.util.Scanner;
public class InputExample {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int birthMonth;
int birthYear;
birthMonth = scnr.nextInt();
birthYear = scnr.nextInt();
System.out.println(birthMonth+"/"+birthYear);
}
}