Answer:
The graph that includes points (-3,-3) and (0,3)
Step-by-step explanation:
In the pictures attached, the options are shown.
The equation:
y+3=2(x+3)
has the point-slope form, which is:
y-y₁=m(x-x₁)
where (x₁, y₁) is a point on the line and <em>m</em> is its slope. This means that (-3,-3) is on the line. To know the y-intercept of the line, we have to replace x = 0 into the equation, as follows:
y+3=2(0+3)
y+3 = 6
y = 6 - 3
y = 3
Then, point (0, 3) is on the line.
Ksjdhrisgdfbvgigsdtr aerigtksjdbfkhg is the correct answer
idk
lol
We are asked to solve for the volume of the composite figures and the answer is the summation of the two volumes such as the volume of a triangular prism and volume of a rectangular prism. In order to solve this, we need to recall the following formulas:
the volume of triangular prism = 1/2* b*h*l and solving the volume, we have it:
the volume of triangular prism = 1/2 * 15* 16*20 = 3600 units³
the volume of rectangular prism = l*w*h and solving the volume, we have it:
the volume of rectangular prism = 20*15*12 = 2400 units³
The total volume of the composite figure is the summation of the two volumes such as:
total volume = 3600 + 2400
total volume = 6000 units²
The answer is 6,000 units².
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;
}
}