JAMIA 2024 — Computer PYQJAMIA | Computer | 2024The size of a union is determined by the size of the ______Choose the correct answer:A. First member in the unionB. Last member in the unionC. Largest member in the union (Correct Answer)D. Sum of the sizes of all the membersCorrect Answer: Largest member in the unionExplanationThe Solution The size of a union is determined by the size of the largest member (plus any padding required for alignment). Mathematically, if a union has members m1,m2,…,mn, the size of the union S can be represented as: S≥max(size(m1),size(m2),…,size(mn)) AFirst member in the unionBLast member in the unionCLargest member in the unionDSum of the sizes of all the membersShow Answer SExplanationThe Solution The size of a union is determined by the size of the largest member (plus any padding required for alignment). Mathematically, if a union has members m1,m2,…,mn, the size of the union S can be represented as: S≥max(size(m1),size(m2),…,size(mn))