Can servlet class declare constructor with ServletConfig object as an argument?
False
True
NA
NA
NA
Correct Option: A
ServletConfig object is created after the constructor is called and before init() is called. So, servlet init parameters cannot be accessed in the constructor.