Answer:
Letter D
Explanation:
AutoCAD provides eleven different ways to create arcs. The different options are used based on the geometry conditions of the design. To create an arc, you can specify various combinations of center, endpoint, start point, radius, angle, chord length, and direction values.
Answer:
It made information easily accessible and ensured individuals became more vast in subject topics of interest.
Explanation:
Information revolution is different and unique and it came with the advent of computers and the internet. A lot of information is stored there which is too large and complex for the human brain.This helped people to access information without much stress as informations about almost every subject is on the Internet.
Individuals can check the informations up and become more vast in interested topics.
Answer:
Below see details
Explanation:
A) It is attached. Please see the picture
B) First to calculate the overall mean,
μ=65∗25/75+80∗25/75+95∗25/75
μ=65∗25/75+80∗25/75+95∗25/75 = 80
Next to calculate E(MSTR) = σ2+(1/r−1) ∑ni(μi−μ)^2 = 5634
And E(MSE) = σ^2= 9
C) Yes, it is substantially large than E(MSE) in this case.
D) If we sampled 25 employees from each group, we are likely to get a F statistics to indicate differences of job satisfactions among three types of length of service of employees.
78950W the answer
Explanation:
A 75- kw, 3-, Y- connected, 50-Hz 440- V cylindrical synchronous motor operates at rated condition with 0.8 p.f leading. the motor efficiency excluding field and stator losses, is 95%and X=2.5ohms. calculate the mechanical power developed, the Armature current, back e.m.f, power angle and maximum or pull out torque of the motor
A 75- kw, 3-, Y- connected, 50-Hz 440- V cylindrical synchronous motor operates at rated condition with 0.8 p.f leading. the motor efficiency excluding field and stator losses, is 95%and X=2.5ohms. calculate the mechanical power developed, the Armature current, back e.m.f, power angle and maximum or pull out torque of the motor
Answer:
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
string name[5];
int age[5];
int i,j;
for ( i = 0; i<=4; i++ ) {
cout << "Please enter student's name:";
cin >> name[i];
cout << "Please enter student's age:";
cin >> age[i];
}
for (i=0;i<=4;i++){
cout<<"Age of "<< name[i]<<" is "<<age[i]<<endl;
}
}
Output of above program is displayed in figure attached.