When you inherit a protected class-level variable, who is it
available to?
Answer Posted / amitgupta
class in the same name space
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is asenumerable in c#?
what is the purpose of using statement in c#
What is xpath in c#?
What is concatenation and when should it be used?
What is the difference between add and addrange in c#?
What is the use of tuple in c#?
What is the difference between a function and a method?
What are nested classes in c#?
Which property of the textbox cannot be changed at runtime?
Explain the difference between a struct and a class?
What is overloading in c#?
Is c# front end or back end?
These questions were asked me in a technical interview: •If we deploy an application on multiple server (like database server, web server) then, each request should be redirected to proper server, then how you will handle it in your code? •How security pinholes will be handled in an application? •What things should be considered while writing a web application? •How will you do load/performance testing of web application? Which framework you will use for it? •How will you implement a cache for results which require a DB access? Please let me know how to write an web application considering all these points. I am not so much aware of architechural design of web application. Your guidelines will be helpful.
What is stringreader in c#?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }