I would like to ask whether anyone knows of any true explanation for why the iPhone 5 starts at $199 in the US and £529 in the UK? That is more than a £400 discrepancy...

I would like to ask whether anyone knows of any true explanation for why the iPhone 5 starts at $199 in the US and £529 in the UK? That is more than a £400 discrepancy...
iPhones are duty free and even with a $50 shipping fee it would only come to £185.75 including VAT at the current exchange rate.

How much a month is the standard 24month contract with AT&T or one of the other American providers that makes the handset cost $199?
Here's the cheapest plans available from the big three:
The plans start there and can run up to $230/mo (for AT&T).

Similar Messages

  • Hello I would like to ask if someone knows how can I found my stolen iphone?

    Hello I would like to ask if someone knows how can I found my stolen iphone?

    The only way to locate/disable/erase any lost/stolen iPhone/iPod Touch is through Find My Phone or a similar app. However, this requires that Find My Phone be setup/activated, on your phone, before it was lost/stolen. You would then login at iCloud.com & try to locate it. This requires the phone be turned on & have an Internet connection. There is no other way to locate a lost/stolen iPhone. Apple can't/won't help you, nor will your carrier. Report the loss to the Police, your carrier & Insurance company. Change all of your passwords.
    If your carrier offers Blacklisting & they Blacklist the phone, it will be unusable as a phone.
    If locked with a passcode, and running iOS 7.0, then phone cannot be activated or the passcode removed without knowing your Apple iD/Password. It will be nothing but a useless paperweight.
    If not running iOS 7.0, the phone can be forced into recovery mode & restored.

  • Hi...i bought the new iphone 4 and would like to ask how can i transfer all my data from my old iphone to the new one?  If I will do "synchronization" through itunes with the old phone and the plug in the new one will that be the case?

    Hi...i bought the new iphone 4 and would like to ask how can i transfer all my data from my old iphone to the new one?  If I will do "synchronization" through itunes with the old phone and the plug in the new one will that be the case?

    Follow the instructions in this article to transfer your info: iPhone: Transferring information from your current iPhone to a new iPhone

  • Does anyone know of any Sun Classes for Java Cryptographic Extension -JCE ?

    Hello - anyone know of any Sun Classes for Java Cryptographic Extension? If so do you have the Sun class code/s?
    Edited by: Mister_Schoenfelder on Apr 17, 2009 11:31 AM

    Maybe this can be helpful?
    com.someone.DESEncrypter
    ======================
    package com.someone;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    import java.security.spec.AlgorithmParameterSpec;
    import java.security.spec.KeySpec;
    import javax.crypto.Cipher;
    import javax.crypto.IllegalBlockSizeException;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.SecretKeyFactory;
    import javax.crypto.spec.PBEKeySpec;
    import javax.crypto.spec.PBEParameterSpec;
    public class DESEncrypter {
        Cipher ecipher;
        Cipher dcipher;
        // 8-byte Salt
        byte[] salt = {
            (byte)0xA9, (byte)0x9B, (byte)0xC8, (byte)0x32,
            (byte)0x56, (byte)0x35, (byte)0xE3, (byte)0x03
        // Iteration count
        int iterationCount = 19;
        public DESEncrypter(String passPhrase) {
            try {
                // Create the key
                KeySpec keySpec = new PBEKeySpec(passPhrase.toCharArray(), salt, iterationCount);
                SecretKey key = SecretKeyFactory.getInstance(
                    "PBEWithMD5AndDES").generateSecret(keySpec);
                ecipher = Cipher.getInstance(key.getAlgorithm());
                dcipher = Cipher.getInstance(key.getAlgorithm());
                // Prepare the parameter to the ciphers
                AlgorithmParameterSpec paramSpec = new PBEParameterSpec(salt, iterationCount);
                // Create the ciphers
                ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
                dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
            } catch (java.security.InvalidAlgorithmParameterException e) {
                 e.printStackTrace();
            } catch (java.security.spec.InvalidKeySpecException e) {
                 e.printStackTrace();
            } catch (javax.crypto.NoSuchPaddingException e) {
                 e.printStackTrace();
            } catch (java.security.NoSuchAlgorithmException e) {
                 e.printStackTrace();
            } catch (java.security.InvalidKeyException e) {
                 e.printStackTrace();
        public DESEncrypter(SecretKey key) {
            try {
                ecipher = Cipher.getInstance("DES");
                dcipher = Cipher.getInstance("DES");
                ecipher.init(Cipher.ENCRYPT_MODE, key);
                dcipher.init(Cipher.DECRYPT_MODE, key);
            } catch (javax.crypto.NoSuchPaddingException e) {
                 e.printStackTrace();
            } catch (java.security.NoSuchAlgorithmException e) {
                 e.printStackTrace();
            } catch (java.security.InvalidKeyException e) {
                 e.printStackTrace();
        public String encrypt(byte[] data) {
             return encrypt(new sun.misc.BASE64Encoder().encode(data), false);
        public byte[] decryptData(String s) throws IOException {
             String str = decrypt(s, false);
             return new sun.misc.BASE64Decoder().decodeBuffer(str);
        public String encrypt(String str, boolean useUTF8) {
            try {
                // Encode the string into bytes using utf-8
                byte[] utf8 = useUTF8 ? str.getBytes("UTF8") : str.getBytes();
                // Encrypt
                byte[] enc = ecipher.doFinal(utf8);
                // Encode bytes to base64 to get a string
                return new sun.misc.BASE64Encoder().encode(enc);
            } catch (javax.crypto.BadPaddingException e) {
                 e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                 e.printStackTrace();
            } catch (UnsupportedEncodingException e) {
                 e.printStackTrace();
            } catch (java.io.IOException e) {
                 e.printStackTrace();
            return null;
        public String decrypt(String str, boolean useUTF8) {
            try {
                // Decode base64 to get bytes
                byte[] dec = new sun.misc.BASE64Decoder().decodeBuffer(str);
                // Decrypt
                byte[] utf8 = dcipher.doFinal(dec);
                // Decode using utf-8
                return useUTF8 ? new String(utf8, "UTF8") : new String(utf8);
            } catch (javax.crypto.BadPaddingException e) {
                 e.printStackTrace();
            } catch (IllegalBlockSizeException e) {
                 e.printStackTrace();
            } catch (UnsupportedEncodingException e) {
                 e.printStackTrace();
            } catch (java.io.IOException e) {
                 e.printStackTrace();
            return null;
         // Here is an example that uses the class
         public static void main(String[] args) {
             try {
                 // Generate a temporary key. In practice, you would save this key.
                 // See also e464 Encrypting with DES Using a Pass Phrase.
                 SecretKey key = KeyGenerator.getInstance("DES").generateKey();
                 // Create encrypter/decrypter class
                 DESEncrypter encrypter = new DESEncrypter(key);
                 // Encrypt
                 String encrypted = encrypter.encrypt("Don't tell anybody!", true);
                 // Decrypt
                 String decrypted = encrypter.decrypt(encrypted, true);
             } catch (Exception e) {
                  e.printStackTrace();
              try {
                  // Create encrypter/decrypter class
                  DESEncrypter encrypter = new DESEncrypter("My Pass Phrase!");
                  // Encrypt
                  String encrypted = encrypter.encrypt("Don't tell anybody!", true);
                  // Decrypt
                  String decrypted = encrypter.decrypt(encrypted, true);
              } catch (Exception e) {
                   e.printStackTrace();
    }

  • Does anyone know of any security protection for the IPad?

    Does anyone know of a security protection for the IPad?

    Yes, first get a good case for it to protect it from the elements, dropping, etc.
    Next, be sure to set up your free Find My iPad application for it in case it is lost or stolen.
    When carrying it around with you keep your eye on it at all times and beware of letting others walk away with it. They are very popular and stolen frequently.
    P.S. There are no iOS viruses, malware, etc. so no antivirus, antispyware, etc. apps are available.

  • I am suffering from an ipad hardware issue which I belive would be fixed by Apple and that my device would be changed. I would like to ask whether I would also be allowed to have the 4g version by paying the difference since mine is wi-fi only?

    Hi, I think I asked my question in the head-line. I am kinda new here.
    Thank you.

    A warranty replacement or out-of-warranty replacement will be of the same model, same colour, same capacity.

  • I would like to ask you how to fix this problem with firefox 4 final version: I open one firefox browser window and i leave it then i open another new window of firefox and it opens not homepage but the last closed tab. Thank you in advance

    could you please help me with this because it makes me to choose other browser

    Many thanks for your reply, Waka – guess you're right that it's a new add on or bust... I still find it odd that such a common UI feature across mobile browsers is unavailable in FF24 either as an option under settings or as an add-on. Surely, I'm not the only person who finds this puzzling?

  • HT4993 hello i would like to ask .. how much need to know mobile phone's code? thank you

    i would like to ask .. how much need to know mobile phone's code? thank you

    Did you already try the suggestions from this article?
    Symptoms
    In certain situations, iPhone may present one of the following symptoms:
    "Invalid SIM" or "No SIM Card installed" alert appears intermittently.
    Status bar displays "No Service", "No SIM" or "Searching" in a location with good network coverage.
    Resolution
    If you encounter any of the above symptoms on your iPhone, try these steps to attempt to resolve the issue:
    Update your iPhone to the latest version of iOS.
    Toggle Airplane mode On and Off.
    Try turning iPhone off and then on again.
    Check for a carrier settings update. Tap Settings > General > About. If an update is available, a prompt will appear.
    Remove the SIM Card and verify that it is a valid, carrier-manufactured SIM. Also verify that it is not damaged, worn, or modified. Then reinsert it.
    Restore the iPhone.
    copied from iPhone: Troubleshooting No Service or No SIM

  • Hello I would like to ask I have a problem with the Iphone 3gs 32 g I don install the ios 6.0 and now I can not activate the sim card .... I do not even know what's centenary advise me thank you

    Hello
    I would like to ask I have a problem with the Iphone 3gs 32 g
    I don install the ios 6.0 and now I can not activate the sim card .... I do not even know what's centenary advise me thank you

    Did you already try the suggestions from this article?
    Symptoms
    In certain situations, iPhone may present one of the following symptoms:
    "Invalid SIM" or "No SIM Card installed" alert appears intermittently.
    Status bar displays "No Service", "No SIM" or "Searching" in a location with good network coverage.
    Resolution
    If you encounter any of the above symptoms on your iPhone, try these steps to attempt to resolve the issue:
    Update your iPhone to the latest version of iOS.
    Toggle Airplane mode On and Off.
    Try turning iPhone off and then on again.
    Check for a carrier settings update. Tap Settings > General > About. If an update is available, a prompt will appear.
    Remove the SIM Card and verify that it is a valid, carrier-manufactured SIM. Also verify that it is not damaged, worn, or modified. Then reinsert it.
    Restore the iPhone.
    copied from iPhone: Troubleshooting No Service or No SIM

  • Hi , i'm new here and i would like to ask a question about iPad 2 . Well , actually when i hold my finger on any icon , its not jiggling , i need to fix the icons . May i know what can i do in this case ? thank you in advance ,

    Hi , i'm new here and i would like to ask a question about iPad 2 . Well , actually when i hold my finger on any icon , its not jiggling , i need to fix the icons . May i know what can i do in this case ? thank you in advance ,

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider.

  • 0 down vote favorite        I would like to ask the following question. I am using mac os x 10.9 maverics me quicktime player version 10.3. Can I trim a video recording without having to press the pause or save it as a file? Or can I add a new recording t

    0 down vote  favorite  
    I would like to ask the following question. I am using mac os x 10.9 maverics me quicktime player version 10.3. Can I trim a video recording without having to press the pause or save it as a file? Or can I add a new recording to a video file? Thanks in advance

    Well,
    I tried the "Internet Recovery" option and finally saw Mac OS X Mountain Lion's install page but after waiting 7 hours when I just thought its going to start installing, I got another progress bar with 36 hours remining time to download "Additional Components" then after progressing 2-3 hours, it shows "Unable to write installation something..., Contact Apple Care"
    Then I accidently rebooted the machine and now it seems Internet Recovery don't work anymore, it shows "support.apple.com - 40 something!" error, and finally when I tried to reboot using Recovery HD, I found it's gone as-well!
    To be honest, I don't know what to do now, I am and dissapointed... also I do not have any Apple Store nearby, there is an authorized country reseller almost 650/km far away from my residents and they even charges too high (like $250) for doing such repairs (as per phone conversation)
    If anyone have any idea or anything to help me with, please do share- I'd be eternally grateful!

  • Hi , I would like to ask you about purchase item transfer to ipad from mac book Itunes, But This message will be notified on screen this ipad could not be synced because this computer is no longer authorized with that purchased item on this ipad.

    Hi ,
    I would like to ask you about purchase item transfer to ipad from mac book Itunes, But This message will be notified on screen
    "This ipad could not be synced because this computer is no longer authorized with that purchased item on this ipad"
              I did authorized in the store, but still did not transfer to the mac. Could you please to tell me what should I do it? Please let me know that as soon as possible.
    Regards,
    Thank you

    The iPad is fine.  But the computer you're syncing with needs to be authorised with the Apple ID that was used to buy the material on the iPad.  You do this by picking the 'Authorize' item from the menu in iTunes and entering the account name and password.

  • I would like to ask if there is any possiblty to make call groups for i phone, i would like to ask if there is any possiblty to make call groups for i phone

    i would like to ask how to make call groups in apple phone

    Thank you for he answer! But I am living in Belize, C.A. The phone was donated by one of the members of the church for which I am the pastor. The phone is connected with T-MOBILE - USA. iPhone 5 iOS 6.1.4.  Please let me know if there is any way that the carrier would unlock it. For the phone is no longer in their country. I can surf the Internet but not use my carrier's service here in Belize.

  • I would like to ask if is possible to predict a future version of iOS can have the possibility to choose the color with which to write and be able to choose the character also...

    I would like to ask if is possible to predict a future version of iOS can have the possibility to choose the color with which to write and be able to choose the character also...

    Nobody here would have a crystal ball and know what Apple plans on doing in the furture.
    If you feel this feature is so important, you can let Apple know:
    www.apple.com/feedback

  • Hello, i would like to ask, when i'll buy Adobe Photoshop CC, will i have 1 Pc licence + 1 notebook licence or just 1 PC licence?  Thank you

    Hello, i would like to ask, when i'll buy Adobe Photoshop CC, will i have 1 Pc licence + 1 notebook licence or just 1 PC licence?
    Thank you

    Hi David,
    with the creative cloud subscription you can install the application on two machine, and it does not matter whether it is a notebook or pc .
    infact you can install the application on as many machine you like , but only two application can be run at the same time.

Maybe you are looking for

  • WHEN I LOGIN AS DIFFERENT USER, IT TAKES ME TO THE SAME PAGE WHERE THE PREV

    Hu Gurus, I log in to portal as user1 and go to a page and then log out of the portal. Then I try to login as user2, it takes me to the same page where the previous user was. It looks like it caches the page information. How can I avoid this. Please

  • ITunes isn't being detected by web browsers

    Hi. I have iTunes 9.1.1.12 and I'm on a Dell Inspiron E1505 with Windows 7, 32-bit. When I try to associate my Apple ID with iTunes Store and add PayPal as my payment method, I get the "You have successfully created a Billing Agreement." message, but

  • How to show images in jsp dynamic

    Hi all, I am beginner in web technology and am faced with some prob. I have a form in which user enters his unique id....n submits...then web server call ejb which fetches data for that unique id from DB and does some operation and also fetch photogr

  • 0x80072ee4 error in Store for any app after Windows 8.1 Upgrade

    Just in installed 8.1 directly from the Store (Win 8 Pro). Everything went smoothly. Now when I go into the Store and try and install (or update, as it says apps are broken) any app, it says "Something happened and your purchase can't be completed. E

  • Application Design

    I have two questions, (quasi-related - sorry if my newness causes me to mislable anything). 1). If I have multiple models and viewcontrollers such as: Model A ViewController A Model B ViewController B When I run the application for viewcontroller B,