first of all, it sounds like your instructor is playing a social r-e game on you
i wouldn't use my real birthday - lol
the first question tells me that he doesn't have a solid handle on how things are stored in memory
(1) Suppose your date of birth has to be stored in memory as a Hexadecimal integer Show its representation diagrammatically in
a. Little Endian Notation
b. Big Endian Notation
things that are stored in memory are always stored as binary
hexadecimal is merely a human-friendly way to view large binary values
and - he really doesn't tell you how your birthday is supposed to be encoded
but, i can guess what he wants to see
assuming your birthday is june 20, 1980 - we can store it as 19800620h
little endian
03E0h: 20h
03E1h: 06h
03E2h: 80h
03E3h: 19h
big endian
03E0h: 19h
03E1h: 80h
03E2h: 06h
03E3h: 20h
for the other questions.....
we have a no homework rule in the forum
however, we sometimes overlook the rule and help those who have shown considerable effort
so - if you at least try to write the code, we may be obliged to help