Examveda
Examveda

In which area of memory, the system stores parameters and local variables whenever a method is invoked?

A. Heap

B. Storage Area

C. Stack

D. Array

Answer: Option C


This Question Belongs to Java Program >> Constructors And Methods

Join The Discussion

Comments ( 2 )

  1. Sabeel Khan
    Sabeel Khan :
    6 years ago

    the local variables and the parameters are always stored in stack segment whereas the references are created at heap segments.

  2. Ankit Pandey
    Ankit Pandey :
    6 years ago

    in stack the operation is push and pop . so how it is possible .

Related Questions on Constructors and Methods

What is a constructor in Java?

A. A special method to create instances of classes

B. A method used for mathematical calculations

C. A method to perform string manipulations

D. An exception handling mechanism