answersLogoWhite

0

📱

.NET Programming

.NET Programming involves the use of the .NET Framework, a software framework for Microsoft Windows operating systems. The framework supports several programming languages. The .NET library is available to all the programming languages that .NET supports.

607 Questions

What is the National Response framework principles?

Provide the structure and mechanisms to ensure effective Federal support of State, tribal, and local related activities.

In .NET is CLR a process or a thread?

Process ....

it is responsible for managing the execution of the .NET programs , it is the same as JVM is for JAVA programs...

How do you use net office?

NETOffice is a web based project management application which helps in colloboration, task management, assignment, tracking, approval etc.

What is the function of CTS?

The Common Type System (CTS) defines how types are declared, used, and managed in the runtime. It is an important for Language Interoperability.

The CTS performs the following functions:

l Establishes a common framework that enables cross-language integration, type safety, and high performance code execution.

l Provides an object-oriented model.

l Defines rules that languages must follow, so that different languages can interact with each

other.

Classification of types

The CTS supports two categories:

1. Value types

2. Reference types

The following diagram illustrates type classification described in above paragraphs.

Figure 1.11 : Type Classification

Value types directly stores data in the variable. Value types can be built-in type, user-defined types, or enumerations.

Reference types store a reference to the data's memory address. Reference types can be selfdescribing types, pointer types, or interface types. Self-describing types are further split into arrays and class types. The class types are user-defined classes, boxed value types, and delegates.

What is difference between Delegate and Event in Net?

In .NET, a delegate is a type that represents references to methods with a specific signature, allowing methods to be passed as parameters or assigned to variables. An event, on the other hand, is a specialized delegate that is used to provide notifications to clients when something happens, encapsulating the delegate and allowing for a publisher-subscriber model. While delegates can be invoked directly, events provide a layer of abstraction and encapsulation, ensuring that subscribers can only register or unregister their interest without invoking the event directly. This enhances encapsulation and helps prevent unintended method calls.

What is web service who writes it and how it works?

  1. A web service is a service that is available for use over the internet. "Servers" are called such because they provide "services." Don't be confused by someone pointing at a computer and calling it a "server", strictly speaking this is incorrect even though it is a vernacular used nearly everywhere. What the person means is that computer runs server software that provides services over a network.
  2. As for who writes it, there is no definitive answer other than "the programmer/s". As there are far too many web services and programmers of them out there to discuss.
  3. Similarly for how it works, it depends on the specific service you want to discuss and since there isn't one named there are too many out there to mention.

What is .net as in the ending of a web address?

If you are talking about the ending of an online web address .net means that that website is a network.

.com is commmercial, .edu is education, .gov is government, .net is network

.NET is both a business strategy from Microsoft and its collection of programming support for what are known as web services the ability to use the Web rather than your own computer for various services.

When was MIN Test Framework created?

MIN Test Framework was created on 2009-12-10.

What is the default accessibility of a delegate in C sharp.net?

It depends on the context (stand alone, within or outside of a class). Because it is context sensitive, I prefer to declare it the accessibility explicitly to avoid the confusion.

What is Common Language Specification (CLS)?

CLS is a set of basic rules, which must be followed by each .NET language to be a .NET- compliant language. It enables interoperability between two .NET-compliant languages. CLS is a subset of CTS; therefore, the languages supported by CLS can use each other's class libraries similar to their own. Application programming interfaces (APIs), which are designed by following the rules defined in CLS can be used by all .NET-compliant languages.

Why has the Lexile Framework for Reading been criticised?

The Lexile Framework for Reading has been criticized for limiting children's reading choices and steering them away from books they may be interested in. The system for determining a book's level is also flawed.

What is dynamic programming?

Dynamic programming is a technique for solving problem and come up an algorithm. Dynamic programming divide the problem into subparts and then solve the subparts and use the solutions of the subparts to come to a solution.The main difference b/w dynamic programming and divide and conquer design technique is that the partial solutions are stored in dynamic programming but are not stored and used in divide and conquer technique.

What is strategic framework?

http://www.clearpathusa.com/services/strategic-framework/

What is exception handling in object oriented languages?

Exception is a event which can interrupt a normal flow of your program. In other way, exception is a abnormal condition which can occur during the execution of a program. Yes , we can handle exceptions through try, catch, finally, throw and throws.

What are the improvements made in CAS in .NET 4.0?

The CAS mechanism in .NET is used to control and configure the ability of managed code. Earlier, as this policy was applicable for only native applications, the security guarantee was limited. Therefore, developers used to look for alternating solutions, such as operating system-level solutions. This problem was solved in .NET Framework 4 by turning off the machine-wide security. The shared and hosted Web applications can now run more securely. The security policy in .NET Framework 4 has been simplified using the transparency model. This model allows you to run the Web applications without concerning about the CAS policies.

As a result of security policy changes in .NET Framework 4.0, you may encounter compilation warnings and runtime exceptions, if your try to use the obsolete CAS policy types and members either implicitly or explicitly. However, you can avoid the warnings and errors by using the configuration element in the runtime settings schema to opt into the obsolete CAS policy behavior.

Is .NET platform-independent?

.NET is Platform Dependent in light of the fact that once the code is composed it is consented into Microsoft Intermediate Language(MSIL) code which is autonomous of stage yet it is half ordered code,then Common Language Runtime(CLR) change over it into gadget particular code i.e it is stage dependent.(MSIL is send to JIT through CLR.

komiktechnologies.com

What is Difference between if statement and select case statement in vb.net?

They are both conditional logic statements. The Select Case statement just happens to have a much more clean form when it comes to more than two cases.

Example of If..Then...Else:

If intVar = 123 Then

myStr = "123"

Else

myStr = "456"

End If

Example of Select Case:

Select Case intVar

Case 123

myStr = "123"

Case 456

myStr = "456"

Case Else

myStr = "789"

End Select

How do you write addition of two number in asp.net using windows application?

we r using 3 textboxes and ond one result one then we can write this code like

int firstNumber, secondNumber, result;

firstNumber = Convert.ToInt32(txtFirstNumber.Text.Trim());

secondNumber = Convert.ToInt32(txtSecondNumber.Text.Trim());

result = firstNumber + secondNumber;

txtResult.Text = Convert.ToString(result);

What are shared classes in net?

Publicly defined classes

eg, "Public class"

What is code4green does?

http://www.Code4Green.com is a FREE online code generation website that helps programmers around the world with their repetitive tasks in C#, SQL, ASP.Net, VB.Net, Java and other cool technologies. In doing so, it helps our planet by planting more trees as more and more lines of code are generated.

Different between theoritical framework from conceptual framework?

A theoretical framework provides a structured lens through which to analyze relationships between variables, often grounded in established theories and principles. In contrast, a conceptual framework outlines the specific concepts, variables, and their interconnections relevant to a particular study, serving as a blueprint for research design. While the theoretical framework is broader and rooted in existing literature, the conceptual framework is more tailored to the specific context and goals of the research. Both frameworks guide the research process but serve different purposes in framing the study.