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 calloc function in C programming?

calloc is memory allocation function that is normally used for requesting memory space at run time 4 storing data types such as arrays and structures. calloc allocates multiple blocks of storage, each of the same size and then sets all bytes to zero, and then returns a pointer to the memory.

Ada Byrons contribution to mathematics?

Ada Byron, the daughter of Lord Byron, was credited as being the worlds first computer programmer. Her work with Charles Cabbage on the Analytical Engine included the first algorithm to be used by a machine.

Do web development and mobile application development relate How?

If we go through the column with web and mobile app on both sides, you will only find the differences no similarities. But still, few things make their UX similar. So here, in this answer, we will discuss the similarities apart from all the significant differences between web apps and mobile apps. First, let us tell you that a mobile app is also termed a native app to the operating system it is being downloaded on.

The user interface

So, firstly we will talk about the user interface or UI of the application, whether it is a web or mobile app. You will find that the theme, colour combination, and navigation of the app are not changes while developing mobile from the web. Because a business has its own identity, the brand's theme will remain the same to represent significance. This is how the user experience is found nearly the same on both web and mobile applications.

The Programming

As far as coding, this gives a preliminary idea about similar technology and programming language used in web and mobile app development. For example, Java, C++, C#, PHP, Python, etc., are few languages that are common between web and mobile app development.

So, after knowing the similarities between web and mobile app, you might still be confused about choosing one between web and mobile applications. Reach AppSquadz software, the leading web and mobile app Development Company, to know more and opt for the best services.

What is emycin in artificial intelligence?

EMYCIN is a derived version of MYCIN which was an expert system developed during the 1970s for administering right antibiotics to patients suffering from bacterial infections.

EMYCIN ( Empty MYCIN ) is actually a general expert system shell created by removing some unnecessary domains of knowledge from the MYCIN program itself.

This was done so , so that other knowledge engineers could built similar programs using the same expert system technology that MYCIN used.

What is the 2 ways to store data in memory?

You did not provide enough information to answer your question. Please clarify.

What is Java Container Class?

A class that is used to contain other java objects. They contain methods for adding and removing objects, as well as ways to iterate through them. They tend to differ mostly by how the objects are referenced (by key or no), by how fast their various methods execute, and by how much memory the container uses. Examples include: java.util.Vector java.util.Hashtable java.util.HashSet

What is the namespaces in Net framework?

They are(simply put) the things that you import....

EXAMPLE:

VB

Import (namespace)

C#

Using (namespace)

What is net masking?

subnet maskis the network address plis the bit reseived to identfying subnetworking. a mask used to determine what subnet an IP address belongto.An IP address has two components, the network address and the host address. sub netting enables the network administrator to futher divde the host part of the address into two or more subnet.

What is krxd.net?

It appears to be part of Krux. Krux is a data management company whose services not only includes data security but also (and this is where krxd comes in) visitor tracking and monetization services (i.e. using your personal information to generate custom tailored ads that are then shown to you).

What is called the standard database query language supported by all relational databases?

SQL stands for Structured Query Language. It is fairly standard but implementations generally have non-standard parts. These are usually to do with how data storage is specified, options to aid performance and extra things thought useful that aren't specified int the ANSI standard specification for SQL.

Who invented .net framework platform?

Microsoft started development on the .NET Framework in the late 1990s originally under the name of Next Generation Windows Services (NGWS). By late 2000 the first beta versions of .NET 1.0 were released.[1]

What is an method in oops?

1) Function

2) Which will excute particular methof/function

Where is net kritterz?

Net Kritterz is a game that Greg Heffley plays in "Diary of a Wimpy Kid Cabin Fever".

What is wrong with rayne.hellawack.net?

i believe the creator could not keep up the pay for the website so he had to shut it down.

Is vbnet a SOA programming language or Object Oriented Programming Language?

Visual Basic is an Object oriented programing language, like C++. A good example of an SOA program language is C#. can you explain with reasons........? i agree with you .... I want to confirm the reason why it is so ...

How can you sort a given array in vbnet?

Use the built-in Array.Sort function.

Dim myData() As Integer = {1, 6, 9, 89, 8, 7, 4, 6, 6, 123, 142, 45, 45, 489, 4989}

Array.Sort(myData) Module Module1

Sub Main()

Dim Deck() As PlayingCard = New PlayingCard(99) {}

Dim i As Integer

Dim r As Random = New Random

For i = 0 To 99 'randomize the array

Deck(i) = New PlayingCard(r.Next(PlayingCard.CARDVALUE.Ace, PlayingCard.CARDVALUE.King + 1), r.Next(PlayingCard.CARDSUIT.Spades, PlayingCard.CARDSUIT.Diamonds + 1))

Next i

PlayingCard.AcesHigh = True

Array.Sort(Deck)

For i = 0 To 99

Console.WriteLine(Deck(i))

Next i

Console.ReadLine()

End Sub

End Module

What is difference in assembly in net and com object?

A .Net assembly uses a manifest to specify the contents of the assembly, be they code and/or resources. They also do not require registering with the Windows machine. A COM object publishes its contents via classid's or progid's to the Windows Registry. COM objects use Reference Counting to manage their memory, and will deterministically clean their memory resources when the reference count reaches zero. .Net assemblies are garbage collected, and their memory reclamation is non-deterministic (meaning, don't make any assumptions on when resources will be cleaned up.) COM objects can have different threading models. .Net objects can only have "Single Threaded Apartment" threading model (I think... you might want to look that up before you use it on your homework assignment).

How can you secure web services methods in .net?

You can transmit the web services using SSL. This will require you to use a digital certificate, and transmit and receive the webservice calls over port 443, using HTTPS.