Which layer executed first among these Application
layer,Buisness layer or Data Base Layer?
Answer Posted / amitit06
Ans:- I am not sure but acc to me the sequence is like:
Application layer-->Buisness layer-->Data Base Layer.
Thanks
Amit
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
Explain About sn.exe
What is access specifier in c#?
What are the types of methods in c#?
Explain async and await?
Is c# easier than javascript?
List down the differences between “dispose” and “finalize” methods 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; } }
What is difference between write and writeline?
What is difference between managed and unmanaged code?
What is the root element of an xml file?
Why we use oops in c#?
What are custom exceptions? Why do we need them?
Why we use anonymous methods in c#?
What is difference between c and c sharp?
Can a struct be null?