+ 11
How to solve
I have to question... Please help me. I want to know how to solve this kind of question.. And answer for that?? If the address of a certain 4 byte word organized physical memory is 0x34AB, what is the address of the next word in the sequence ??
4 Respostas
+ 15
answer is 0x34AC..
but i don't know how to get this answer.. any one can help me.. plz...
+ 12
@shobhit
@Jay Matthews
Thank you....
but,
i cant understand that , how to solve...
please give me some instructions about that...
how to organize physical memory??
what is the address & word??
+ 7
just add 4 to 0x34AB that will be 0x34AF.
+ 2
the number 0x34AB is in hexadecimal. We know this because 0x usually in computers denotes that the number is hexadecimal. You can check it by converting 0x34AB to decimal add 4 to it, you will get 0x34AF.
Address is where a piece of data is stored. You may know about pointers which are used to store address. So int is of 4bytes, this means that when program will run 4bytes of data will be kept and all the instruction will be performed (as you may have defined in your program).