How .net CLR works with n-tier application

Answers were Sorted based on User's Feedback



How .net CLR works with n-tier application..

Answer / rafeeq

CLR does not have any tie up how we manage the application
,n-tier,3-tier ,what ever it may be,ClR task is to convert
the MSIL to machine code and manage memory
allocation,deallocation and other stuff at runtime.

Is This Answer Correct ?    27 Yes 1 No

How .net CLR works with n-tier application..

Answer / karvendhan

CLR does not have any tie up how we manage the application
,n-tier,3-tier ,what ever it may be,ClR task is to convert
the MSIL to machine code and manage memory
allocation,deallocation and other stuff at runtime.

Is This Answer Correct ?    9 Yes 2 No

How .net CLR works with n-tier application..

Answer / raman

actually clr(common language runtime) is the part of
framework that converts .cs or .dll file in machine code.It
properly is concerned with metadata part of assembly and
checks the assembled code logically

Is This Answer Correct ?    3 Yes 0 No

How .net CLR works with n-tier application..

Answer / vikas kumar gupta(magic soft)

.netCLR it is a part of .net framework and provide run time
environment now in n-tier application there are one web
server and multiple web services and database server and CLR
always reside at web server so it does not matter whether it
is n-tier application or any other application it will just
convert the MSIL code into machine code same as in 1-tier
application

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

You are using the try? catch block seen in the following code segment, but no exceptions are ever caught by the catch block. What is the problem? SqlConnection cn =new sqlConnection(strSQL); SqlDataSet ds; try { cn.open(); //perform the data processing steps ??.. } catch (OleDbException e) { ?.. } a) The exception class is wrong; it should be sqlErrors. b) The exception class is wrong; it should be sqlSyntaxExceptios. c) The exception class is wrong; it should be sqlExceptions. d) The exception class is wrong; it should be sqlExcptions.

2 Answers   Microsoft, Syntax Softtech,


if i have 1000 records and i want to access 20 ata time from SQL server, what will be the query?

9 Answers   Mind Tree,


when using personlization, how do you access over setting at runtime?

1 Answers  


Explain how can you debug your .net application?

0 Answers  


What is Runtime callable wrapper?

2 Answers  






What is state management in asp.net with example?

0 Answers  


What is a 401 redirect?

0 Answers  


To load your generated dataset with data which method do you invoke?

0 Answers   Siebel,


About CLS and CTS?

8 Answers   Microsoft, Syncfusion,


Your ASP.NET application displays sales data on a page. You want to improve performance by holding the page in memory on the server for one hour. You want to ensure that the page is flushed from memory after one hour, and that the page is re-created when the next request for the page is received. What should you do? A . Initialize a new instance of the Cache class in the Application.Start event handler. B . Initialize a new instance of the Timer class in the Page.Load event handler. C . Set the Duration attribute of the OutputCache directive in the page. D . In the Web.config file, set the timeout attribute of the sessionState element.

5 Answers   ADITI, Syntax Softtech,


Explain exception filters?

0 Answers  


Can one dll file contains the compiled code of more than one .net language?

0 Answers  


Categories