For the shaded bit all you need to do is 8.5 × 6.
if you are to get the other bit then do 8.5 × 8
if it is to be both then just do that and add them together
Answer:
D
Step-by-step explanation:
Boom
Answer:

Step-by-step explanation:
we know that
Using proportion

They used 1/4 of the chocolate chips for each pound
Hope this helps :p
NB- Solution is emboldened
import java.util.Scanner;
import java.util.Random;
public class RandomGenerateNumbers {
public static void main (String [] args) {
Random randGen = new Random();
int seedVal = 0;
seedVal = 4;
randGen.setSeed(seedVal);
System.out.println(randGen.nextInt(50) + 100);
System.out.println(randGen.nextInt(50) + 100);
return;
}
}