Match the type of data with the correct location Select One
     Match the type of data with the correct location  Select One  Match With  Uninitialized global variables rightarrow A data section  initialized global variables rightarrow B stack  program instructions rightarrow C BSS  automatic local variables rightarrow D heap  persistent local or non-local variables rightarrow E text section  F memory mapped I/O region 
  
  Solution
Unitialized Global variables ------- BSS Initialized Global Variables------ data section program instructions------- text section automatic local variables------ stack persistent local or non local variables----- heap
