Bishesh Gautam asked a question
There is, for sure, effect of gravity on fire. We know for a fact that fires on Earth are "pointy" while those in zero-gravity are "round". This is because fire is simply glowing gas. Gas is matter and matter has weight. For a body to have weight, gravity must influence it in some way. 
16 Thanks
2 Answers
Diwas Pandit asked a question

Any vector directed in two dimensions can be thought of as having two different components. The component of a single vector describes the influence of that vector in a given direction.

2 Thanks
2 Answers
Bishesh Gautam asked a question

Dextrorotatory and dextrorotation are terms used in chemistry to describe the direction in which a substance rotates plane-polarized light. When a substance is said to be dextrorotatory, it means that it rotates plane-polarized light to the right or clockwise direction, whereas when it is levorotatory, it rotates plane-polarized light to the left or counterclockwise direction.

The terms "dextrorotatory" and "levorotatory" come from the Latin words "dexter" meaning "right" and "lævus" meaning...

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
Close Open App