InterviewSolution
Saved Bookmarks
| 1. |
Why Can Only 256 Bytes Be Moved From One Address To Another In A Mvc? |
|
Answer» LENGHT feild is 8 BITS so the DATA is stored in BINARY format so if we have all 8 bits set to 1 then the length will be 128+64+32+16+8+4+2+1 = 255.or 2^7+ 2^6+2^5...2^0 = 255. so the lenght is 256 . Lenght feild is 8 bits so the data is stored in binary format so if we have all 8 bits set to 1 then the length will be 128+64+32+16+8+4+2+1 = 255.or 2^7+ 2^6+2^5...2^0 = 255. so the lenght is 256 . |
|