Answer:
A) 5x - 2y = 12
B) 3x + 2y = 36 Adding both equations eliminates "y"
8x = 48
x = 6 Putting x=6 into equation B we get
3*6 + 2y = 36
2y = 18
y = 9
Step-by-step explanation:
The correct answer ids 100% answer choice D
Answer:
l think that the answer is 56576
You would use the distributive property to solve the equation to remove exponets then to get your final equation.
<span>This is an java command program.
String 1 is stands for str1= '' forest '' accepted within quote marks.
String 2 is stands for str1= '' school'' accepted within quote marks
the command compareto will cause the output will display as shown below :
str1.compareto(str2); when run this command
we will get the output like this ;
forest
school
==================================================
the model program is like this;
{
String str1 = " forest " ;
String str2 = "school ";
System.out.println();
System.out.println("String 1: " + str1);
System.out.println("String 2: " + str2);</span>