
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.

Recently we're working to degrade accounts with 0 contributions from creator to learner. If you're a learner and very keen to be a creator, you must keep posting interesting questions and contact to admins from the Facebook Group of Mattrab Community. For being an admin, you must be in grade 12, either completed or recently enrolled, your notes, and all your records and contributions will be verified for that

#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;
}
Materials show varying behaviors based on their Poisson's ratio. High Poisson's ratio materials (near 0.5) contract significantly sideways when stretched and expand when compressed, seen in substances like rubber. Low Poisson's ratio materials (near 0) undergo minimal width change during axial deformation, typical of metals and common engineering materials.