Answer:
44
Step-by-step explanation:
The sum of the ratios is 6 + 2 + 3 = 11
Let b = total number of boots sold last week
If 24 football boots are sold, the equation representing this =
6/11 x b = 24
To solve for b, divide both sides by 11/6
b = 44 = total number of boots sold last week
12/12 possibility for getting a number on a dice
With 2 dice, there would be 24 possible outcomes (double 12)
Answer:
x + |x| = 2x
Step-by-step explanation:
if the number is more than 0 or greater, then if you add it to itself, it will be equal to the value of two of the previous number. Hope this helps
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;
}