Heap quiz questions

What is the location of parent node for any arbitary node i?
this question was in quiz , it showed the ans as floor[i/2] position . I think this is wrong

Hi
The answer seems correct to me. Remember the numbering starts from 1 and each node has two children… therefore the parent will always be at floor(i/2)…