Bijaya Rajbhandari asked a question

Asksionov thought of killing himself because he remembered all those harsh situations that he had faced in his life without committing any crime . Even his wife didn't  believe in him . He got frustrated by thinking all these painful situations that he was ready to kill himself.

1 Thanks
2 Answers
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
Diwas Pandit asked a question

No, if three vectors do not lie in a plane, they cannot give zero resultant.

Explanation:

Let A, B and C be three vectors. If they give zero resultant, then

     A+B+C=0

or, A= -(B+C)

Hence, they will produce zero resultant, if A is equal to negative of vector (B+C). The vector (B+C) lies in the plane of B and C. Hence, A will be equal to negative of (B+C) if AB and C all lie in a plane.


2 Thanks
2 Answers
Close Open App