The Short Answer:
Sunlight reaches Earth's atmosphere and is scattered in all directions by all the gases and particles in the air. Blue light is scattered more than the other colors because it travels as shorter, smaller waves. This is why we see a blue sky most of the time.
11 Thanks
3 Answers
If a vector A is multiplied by a real number (say n), the vector of same nature is obtained but its magnitude is n times that of A.
2 Thanks
2 Answers
#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
0 Claps
1 Comments
5 Claps
0 Comments

Great my son!
You've been truly inspiration, dai! Congratulations to you and all of us.