In Java declarations always allocate memory A True B FalseSo
     In Java, declarations always allocate memory.  A. True.  B. False. 
  
  Solution
In java the declaration of the variable doesn\'t mean allocate memory but means this variable can hold a reference of an object with the same type of its class(or subclass) later.
so in my view according to the above line i wll say strongly the answer is false

