If the IP address of a hop is 195.10.20.128/22.Calculate the value of HID. options are 10,8,12,none
Answers
Answer:
Firstly, let us see the difference between ++a , −−a , a++ and a−− .
++a is pre-increment, meaning increase first, then use.
−−a is pre-decrement, meaning decrease first, then use.
a++ is post-increment, meaning use first, then increase.
a−− is post-decrement, meaning use first, then decrease.
Now coming to the query:
Initially a=5
b=(++a)+(−−a)+(a−−)+(++a)
Step 1: ++a : Value of a is first increased, then used, ie, ++5=6 . First place value is 6 , and now a=6 .
Step 2: −− a : Value of a is first decreased, then used, ie, −−6 =5 . Second place value is 5 , and now a=5 .
Step 3: a−− : Value of a is first used, then decreased, ie, 5−− =5 . Third place value is 5 , and now a=4 .
Step 4: ++a : Value of a is first increased, then used, ie, ++4=5 . Fourth place value is 5 , and now a=5 .
Placing respective values in equation:
b=6+5+5+5
b=21