Answer:
PF= .54
Explanation:
Power Factor equals working/real power (W) over apparent power (VA). 1.0 PF is an efficient equipment. PF= 22/(120*.34)
The sample of 81 students was selected with a mean score of 90, this illustrates an example of a right tailed one sample z test.
<h3>How to illustrate the sample?</h3>
From the information given, the teacher claims that the mean score of students in his class is greater than 82 with a standard deviation of 20. In this case, the right tailed one sample z test is used.
The z value will be:
= (90 - 82)/20/✓81
= 3.6
Since 3.6 > 1.645, the null hypothesis will be rejected as there's enough evidence to support the teacher's claim.
When an online medicine shop claims that the mean delivery time for medicines is less than 120 minutes with a standard deviation of 30 minutes, the left tailed one sample test is used.
The z value will be:
= (100 - 120)/(30/✓49)
= -4.66
The null hypothesis is rejected as there is enough evidence to support the claim of the medicine shop.
Learn more about sampling on:
brainly.com/question/17831271
#SPJ1
<h3>Hey Mate Here Is Your Answer</h3>
Keywords Are Reserved Words Which Are Not Use As Normal Cases But Used For Special Purpose In Our Program whereas, Data Type Tells The Compiler And Interpreter How The Program Is Going To Be Executed And Can Be Used At Every Cases.
<h3>Hope This Helps You ❤️</h3>
Answer:
#include <iostream>
#include <string>
using namespace std;
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
if (tolower(str[i]) != tolower(str[length - 1 - i]))
return false;
}
return true;
}
int main()
{
string s[6] = {"madam", "abba", "22", "67876", "444244", "trymeuemyrt"};
int i;
for(i=0; i<6; i++)
{
//Testing function
if(isPalindrome(s[i]))
{
cout << "\n " << s[i] << " is a palindrome... \n";
}
else
{
cout << "\n " << s[i] << " is not a palindrome... \n";
}
}
return 0;
}