FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

C#.NET INTERVIEW QUESTION & ANSWERS

96. What is the difference between Boolean literals and Integer literals?
  Boolean literals  » True and False are literals of the Boolean type that map to the true and false state, respectively.
Integer literals   » Used to write values of types Int, ulnt, long, and ulong.
Your Name Your Email-ID
Your Answer
 
97. How can we suppress a finalize method?
  GC. SuppressFinalize()
Your Name Your Email-ID
Your Answer
 
98. Where is the output of TextWriterTraceListener redirected?
  To the Console or a text file depending on the parameter passed to the constructor.
Your Name Your Email-ID
Your Answer
 
99. What does virtual keyword mean?
  They signify that method and property can be overridden.
Your Name Your Email-ID
Your Answer
 
100. Can events have access modifiers?
  Yes, you can have access modifiers in events. You can have events with the protected keyword, which will be accessible only to inherited classes. You can have private events only for objects in that class.
Your Name Your Email-ID
Your Answer