2 Claps
0 Comments

- Statement; true
- Statement; false
- Statement; true
- Interrogative sentence; not a statement
- Imperative sentence; not a statement
- Exclamatory sentence; not a statement
0 Thanks
2 Answers
4 Claps
0 Comments

8 Claps
1 Comments

Yes, a physical quantity can have magnitude and direction but still be a scalar if it doesn't obey the vector addition. An example is Electric Current which has magnitude and a fixed direction, but it does not follow vector laws of addition.
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

1 Thanks
2 Answers