Answer:
Negative linear association.
Step-by-step explanation:
<h2>
Answer:</h2>
<h2>
cos theta= adjacent side/ hypotenuse</h2><h2 /><h2>
cos theta= adjacent side/ hypotenusecos 36= x/8</h2><h2 /><h2>
cos theta= adjacent side/ hypotenusecos 36= x/8√5+1/4 = x/8</h2><h2 /><h2>
cos theta= adjacent side/ hypotenuse </h2>
cos 36= x/8√5+1/4 = x/8
4.7 is the approximate answer
Step-by-step explanation:
You can see the full detailed explanation in the attached files
Answer:
Option B
y coordinate is 0
Step-by-step explanation:
We have in two dimension rectangular system of coordinates with two mutually perpendicular lines called x and y axis.
X axis is the horizontal line and y the vertical line, the point of intersection of these two lines is called origin with x=0: y=0
To the right of origin, positive values are marked and left negative. Similarly for y axis, above origin positive values and below negative values.
Thus we have along x axis, y values to be 0
Hence any point on x coordinate will be of the form (a,0) where a can be any real number
So option B is right
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}