You need to design a Turing Machine that receives an input of a^n (a, aa, aaa, aaaa, aaaaa, aaaaaa, etc..., any a...a string) and decides if the length is odd or even. You should think of it as a question to decide: is the string length odd? then the answer would be YES or NO, if it's "NO" you imply that the length is even.
One answer I can imagine is, I'll explain with with an example (you do the formal design):
input: aaaaaaa (a^7)
>aaaaaaa_ #you start at the end and move to the left
^
>aaaaaaa #head is on an a
^
>aaaaaaY #write a yes
^
>aaaaaaY #move to the left
^
>aaaaaaY #head is on an a so, we write an N, go right, delete Y and move left twice
^
>aaaaaNY
^
>aaaaaNY
^
>aaaaaN_
^
>aaaaaN
^
>aaaaaN
^
Now you repeat the same process but with an Y (write an Y, move right, delete N, move left twice). After some steps you will have:
>aN #head on a, last write was N, so we write Y
^
>YN #go right
^
>YN #delete N
^
>Y_ #go left twice
^
>Y
^
>Y #now, head is on > (the beginning of the input) so we finished
^
>Y #move right twice and stop
^
>Y_
^
There, you got the answer Y to the question "is a^7's length ODD?"
Try the same idea with an even length and you should end up with
>N_
^
That's the idea I came up with, maybe you find a simpler machine, now you have to create the diagram or the tables to define it properly (this was just an example, not a definition)