1) Explain about ASP.NET?
Microsoft introduced the .Net framework with the intention of bridging the gap in interoperability between applications. This framework aims at integrating various programming languages and services. The .NET offers a complete suite for developing and deploying applications.
Microsoft introduced the .Net framework with the intention of bridging the gap in interoperability between applications. This framework aims at integrating various programming languages and services. The .NET offers a complete suite for developing and deploying applications.
2) State the various features present in .NET?
It is designed to make significant improvements in code reuse, code specialization, resource management, Multilanguage development, security, deployment and administration. There are lots more features included in Microsoft .net which can be realized to a maximum potential with the language support.
It is designed to make significant improvements in code reuse, code specialization, resource management, Multilanguage development, security, deployment and administration. There are lots more features included in Microsoft .net which can be realized to a maximum potential with the language support.
3) Explain about .Net products?
Microsoft has already introduced visual studio.NET, which is a tool for developing .NET applications by using programming languages such as Visual Basic, Visual C#, and Visual C++. These products aim at allowing developers to create applications, which are capable of interacting seamlessly with each other.
Microsoft has already introduced visual studio.NET, which is a tool for developing .NET applications by using programming languages such as Visual Basic, Visual C#, and Visual C++. These products aim at allowing developers to create applications, which are capable of interacting seamlessly with each other.
4) Which platform does Microsoft .NET uses for exchanging data between applications?
.Net products use eXtensible markup language (XML) for describing and exchanging data between applications. It is a platform independent markup language. It allows computers to store data in a format, which can be interpreted by any other computer system. XML can be used to transfer structures data between heterogeneous systems.
.Net products use eXtensible markup language (XML) for describing and exchanging data between applications. It is a platform independent markup language. It allows computers to store data in a format, which can be interpreted by any other computer system. XML can be used to transfer structures data between heterogeneous systems.
5) Explain about .NET services?
.NET helps you to create software as web services. A web services is an application or business logic that is accessible through standard internet protocols such as HTTP and simple object access protocol. Users can subscribe to such a service and use it as long as they need it, regardless of the hardware and software platform.
.NET helps you to create software as web services. A web services is an application or business logic that is accessible through standard internet protocols such as HTTP and simple object access protocol. Users can subscribe to such a service and use it as long as they need it, regardless of the hardware and software platform.
6) Explain about .NET framework?
It is the foundation on which you design, develop and deploy applications. It is consistent and simplified programming model that helps you to easily build robust applications. It forms the core of the .NET infrastructure because it exists as a layer between the .NET applications and the underlying operating system.
It is the foundation on which you design, develop and deploy applications. It is consistent and simplified programming model that helps you to easily build robust applications. It forms the core of the .NET infrastructure because it exists as a layer between the .NET applications and the underlying operating system.
7) Explain about the Common language Runtime?
The CLR is one of the most essential components of the .NET framework. CLR is the environment where all programs using .NET technologies are executed. It provides services such as code compilation, memory allocation, and garbage collection. It translates the code into Intermediate language which helps interoperability of code.
The CLR is one of the most essential components of the .NET framework. CLR is the environment where all programs using .NET technologies are executed. It provides services such as code compilation, memory allocation, and garbage collection. It translates the code into Intermediate language which helps interoperability of code.
8) Explain about CLS?
CLS consists of a set of common rules followed by all the languages of the .NET framework. This set of rules is known as Common language specifications. CLS enables an object or application to interact with the objects or applications of other languages.
CLS consists of a set of common rules followed by all the languages of the .NET framework. This set of rules is known as Common language specifications. CLS enables an object or application to interact with the objects or applications of other languages.
9) Explain about CTS?
One of the specifications defined in CLS is common type system (CTs), which provides a type system that is common across all languages. CTS define how data types are declared, used and managed in the code at run time. The size of integer and long variables is the same across all CLs compliant programming languages.
One of the specifications defined in CLS is common type system (CTs), which provides a type system that is common across all languages. CTS define how data types are declared, used and managed in the code at run time. The size of integer and long variables is the same across all CLs compliant programming languages.
10) Explain the process of compilation in .NET?
When you compile a program in .NET, the conversion of source code to machine language happens in two stages. In the first stage, the compiler translates code into an IL instead of machine language or assembly language. In the second stage the conversion of IL to machine language is done at run time by the JIt compiler.
When you compile a program in .NET, the conversion of source code to machine language happens in two stages. In the first stage, the compiler translates code into an IL instead of machine language or assembly language. In the second stage the conversion of IL to machine language is done at run time by the JIt compiler.
11) Explain about managed heap?
A managed heap is a region of the memory that is available for program execution. If sufficient memory is not available on the managed heap, the garbage collection process is invoked. Whenever you create an object, the CLR allocates memory for the object from the managed heap.
A managed heap is a region of the memory that is available for program execution. If sufficient memory is not available on the managed heap, the garbage collection process is invoked. Whenever you create an object, the CLR allocates memory for the object from the managed heap.
12) Explain about consistent programming model in .NET framework?
The .NET Framework provides a common OOPs model across languages. This object model can be used in code to perform several tasks, such as reading from and writing to files, connecting to databases, and retrieving data.
The .NET Framework provides a common OOPs model across languages. This object model can be used in code to perform several tasks, such as reading from and writing to files, connecting to databases, and retrieving data.
13) Explain about Multi-Language integration?
.Net allows multiple languages to be integrated. It is possible to create a class in VC# that derives from a class implemented in VB.NET. To enable objects with each other regardless of the language use to develop them, a set of language features has been defined in CLS.
.Net allows multiple languages to be integrated. It is possible to create a class in VC# that derives from a class implemented in VB.NET. To enable objects with each other regardless of the language use to develop them, a set of language features has been defined in CLS.
14) Explain about Automatic resource management?
While creating an application, a programmer may be required to write code for managing resources such as files, memory, network connections, and database resources. If a programmer does not free these resources, the application may not execute properly. This process is done by CLR automatically.
While creating an application, a programmer may be required to write code for managing resources such as files, memory, network connections, and database resources. If a programmer does not free these resources, the application may not execute properly. This process is done by CLR automatically.
15) Explain about the features and elements present in Visual studio.NET IDE?
Elements present in Visual studio IDE are toolbars, solution explorer, code editor, output window, task list window, and class view window. In addition to these elements start page and project properties windows is also present.
Elements present in Visual studio IDE are toolbars, solution explorer, code editor, output window, task list window, and class view window. In addition to these elements start page and project properties windows is also present.
16) Explain about solution explorer window?
The solution explorer window lists the solution name, the project name, and all the classes that are used in the project. A particular file can be opened in a project by double clicking the file in the solution explorer window.
The solution explorer window lists the solution name, the project name, and all the classes that are used in the project. A particular file can be opened in a project by double clicking the file in the solution explorer window.
17) Explain about the Class view window?
The class view window displays the classes, methods, and properties associated with a particular file. They are displayed in a hierarchical tree-view depicting the containership of these items. When you double-click any one of the items in the Class view window, it brings up the code editor window for that item.
The class view window displays the classes, methods, and properties associated with a particular file. They are displayed in a hierarchical tree-view depicting the containership of these items. When you double-click any one of the items in the Class view window, it brings up the code editor window for that item.
0 comments:
Post a Comment