To copy and paste a line i use the following method
C-a - beginning of line
#save the line to kill-ring using kill-line(this is faster than marking,
# move to end of line and C-w)
C-k - kill-line
C-/ - undo kill-line
# move point to required line
C-p or C-n or C-s (search for the nearest line where the paste must be done)
C-y # paste the line
Is there more efficent method than this. In vim just type yy, navigate and p does the job