Answer:
The answer is B.dividing 36.2 by ten thousands. Plz mark as the brainlyest answer.
Step-by-step explanation:
![\sqrt[7]{(7x^3y^2)^{2} } = \sqrt[7]{(49x^6y^4)}](https://tex.z-dn.net/?f=%20%5Csqrt%5B7%5D%7B%287x%5E3y%5E2%29%5E%7B2%7D%20%7D%20%3D%20%5Csqrt%5B7%5D%7B%2849x%5E6y%5E4%29%7D%20)
In a fractional exponent the denominator tells what root it is (7th root in this case) and the numerator tells what the value in the parenthesis is raised to (2nd power in this case)
Answer:
c
Step-by-step explanation:
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;
}
}
Try this option (see the attachment), if it is possible check result in other sources.