Which of the following statements correctly describes the relation between an object and the instance variable it stores?
a.Each new object has its own distinctive set of instance variables b.Each object has a copy of the instance variables of its class c.the instance variable of each object are seperate from the variables of other objects d.The instance variables of each object are stored together with the variables of other objects Ans: a,b,c. 29) If no input parameters are specified in a method declaration then the declaration will include __. a.an empty set of parantheses b.the term void Ans: a.