1) mv data1 testdata/
2) mv data1 ../
3) ls letters
These are the *nix commands. You can find out more by looking at their man pages. You can get more info about the man subsystem by running: man man
Is this self advertising because its not a question so i have no answer for you and if i missed something on the website that was a question let me know
Answer:
java: error
C: false
Explanation:
In Java the compiler understand that you are trying to compare an integer (15) with a boolean (10 > 5) this generate the next error:
error: bad operand types for binary operator
In C the compiler convert (15 > 10 > 5) in (15>10) > (10>5) which is equal to TRUE > TRUE, the compiler can also read it as 1 > 1 (since 1 is TRUE and 0 is FALSE). like 1>1 is false then C program return false.