Answer:
a. 10
b. 0.1
Step-by-step explanation:
a. The t-shirts comes in 5 sizes (Small,medium,large, extra large and extra extra large) and two colors orange and black. The total different type of shirts are 5*2=10 different type of t-shirts.Also if we make sample space of all shirts we can assess the total different type of t-shirts. sample space=S={small orange,medium orange,large orange,XL orange,XXL orange,small black,medium black,large black,XL black,XXL black}. n(S)=total different type of shirts=10.
b. P( large orange t-shirt)=n(large orange t-shirt)/n(S)=1/10=0.10.
The duma a term is the x interest
You would save $2447.40 for the emergency fund
Answer:
oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
Step-by-step explanation:
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;
}