PROGRAM AREA
The Highest Post
=
Statistics
Count
94
Avg
21.00
Min
21
Max
21
Related Topics
Q #1) What is .Net framework?
Q #2) What are the important components of .Net?
Q #3) What is CTS?
Q #4) What is CLR?
Q #5) What is CLS?
Q #6) What is JIT?
Q #7) What is MSIL?
Q #8) What is meant by Managed?
Q #9) How is a Managed code executed?
Q #10) What is ASP.Net?
Q #11) Explain State management in ASP .Net.
Q #12) What is an Assembly? What are the different types of Assemblies?
Q #13) Explain the different parts of an Assembly.
Q #14) What is an EXE and a DLL?
Q #15) What is Caching?
Q #17) What is the difference between Function and Stored procedure?
Q #18) Explain CAS (Code Access Security).
What are the differences between value types and reference types?
Explain GAC.
What is a pointer? Give an example.
What is the difference between reference and pointer?
What is White box testing?
What is Black Box Testing?
What is Gray Box Testing?
Could you explain services in Angular?
.What are the fundamental principles of OO programming?
Difference Between Put and Post
Difference between IEnumerable,IQueryable
What Is a Web Service?
What Is The Difference Between Web Services and APIs?
What is abstract Class?
test
Details
Peter Agyekum
Difference between IEnumerable,IQueryable
IEnumerable exists in System.Collections Namespace. 2. IEnumerable can move forward only over a collection, it can’t move backward and between the items. 3. IEnumerable is best to query data from in-memory collections like List, Array etc. 4. While query data from database, IEnumerable execute select query on server side, load data in-memory on client side and then filter data. 5. IEnumerable is suitable for LINQ to Object and LINQ to XML queries. 6. IEnumerable supports deferred execution. 7. IEnumerable doesn’t supports custom query. IQueryable exists in System.Linq Namespace. 2. IQueryable can move forward only over a collection, it can’t move backward and between the items. 3, IQueryable is best to query data from out-memory (like remote database, service) collections. 4. While query data from database, IQueryable execute select query on server side with all filters. 5. IQueryable is suitable for LINQ to SQL queries. 6. IQueryable supports deferred execution. 7. IQueryable supports custom query using CreateQuery and Execute methods.
Post Reply