Answer:
90 mL oil
210 g onions
1,350 g potatoes
1,500 mL milk
Step-by-step explanation:
You would just multiply each thing by 3, because the original recipe is for 5 but he wants to make it for 15, which is 3 times the original
Answer:
8/5
Step-by-step explanation:
Answer:
Step-by-step explanation:

Answer:
Option B) is a continuous probability distribution
Step-by-step explanation:
Properties of a normal probability distribution:
- The mean, mode and median of the data is same.
- It is a continuous probability distribution.
- The area under the curve is 1.
- The probability that any random variable X at a particular value is zero.
Thus, from the properties of normal distribution, the correct answer is:
Option B) is a continuous probability distribution
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}