answersLogoWhite

0


Best Answer

A telephone area code is numeric data, but in some cases it may be more appropriate to store it as a text field because many countries quote telephone area codes including the trunk prefix 0. For example, Liverpool, England, is in UK area code 0151. Also, it is sometimes more appropriate in countries that have variable-length area codes to sort them lexically, so that 031, 0321, 0322, 0325, and 033 would appear in that order.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Anonymous

Lvl 1
3y ago

interval

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What type of variable is a telephone area code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the informal definition of a area code?

An area code is a numeric prefix identifying telephone numbers in a particular part of a country, or identifying a particular carrier or type of telephone service.


What would be the best variable type for the area of a circle in square inches?

double


What are data type qualifiers?

In programming languages, a type qualifier indicates the special properties of a variable. Type qualifiers can be used for code optimization and for finding defects. In C/C++ one of the popular type qualifiers is the const qualifire. It is used to fix the value of a variable after the variable is initialized.


Code to declare a socket type variable?

Windows:#include SOCKET s;Other:int s;


Is there a code for gurgle that you type in at the secret code area in moshi monsters?

code for gurgle


What type business is area code 647?

Area code 647 is one of the area codes for the city of Toronto, Canada. There are thousands of businesses there.


What is a variable which respect to a computer program?

In a computer program, a variable is a named placeholder for a value of type T. This allows for generic problem solutions, which can then be applied to different values V of that variable.For example, a computer program can be designed to compute the circumference of a circle using the formula 2 * 3.14159 * R, where R is a variable of type float. At runtime, this code can execute for any value of R, and produce the corresponding value of the circumference.Unlike simple variable as they are common in elementary mathematics, a variable's type T in a computer program does not have to be of a numeric type, and can be arbitrarily complex. For example, one type T1 could be unsigned int, supporting whole (natural) positive numbers, while another type T2 could be a student's record complete with name, birthday and telephone number.


What is different between a definition and declaration of a variable?

A declaration and definition of a variable are nearly synonymous, especially as it is found in source code. However, the concepts are separate. The definition of a variable may include variable name, type, scope, operating range, and initial value(s). Program documentation includes only the definition of a variable; not the declaration. It defines the meaning and use of a variable. Whereas the declaration of a variable indicates to the compiler/interpreter that the name should be recognized as a variable. Understand that when the variable declaration is given in source code it may include the definition, though not always. In some languages a variable may be declared and then defined later as to type, operating range, et al.


What is the city that has 459 area code?

The area code 459 is actually located in Mexico. However, if you are receiving phone calls from a number with this area code, most likely it is some type of scam.


What state has the code 305?

305 is the area code for Key West, Florida. Or did you mean a different type of code?


What type of variable is affected by the independent variable?

The Dependent Variable


How do you get rid of a 'Right operand of assignment does not have a compatible pointer type' warning?

Depends on your code. Post it, along with your variable declarations.