The vertical angles are equal to each other, that is, one of the one-sided corners will be 116°.
The sum of the one-sided angles is 180°, which means: 4x+116 = 180°
4x = 180-116 => 4x = 64°
x = 64/4 = 16°.
The sum of two adjacent angles is 180°. which means, that: 2x-3y = 180-64 = 116°
2x-3y = 116°
-2x+3y = -116
-32+3y = -116
3y = -116-(-32)
3y = -84
y = -84/3 => y = -28.
If the mean of the data set is 32.6. Then the number of pages he read in 5 days is 163.
<h3>What is Mean?</h3>
Mean is simply defined as the average of the given set of numbers. The mean is considered as one of the measures of central tendencies in statistics. The mean is said to be an arithmetic mean. It is the ratio of the sum of the observation to the total number of observations.
Han recorded the number of pages that he read each day for five days.
If the mean of the data set is 32.6 pages. Then the total number of the pages he read till now, will be
Let the total number of the pages be x. Then we have

More about the mean link is given below.
brainly.com/question/521501
#SPJ1
Answer:
The closet equivalent of the ratio of 'a' to 'c' is:

Step-by-step explanation:
Given
i.e.
a=0.63x
i.e.
c=3/8x
Hence,


Thus, the closet equivalent of the ratio of 'a' to 'c' is:

Answer: A
Step-by-step explanation:
Answer:
//The class called "Solution" is declared
public class Solution {
//Main method which signify the beginning of program execution
public static void main(String[] args) {
//myInt variable of type Integer is declared
Integer myInt;
// An object of type Integer is declared with initial value of 1
Integer newInt = new Integer(1);
// The value of the new declared and assigned object is displayed to the user
System.out.println(newInt);
// The new declared object is assigned to the reference variable myInt
myInt = newInt;
// The value of myInt is displayed to the user
System.out.println(myInt);
}
}
Step-by-step explanation: