Paying it in full month over month.
Answer:
Explanation:
Two ways of interpreting this question
(I) Shifting all the bits along with the choosen four,
in that case it will be i1>>2;
(ii) Just shifting the choosen four bits and keeping the remaining as it is.
It is equivalent to replacing the first four bits of i1 with i1>>2. let us call N = i1, and M = i1>>2.
max = ~0 //All one's
//1's through position 4, then all zeros
left = max - ((1<<4) - 1);
So we just have zeros between bits one to four and other are one.
Now final step;
(N&left) | m
Answer:
mkdir -m 770 sales
Explanation:
The command mkdir is used to create a directory and the attribute or flag
-m is used to assign permissions on create a folder.
Example:
mkdir -m 770 sales
Create a folder with permissions 770 with name sales