What is the difference between returning iqueryable vs ienumerable?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

Is string nullable in c#?

0 Answers  


What is get set in c#?

0 Answers  


What is the default value of boolean variable?

0 Answers  


What is an int in c#?

0 Answers  


What are the benefits of using generics?

0 Answers  






What is the default value of object in c#?

0 Answers  


What kind of the information stored inside the assembly?

0 Answers   CitiusTech,


What is the default value of guid in c#?

0 Answers  


What is the difference between ref and out parameters in c#?

0 Answers  


If a class is having 4 variables namely type double,type integer,type string,type decimal. If we create an instance of that class those variables which gets into this instance are value types or reference types?

4 Answers   Kanbay,


Method1() { int a=0, b=0, c=0; Monitor.Enter(this) c = 12; b = 3; a = c/b Moniter.Exit(this) } Method1() { int a=0, b=0, c=0; c = 12; b = 3; lock(this){ a = c/b } } Choose correct answer. a. Upon completion, Method1 and Method2 release the lock b. Upon Comletion, Method1 release the lcok and Method2 not. c. Upon Completion, Method2 release the lock and Method1 not. d. Upon Completion, neither Method1 or Method to release the lock.

1 Answers  


Explain the accessibility modifier protected internal?

0 Answers  


Categories