b) Constructor
c) Class
d) Method
Ans: b
48-An object can be created of type Room and assign its address to variable rl as_______
a) rl = new Room();
b) rl = Room() new;
c) rl = Class Room();
d) None of these
Ans: a
49-With empty parentheses without arguments, a ______ Constructor is called.
a) parameterized
b) default
c) null
d) Method
Ans: B
50-Observe the following Room r2 = new RoomO : - Variable r2 contains a______or
address of memory location where a new object is created.
a) Memory
b) Variable
c) Reference
d) None of these
Ans: C
51-The class determines only the_______of the variables.