Laxman Khatri about 1 year ago
0 Claps
1 Comments
SONU NIGAM SAH

Quality of life refers to the overall well-being, satisfaction, and happiness that an individual or a community experiences in various aspects of their lives.

Nikas Ghimire asked a question


#include<stdio.h>

#include<conio.h>

#include<string.h>


int main() {

int i, nextTerm;

int t1 = 2, t2 = 2;

nextTerm = t1+t2;


printf("%d, %d, ", t1, t2);

for (i = 3; i <= 10; ++i) {

printf("%d, ", nextTerm);

t1 = t2;

t2 = nextTerm;

nextTerm = t1 + t2;

}


return 0;

}


2 Thanks
2 Answers
Bishesh Gautam asked a question

Here, the given equation of parabola is y2= 8x.

The equation of tangent to the parabola y2=8x is,

y= mx + 2/m

This tangent passes through the point (-2, 3)

So, 3 = -2m + 2/m

or, 3m + 2m2 = 2

or, 2m2+3m - 2= 0

or, 2m2 + (4 - 1)m -2 = 0

or, 2m2 + 4m - m - 2 = 0

or, 2m(m + 2) - 1(m+2) = 0

or, (m + 2) (2m - 1) = 0

Either, Or,

m = -2 m = 1/2

Required angle is,




0 Thanks
2 Answers
Close Open App