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;
}
}
A wall is in the shape of a trapezoid and it can be divided into a rectangle and a triangle. A triangle is with angles 45°- 45° - 90°. The hypotenuse of that triangle is 13√2 ft.Using the 45° - 45° - 90° theorem, sides of that triangle are in the proportion:x : x : x√2, and since that x√2 = 13√2 ( hypotenuse ), x = 13.Therefore h = 13 ft.We can check it: c² = 13² + 13²,c² = 169 + 169c² = 338c = √ 338 = 13√2Answer: h = 13 ft
Answer: 0.73^9
Step-by-step explanation: Khan
Answer: Its B
Step-by-step explanation: trust me i had this test
Answer:
62 Sunday papers were sold
Step-by-step explanation:
Let x represent the number of Sunday papers sold. Then half that many, or x/2, is the number of Friday papers sold. The total revenue from the sales is the sum of products of quantity and price:
1.50 · x + 0.75 · (x/2) = 116.25
Multiplying by 2, this becomes ...
3.00x +0.75x = 232.50
3.75x = 232.50
Dividing by the coefficient of x gives ...
232.50/3.75 = x = 62
The number of Sunday newspapers sold is 62.