Answer:
The answer is "0.765 and 0.2353".
Step-by-step explanation:
Please find the complete question in the attached file.
In point a:
P(a substantive term only)
P(major health insurance only) 
P(both)
P(renewal) =P(insurance and renewal term only)+P (substantial and renewable health insurance only)+P (both and renew)

In point b:
In reality, the probability of having both life and major medical insurance provided the policyholder would renew next year


Ok so it would be 3/4 times 20
And you would get 15
I would draw a circle that adds up to 100
To do this multiply the 20 five times to get 100
Then multiply the 15 by the same number (5) to get 75
Draw a circle and shade in 75% of it and that is your answer
Yes it’s valid because he asked all 27 students In his art class
Answer:
d
Step-by-step explanation:
d
Answer:
and ![[6,9,8,7]](https://tex.z-dn.net/?f=%5B6%2C9%2C8%2C7%5D)
Step-by-step explanation:
GIVEN: an array of ten integers
.
TO FIND: If we partition this array using Quick sort's partition function and using
for the pivot. List the elements of the resulting array after the partition finishes.
SOLUTION:
quick sort is a divide and conquer algorithm in which an array is partitioned into sub-arrays about an pivot element by checking whether elements are greater than pivot or and then sub arrays are sorted recursively.
Here
is the pivot element.
two arrays will be created, in first array element less than or equal to pivot element are stored in other elements greater than pivot element are stored.
Starting from first element of array
elements in first array will be ![=[4,0,3,1,2,5]](https://tex.z-dn.net/?f=%3D%5B4%2C0%2C3%2C1%2C2%2C5%5D)
elements in second array will be ![=[6,9,8,7]](https://tex.z-dn.net/?f=%3D%5B6%2C9%2C8%2C7%5D)
Hence the resulting array after the partition finishes are
and ![[6,9,8,7]](https://tex.z-dn.net/?f=%5B6%2C9%2C8%2C7%5D)