two object files are linked together with the command line ld -o p main.o weight sum.o. consider the following statements concerning the relocated addresses of the different object file sections. the notation .section(object.o) refers to the .section (.text, .data, etc) address of the file object.o. (i) .data(weight sum.o) < .text(main.o) < .text(weight sum.o) (ii) .text(main.o) < .text(weight sum.o) < .data(weight sum.o) (iii) .text(main.o) < .data(main.o) < .data(weight sum.o) (iv) .data(weight sum.o) < .data(main.o) < .text(weight sum.o) (v) .data(main.o) < .bss(weight sum.o) < .bss(main.o) which of these statements are correct?
Select one: a. Only (i) and (iv) are correct b. Only (ii) is correct c.Only (ii) and (iii) are correct d. Only (v) is correct e.Only (ii), (ili) and ()are correct f. None of the above is correct