Home » C++ Programming » Questions and Answers » Question
  1. What does the data type defined by union will do?
    1. It allow one same portion of memory to be accessed as different data types
    2. It allow one different portion of memory to be accessed as different data types
    3. It allow one different portion of memory to be accessed as same data types
    4. It allow one same portion of memory to be accessed as same data types
    5. None of these
Correct Option: D

Union is used to define the data types of our choice and it will store the data type in one location make them accessible.



Your comments will be displayed only after manual approval.