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
Jessy Suvan
Q #17) What is the difference between Function and Stored procedure?
Ans: Stored Procedure: A Stored procedure is always used to perform a specific task. It can return zero, one or more value. It can have both Input and Output Parameters. Exception handling can be done using a try-catch block. A function can be called from a Procedure. Functions: Functions must return a single value. It can only have the input parameter. Exception handling cannot be done using a try-catch block. A Stored procedure cannot be called from a function.
Post Reply