It’s B because it equals -8 when simplified which is a rational number
Answer:
30 sweets
Step-by-step explanation:
From the above question
The ratio is given as:
Karan : Preeti
2:3
The sum of the proportion = 2 + 3 = 5
Total number of sweets = 50 sweets
The number of sweets Preeti will get is calculated as:
3/5 × 50 sweets
= 30 Sweets
Therefore, the number of sweets Preeti will get is 30 sweets
Each bracelet is $5, this can be represented as 5b. (Where b is number of bracelets)
Each necklace is $8, this can be represented as 8n. (Where n is number of necklaces)
We know that the total money raised needs to be at least $100, but it can also be more than that.
So we know that 8n+5b will be greater than or equal too 100.
8n+5b ≥ 100
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.