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.

500 Questions

Which one is better Dot Net Developer or Java Developer?

User Avatar

Asked by Wiki User

Since it relies on the particular project requirements and individual preferences, there is no definitive solution. Java and.NET are both stable, popular platforms with vibrant development communities. To make an informed choice, take into account variables including the project's scale, the infrastructure that already exists, and the team's level of experience.

How do you use gateway for sending SMS in web application using C sharp DotNet?

User Avatar

Asked by Wiki User

You can make an sms gateway using c#.net which uses serial port communication and AT commands

When was .net created?

User Avatar

Asked by Wiki User

.NET Framework was created on 2002-02-13.

What is mean by dll file in dot net?

User Avatar

Asked by Wiki User

DLL - Dynamic-link library is the compiled project code.

Computer work in binary code. Programmers write code in English.

The complier transforms the English written code into binary.

All of the pages of code the programmer writes are transformed into one file.

This file is named XXXXX.dll

What is the nature of conceptual framework?

User Avatar

Asked by Wiki User

Conceptual framework is used in research to outline possible causes of action or present a preferred approach to an idea or thought. There are altogether 5 conceptual frameworks.

What is the difference between sql server and ms sql 2000 database?

User Avatar

Asked by Wiki User

SQL Server is most often referred to as Microsoft SQL Server, but there is also a Sybase SQL Server which was originally created on UNIX in 1987. MS sql 2000 database, or Microsoft SQL Server 2000 is a database server product. So, when you ask what is the difference, I do not see a difference, they are one in the same. Unless your question is asking for the difference between the Sybase version and Microsoft version, or you are wanting to compare different versions of Microsoft SQL Sever. In which case, I think your question must be more specific. arnel... SQL stands for (Structured Query Language). A SQL server can cover a host of products. Oracle is a SQL server however when speaking of Oracle people usually refer to it is Oracle. The server in fact is a SQL server. Microsoft SQL server is often simply referred to as SQL Server not because they 'own' the product or anything, just because of the popularity. I can draw a parallel for you. When you own a SeaDoo watercraft (as I do) people will refer to it as a jetski, same with a Kawasaki, Polaris, or any other brand. The fact is that this name (JetSki) is used interchangable however the Kawasaki Standup model watercraft is the only true 'jetski'. Anyway there are many 'flavors' of SQL server (MYSQL, Oracle, MS SQL Server, Postgress SQL, just to name a few. You can find more information about SQL server, its history and some additional 'flavors' at this link: http://en.wikipedia.org/wiki/SQL Hope that helps. Jwilliamsoh http://jwilliamsoh.spaces.live.com/

What is a good earthlink net webmail?

User Avatar

Asked by Wiki User

I would recommend using your last name accompanied with the last two digits of your birth year. I've even seen some people that have used their first names accompanied by their zip code. If you do not want to use your name or birth year, you can also try a favorite book, movie or band you enjoy.

Is a super computer a personel computer?

User Avatar

Asked by Wiki User

No, "super computers" are so-called because of their capacity to perform enormous amounts of calculations which would exceed by far the demands of a normal computer or user. A fraction of a super computer's power would be more than enough to run any application that a normal user could dream of, so there would be no point in using it for normal purposes. It's kind of like having a car with a 3,000 horsepower jet engine on it- you really can't even use 1,000 horsepower for any normal driving so what would you do with even more?

How to contact with sbcglobal.net?

User Avatar

Asked by Wiki User

☎ Email Customer Helpline Number 1-888-720-8856; Email is a subsidiary of AT&T Email services that provide the users with access to their AT&T Email account. Ever since the collaboration of Email with the AT&T Email , many users find difficulty in accessing their account. Moreover, users cannot find the page where they can enter their credentials and login into their Email Mail Helpline Number. Apart from this, there are numerous issues that a user normally encounters in their Email . To address these issues, there is a dedicated team of professionals that aims to resolve all kinds of conflicts and problem related to the ☎ Email Customer Helpline Number 1-888-720-8856. For instance, all that requires from your end is to take their customer service and get rid of Email related problems for good.

☎ Email Customer Helpline Number 1-888-720-8856

In order to get permanently rid of the problems pertaining to, you should take the help of the experts who are well-equipped with the means to rectify the errors and issues with the Email . For example, you can simply call these experts on the ☎Email Customer Helpline Number 1-888-720-8856 to get the solution on time. Consequently, these trained technicians will use their cutting-edge IT tools and software to fix the bugs creating problems in your Email account.

What does national response framework do?

User Avatar

Asked by Wiki User

part of the larger national strategy for homeland security

Write a program to copy the contents of one file to another?

User Avatar

Asked by Wiki User

#include<stdio.h>

#include<conio.h>

int main(int x,char *a[])

{

FILE *fp1,*fp2;

fp1=fopen("input.txt","r");

fp2=fopen("output.txt","w");

while(!(feof(fp1)))

{

fputc(fgetc(fp1),fp2);

}

fclose(fp1);

fclose(fp2);

return 0;

}

What is the difference between a procedural language and declarative language?

User Avatar

Asked by Wiki User

Procedural is nothing but just using procedures to instrct te machine. The procedures provides a level of abstraction here.

Declarative means to program without specifying the steps involved clearly. It allows us not give the control flow.

ex - SQL is declarative as it does not need the control flow to be implemented.

SQL is also procedural as it works on procedure names that are predefined.

What is the maximum allowable segment length on a 1000base t newwork?

User Avatar

Asked by Wiki User

The range is effectively unlimited because multiple active components can extend the range to nearly any range.

How many byte is equal to 1kb?

User Avatar

Asked by Wiki User

To begin, a KB, is the abbreviation of the word Kilobyte. A byte is a basic unit of measurement of information storage in computer science. Kilo is a prefix in the SI system of units denoting 103, or 1,000. That being said, 1KB can be reffered to as being equal to 1,000 bytes. However, the exact amount is 1,024 bytes.

What does a dot net developer do?

User Avatar

Asked by Wiki User

his basic job is to create and handle websites

the important languages which are required are c sharp(c#) and vb

What is the expansion of asp?

User Avatar

Asked by Wiki User

Active server pages

How do you change net framework from 1.1 to 2.0?

User Avatar

Asked by Wiki User

Version 2.0 added and changed many things including:

* Full support for both the x64 and IA64 platforms * Support for generic types * Anonymous methods * Partial classes 2.0 also added the first version of the .NET Micro Framework.

What is hierarchical network model?

User Avatar

Asked by Wiki User

A kind of database management system that links

records together like a family tree such that each record type

has only one owner, e.g. an order is owned by only one

customer. Hierarchical structures were widely used in the

first mainframe database management systems. However, due

to their restrictions, they often cannot be used to relate

structures that exist in the real world.

Difference between byval and byref in net?

User Avatar

Asked by Wiki User

we can pass parameter in procedure and function two type one is Byval and other is byRef, in byval value Store in stack And byref store in Heap. in a Byval get value a predefind and userdefind by replica and copy of the value. but in byRef program access address of the Variable we can pass parameter in procedure and function two type one is Byval and other is byRef, in byval value Store in stack And byref store in Heap. in a Byval get value a predefind and userdefind by replica and copy of the value. but in byRef program access address of the Variable