Answer:
120 %.
Step-by-step explanation:
That is (1032 * 100) / 860 %
= 120 %
Answer:
5/8
Step-by-step explanation:
For palarell lines, slope are equal.
slope of first line = (y2 - y1)/(x2 - x1) = (-7 - 9)/(-12 - 8) = -16/-20 = 4/5
equation of a line passing through a point is given by: y - y1 = m(x - x1); where (x1, y1) = (-5, -15) and m = 4/5.
Therefore equation of the line is y - (-15) = 4/5(x - (-5))
y + 15 = 4/5(x + 5)
<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>