Answer:
The probability that you have the disease, given that your test is positive is ≈ 0.0098
Explanation:
This is a conditional probability problem.
Let P(A|B) denote the conditional probability of A given B and it satisfies the equation
- (1) P(A|B) = P(A) × P(B|A) / P(B)
We have the the probabilities:
- P(Testing Positive | Having Disease) =0.99
- P(Testing Negative | Not Having Disease) =0.99
- P(Testing Positive | Not Having Disease) = 1-0.99=0.01
- P(Having Disease) = 0.0001 (striking only one in 10,000 people)
- P(Not Having Disease)= 1 - 0.0001 = 0.9999
<u>We can calculate</u>:
P(Testing Positive) =
P(Having Disease) × P(Testing Positive | Having Disease) + P(Not Having Disease) × P(Testing positive | Not Having Disease ) = 0.0001×0.99 + 0.9999×0.01 =0.010098
<u>from </u><u>(1) </u><u>we have the equation</u>:
P(Having Disease|Testing Positive)=P(Having Disease) × P(Testing Positive | Having Disease)/ P(Testing Positive) = 0.0001×0.99/0.010098≈0.0098
Thus, the probability that you have the disease, given that your test is positive is ≈ 0.0098
Answer:
A service department that I would create for a product from Appliance Warehouse is:
The washing machines service department.
Explanation:
Appliance Warehouse is one of the most important if not the most important washer and drying machine leasing company. So, they require a very good service department for them. Thus, I would develop one very innovative service department with an online application that would allow performing this job with an outsourcing labor force making it cheaper or us. The recruitment would be based on the different washing machine brands certification as a service and repair provider technician. We would also select them based on consumer service orientation and will create a database on the platform. This platform would be categorized by county, let us offer it for our selected local service outsource technicians. We would make an agreement with them for the database in the form of a services contract that would set a diagnosis and a services fee. We would also have an inventory of machine parts and we would only charge 20% of the cost of the services. We would establish the fee and we would also sell the costumer the fee for the parts used to fix the machines.
Answer:
Lock Control
Explanation:
Lock Control can used to keep you from inadvertently moving controls while working in the IDE.You can do that by clicking on the form and then click Lock control in format menu.
In visual studio you have to go to properties and and select Locked property and select True.So that it can be locked and you can unlock them also from here.
Answer:
public static int square(int num){
return num*num;
}
Explanation:
Using the Java Programming Language, we declare a function named square as stated in the question, the return type of the function is stated as integer. And the the parameter it receives is an integer number called num.
To get the square of the number we use the expression num*num, and return the the squared value. When the function is called, it will receive one argument (an integer value), it will calculate the square and return it.