Answer:
<h3>★ <u>11/</u><u>3</u><u>0</u> is the right answer. ★</h3>
Step-by-step explanation:
- Number of male students who got 'A' in the test is 11
- Number of female students who got 'A' in the test is 19
- Total students who got 'A' in the test is 30
- Probability that the male student got an 'A' is P(A | male) = (Number of male students who got 'A' in the test)/(Number of total students who got 'A' in the test) = <em><u>11/</u></em><em><u>3</u></em><em><u>0</u></em>
Answer:
An improper fraction is always 1 or greater than 1. And, finally, a mixed number is a combination of a wholenumber and a proper fraction.In a proper fraction, the numerator is always less than the denominator. Examples ofproper fractions include and
The median is 76
explanation:
The median is the central number of a data set. Arrange data points from smallest to largest and locate the central number. This is the median. If there are 2 numbers in the middle, the median is the average of those 2 numbers.
Answer:
Multiply both sides by -2 and reverse the inequality symbol
Step-by-step explanation:
since it is division you want to make it multiplication so that you can get the answer easier
-1/2w<12
it cancels out the -1/2 than just multiply 12 and -2 you get -24
w > -24
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}