answersLogoWhite

0

Where is STD code 02241?

Updated: 11/9/2022
User Avatar

Wiki User

10y ago

Best Answer

You need to specify the country, since several different countries use the term "STD code" to refer to domestic telephone area codes. See the Related Questions below for examples.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Where is STD code 02241?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Where in the US is ZIP Code 02241?

US postal ZIP Code 02241 is part of Boston, MA.


Where is STD code 0140?

In the UK, 0140 is an incomplete STD code (telephone area code); you need one more digit. In India, 0140 is an invalid STD code.


What is the telephone area code for Chascomus Argentina?

The telephone country code for Argentina is +54. The area code for Chascomus is 02241, or +54 2241 in international format.


What is a code number for France?

STD code for France is 0033


What is an STD used for?

I'm guessing that you mean STD = Subscriber Trunk Dialling (telephone area code) rather than STD = Sexually Transmitted Disease. STD code is another term used in some country for telephone area codes. The purpose of a telephone area code is to group telephone numbers by geographic area. In many cases, at least some calls to numbers with the same STD code as the caller can be dialed without the STD code, allowing shorter dialing sequences for many local calls.


What place in India has the std code 01409?

01409 area code Holsworthy


What is Mumbai phone no?

The std code starts with 022


What is the branch code of std bank nigel?

01224246


What is Alberton's Std Bank branch code?

01234245


What is the telephone exchange code of Kulti West Bengal?

THE STD CODE OF KULTI IS 0341.


Where is SBI prefix no in dd?

In India, each city and state is assigned a Subscribing Trunk Dalling (STD) code. Once the city and state is provided, a STD code can be matched for that location.


How do you construct the C plus plus program that will accept 10 integers number code?

#include<iostream> #include<conio.h> #include<string> int main() { std::cout << "Enter your 10 digit code: "; size_t code=0; size_t len=0; while (len<10) { char c = (char) _getch(); if (c=='0' && !code) // leading zero not permitted! continue; if (c>='0' && c<='9') { ++len; std::cout << c; c -= '0'; code *= 10; code += c; } } std::cout << "\n\nYou entered: " << code << '\n' << std::endl; }