C# Interview Questions And Answers
Questions 96 explain static equal()method?
Questions 97 Write one code example for compile time binding and one for run time binding.
Answerclass
Answerpolymorphism
Questions 98 What happens when you encounter a continue statement inside for loop?
Answerloop will execute
Answermeans to continue executing next line
AnswerIt continues from the loop start again keeping same counter.
Questions 99 IS goto statement supported in C#?How about Java?
AnswerC# will support.. Java won't support
AnswerNO
AnswerGoto is supported in C# although not recommended. Not supported in java.
Questions 100 What optimization does the C# compiler perform when you use the optimize & compiler option?