Answer:$382
Step-by-step explanation:
To get The interest for 4 years
Amount*rate*time*duration
165*0.0275*12*4=$217
165+217=$382
90
55+65=120
there are 3 numbers and when you divide them it makes 70.
70 x 3 = 210
210 - 120 = 90
55 + 65 + 90 = 210
210 / 3 = 70
// Input value is usernum.
// This code snippet sums 1 + 3 + 5 + ... + usernum
// The answer is stored in the variable summedvalue.
N = (int) (usernum+1)/2; // maximum number of integers to be summed
int *v = malloc(N*sizeof(int)); // allocate storage for array v
// Calculate the number of loop counts and assign array v..
count = 0;
k = 1;
while (1) {
if (k>usernum) { // do not extend v beyond usernum
break;
}
v(count) = k; // assign an odd integer to v, including usenum
count++;
k += 2; // k is an odd number
if k>usernum { // handle usernum as odd or even
k = usernum;
}
}
n = count; // the size of array v.
// Calculate the sum in a for loop
summedvalue = 0; // initialize summedvalue
for (i=0; i<=n; i++) {
summedvalue += v(i);
}
Short Answer: A
Remark
C
Let's start with the false choices.
If they were colinear, then if AB + BC would = 5 or 1 depending on the location of C. Answer C is not correct.
B
a b and c do not form a right triangle. a^2 + b^2 ≠ c^2
2^2 + 3^2 = 13 not 16 (which is what c^2 or 4^2 = )
D
D is false. Equilateral triangles have 3 equal sides.
A is true. Since A and C are opposites and you have eliminated C by arguing A. Then A must be the answer.