What is the .Net Framework 4? Flashcards
The .Net framework 4 provides three principal elements. What are they?
Common Language Runtime (CLR)
**Class Library **
Development Frameworks
What is the role of the Common Language Runtime (CLR)?
The CLR manages the execution of code and simplifies the development process by providing a robust and secure execution environment that provides such services as memory management, transactions, interprocess communications, multithreading and many other features.
What kind of development platform does the .Net Framework 4 provide?
The .Net Framework 4 provides a comprehensive development platform.
The .NET Framework 4 provides a comprehensive development platform that
offers a fast and efficient way to build what?
Applications and services
Fill in the blank.
The .NET Framework 4 provides a library of reusable _____ that developers can
use to build applications. The classes provide a foundation of common
functionality and constructs that help simplify application development and
remove the requirement for developers to constantly reinvent logic.
Classes
Fill in the blank:
The .NET Framework 4 provides a library of _____ classes that developers can
use to build applications. The classes provide a foundation of common
functionality and constructs that help simplify application development and
remove the requirement for developers to constantly reinvent logic.
reusable
Fill in the blank:
The .NET Framework 4 provides a library of reusable classes that developers can
use to build applications. The classes provide a foundation of _______ and constructs that help simplify application development and
remove the requirement for developers to constantly reinvent logic.
Common functionality
Fill in the blank:
The .NET Framework 4 provides a library of reusable classes that developers can
use to build applications. The classes provide a foundation of common
functionality and constructs that help simplify ______ _______ and
remove the requirement for developers to constantly reinvent logic.
application development
Fill in the blank:
The .NET Framework 4 provides a library of reusable classes that developers can
use to build applications. The classes provide a foundation of common
functionality and constructs that help simplify application development and
remove the requirement for developers to constantly reinvent ____.
logic
The .NET Framework 4 provides several development frameworks that you can
use to build common types of applications. These frameworks provide the
necessary components and infrastructure to get you started. The development
frameworks include:
[Name the development frameworks]
• ASP.NET. Enables you to build server-side Web applications.
• WPF. Enables you to build rich client applications.
• Windows Communication Foundation (WCF). Enables you to build secure and
reliable service-oriented applications.
• Windows Workflow Foundation (WF). Enables you to build workflow solutions
to fulfill the complex business requirements of modern organizations.
ASP.NET. Enables you to…
Build server-side Web applications.
WPF. Enables you to…
Build rich client applications.
Windows Communication Foundation (WCF). Enables you to…
Build secure and
reliable service-oriented applications.
Windows Workflow Foundation (WF). Enables you to…
Build workflow solutions
to fulfill the complex business requirements of modern organizations.
The CLR runs executable code that is generated by using a ____.
Compiler
Visual
Studio 2010 provides compilers for which 4 languages?
C++, Visual Basic, F#, and C#.
From where are compilers for other languages available?
Compilers for
other languages are available from a variety of third-party vendors.
C# is the language of choice for many developers. It uses a syntax that is very
similar to which three languages?
C, C++ and Java
The C# language has been standardized and is described by the __________________.
ECMA-334 C#
Language Specification
When you compile a Visual C# application by using Visual Studio 2010, the
compiler generates an ______ that the CLR can run. This file is called an assembly.
Executable file
When you compile a Visual C# application by using Visual Studio 2010, the
______ generates an executable file that the CLR can run. This file is called an assembly.
Compiler
When you compile a Visual C# application by using Visual Studio 2010, the
compiler generates an executable file that the ____ can run. This file is called an assembly.
CLR
When you compile a Visual C# application by using Visual Studio 2010, the
compiler generates an executable file that the CLR can run. This file is called an
_______.
Assembly.
An assembly contains code in an intermediate format called __________
Microsoft intermediate language (MSIL)
You can think of an assembly as a collection of ____ and _____ that work
together and form a logical unit of functionality. An assembly provides the CLR
with the information that it needs to be aware of type implementations.
Types and resources
An assembly can be of two types, what are they?
- An executable program
- A library that contains executable code that other programs can reuse. By using a library, developers can modularize the development of their applications into logical components.