Bips and random numbers while making calls

When talking on the phone (iPhone 4 with iOS 6) I get beeping noises and random numbers generated at the top of the screen. Has anyone else encountered this? HELP!

I'm having the same issue and it has just started after the recent OS update. I have a 5S. Hope there is a fix, as it is terribly annoying.

Similar Messages

  • My iPhone4 struck while making call i cant see any icons??

    I had updated my phone to 4.3.5 after that,some times  My phone is going un responsive while making calls and taking calls. Please let me know the solution

    Did you try to reset the phone by holding the sleep and home button until the Apple logo comes back again? You will not lose any data doing a reset.

  • While making call I am not audible to other end

    While making call if I am using loudspeaker mode, I am not audible to other end

    Hi Vinzgenius,
    From you are describing, it sounds like an issue with the microphone. Take a look at the article below to troubleshoot the issue further. Check to make sure that you do not have any Bluetooth devices connected as well as restarting your iPhone.
    If your voice is too faint or sounds unclear using iPhone, or iPod touch
    http://support.apple.com/en-us/HT203792
    Hope this helps,
    -Norm G. 

  • My phone turns off while making calls

    my handset turns off while making calls, this happens quite often in a day, i restored the phone to factory setting, still didnt help...

    I've got the same issue. Really annoying. I was hoping ios5 was going to fix it, but it didn't .
    I would be really interested to hear if someone has found the cause of the problem

  • Audio quality with iPhone 5 new earphones is not good while making calls.

    I have new Factory Unlocked iPhone 5 with new earphones. These earphones are pretty smooth while listening to music. When it comes to making calls there is lot of noise background or a sort of amplifier sound and both the ends the audio is not clear. Did any one face this issue with new earphones with iPhone 5? if so, what is the solution for this? Can any one help me resolving this issue as I am the extensive user of iPhone 5 with new earphones? Thanks in advance.

    I have new Factory Unlocked iPhone 5 with new earphones. These earphones are pretty smooth while listening to music. When it comes to making calls there is lot of noise background or a sort of amplifier sound and both the ends the audio is not clear. Did any one face this issue with new earphones with iPhone 5? if so, what is the solution for this? Can any one help me resolving this issue as I am the extensive user of iPhone 5 with new earphones? Thanks in advance.

  • Generating random numbers, while excluding some numbers

    I want to generate random numbers between 1 and 13 (including 1 and 13), while excluding numbers 6 and 9
    Please tell me theres an easy fix to this issue --

    lemme know if it compiles
    import java.util.*;
    public class RandomNumber {
    public static void main( String[] args) {
    int numWins = 0;
    for( int i = 1; i < 101; i++) {
    boolean x = true, y = true;
    int number = 0;
    while(!x && !y && number != 6 && number != 9)
    number = 1 + (int) (Math.random() % 13);
    x = number >= 1;
    y = number <= 13;
    int number2 = 0;
    while(!x && !y && number2 != 6 && number2 != 9)
    number2 = 1 + (int) (Math.random() % 13);
    x = number2 >= 1;
    y = number2 <= 13;
    int number3 = 0;
    while(!x && !y && number3 != 6 && number3 != 9)
    number3 = 1 + (int) (Math.random() % 13);
    x = number3 >= 1;
    y = number3 <= 13;
    int number4 = 0;
    while(!x && !y && number4 != 6 && number4 != 9)
    number4 = 1 + (int) (Math.random() % 13);
    x = number4 >= 1;
    y = number4 <= 13;
    int DrawAgain = 2;
    if (number == DrawAgain) {
    System.out.println( "A Random number between 1 and 10: " + number);
    System.out.println( "A second Random number between 1 and 10: " + number2);
    if (number2 == 8) {
    System.out.println( " Piece made it home successfully");
    numWins++;
    if (number2 == DrawAgain) {
    System.out.println( "A third Random number between 1 and 10: " + number3);
    if (number2 == 7) {
    System.out.println( " Piece made it home successfully");
    numWins++;
    if (number3 == DrawAgain) {
    if (number4 == 7)
    System.out.println( " Piece made it home successfully");
    numWins++;
    else {
    System.out.println( "A Random number between 1 and 10: " + number);
    if (number == 10) {
    System.out.println( " Piece made it home successfully");
    numWins++;
    System.out.println(" Number of times piece made it home successfully " + numWins);
    }

  • Trouble while making calls

    Has anyone experienced while making a call that the iphone 3gs' screen goes black? This has already happened to me twice and i've only had the phone for 2 days. When it happens I can't even power the phone back on. I have to connect it to the charger to get the screen back. It has occurred a few other times when in the contact list also but the screen comes back up immediately.
    Is anyone else having issues with the contact list moving slowly when opened on the main screen? This is not a problem when I access it through my phone icon.

    The screen always goes black during a call. Like Tamara said, the proximity sensor switches it off to save battery.
    In comparison to the 2G, however, I got the impression that it a bit longer until the screen wakes up, or even sometimes hangs until it returns.
    I had the same black screen which wouldn't turn on for a couple of seconds after using voice mail.

  • While making call I can hear other person but other person can't hear me

    while making a call I can hear other person but they can't hear me

    i'm facing the same problem
    have you taken it to an istore yet?

  • Polymorphism and Random Numbers

    Im having issues correctly using random numbers in this program.All I want to do is: generate 4 random ints,and 3 random operators,then prints the results in a toString() method
    import java.util.Random;
    public class TestArithmetic2 {
        // evaluate (int / int) - (int * int)) = result
          //((8.0 / 8.0) - (2.0 * 5.0)) = -10.0
        public static void main(String[] args) {
            Node n = new RandomOps(
                new RandomOps(
                new RandomConst(), new RandomConst()),
                new RandomOps(new RandomConst(), new RandomConst()));
                   public Character RandomOperator(){
                        Random random = new Random();
                        //char array with characters
                        char[] chars = new char[]{'+','-','*','/'};
                        //Generate a random number
                        int r = randomChar.nextInt(chars.length);
                        //Get char at random index
                        char randomOps = chars[r];
                   public int RandomConstant(){
                        int randomConst = 1 + (int)(Math.random() * 20);
                   public String toString(){
                        return "(" + "(" + lChild.eval() + "-" + rChild.eval() + ")" + ")" + "=" n.eval();
            System.out.println(""+ n.eval());
    }

    Opps.Sorry.Here's everything that should help it compile.
    public class Node {
        public Node() {}
        public double eval() {
            System.out.println("Error: eval Node");
            return 0;
    import java.util.Random;
    public class TestArithmetic2 {
        // evaluate (int / int) - (int * int)) = result
          //((8.0 / 8.0) - (2.0 * 5.0)) = -10.0
        public static void main(String[] args) {
            Node n = new RandomOps(
                new RandomOps(
                new RandomConst(), new RandomConst()),
                new RandomOps(new RandomConst(), new RandomConst()));
                   public Character RandomOperator(){
                        Random random = new Random();
                        //char array with characters
                        char[] chars = new char[]{'+','-','*','/'};
                        //Generate a random number
                        int r = randomChar.nextInt(chars.length);
                        //Get char at random index
                        char randomOps = chars[r];
                   public int RandomConstant(){
                        int randomConst = 1 + (int)(Math.random() * 20);
                   public String toString(){
                        return "(" + "(" + lChild.eval() + "-" + rChild.eval() + ")" + ")" + "=" n.eval();
            System.out.println(""+ n.eval());
    public class Binop extends Node {
        protected Node lChild, rChild;
        public Binop(Node l, Node r) {
             lChild = l; rChild = r;
    }

  • Image loading and random numbers?

    Hi. I'm programming a text-based RPG using Swing.
    But I have two things to hamper my progress:
    1) I can't create random numbers
    2)I can't put images onto my window.
    Can anyone tell me a method to use do do these two things? Thanks.

    Hi. I'm programming a text-based RPG using Swing.
    But I have two things to hamper my progress:
    1) I can't create random numbersSee java.util.Random
    2)I can't put images onto my window.See Graphics.drawImage
    >
    Can anyone tell me a method to use do do these two
    things? Thanks.

  • My iPhone 4s is nearly worthless as a phone! As soon as I get on a call, the speaker will turn itself on and/or it dials random numbers while I'm trying to talk. Nope, I am not smooshing the keypad with my face. Any ideas?

    I forgot to add that FaceTime comes on, too. This has gotten so bad that I'm starting to hate using this phone. And I don't know if it's just a coincidence or not, but all of this craziness started around the time I upgraded to ios 6. (I got the phone brand-new in May and have been using it all of this time without this problem!)
    Also, my battery is draining down ridiculously fast since the upgrade!! I used to go DAYS between charges--now I have to plug it in every night!!!
    Why is this, and is there a fix?
    Any way to go back to the iOS I had before??
    Thanks!

    Restart your phone,hold the home button and the off button down till the apple symbol comes up. If that doesnt fix it , you need to do a restore in itunes by connecting to itunes , click on your phones name to the left, then click restore in the center of the screen and restore from backup.

  • Receiving text and email notifications while on call

    While I'm on a call, I receive text and email notifications (by a sound and a buzz). Is there a way to shut this off, as it's annoying when there are multiple messages coming through.

    Sure; go to settings > sounds and set "new text" and "new VM" to off.
    Of course this turns them off ALL the time; your only choice ( I am sure there is a hack for this oversight out there somewhere, though)
    This is not a business class smartphone ; its an iPhone.

  • E7 always restart while making call with Bluetooth...

    Has anybody experienced a problem that you can not make calls when qwerty keyboard is in use and Bluetooth to headset is activated because phone makes every time restart while setting up the voice call. It just first indicates that "disconnecting Bluetooth" and soon after that  restarts. And when you make it again and again it does the same.
    Hopefully this is going to be corrected in next E7 SW release.

    No, contrary to this I can pick up the phone, close the keyboard and no interruption takes place. However, I purchased my phone only two weeks ago and it might have the new SW already.
    Attraction wrote:
    Has anybody experienced a problem that you can not make calls when qwerty keyboard is in use and Bluetooth to headset is activated because phone makes every time restart while setting up the voice call. It just first indicates that "disconnecting Bluetooth" and soon after that  restarts. And when you make it again and again it does the same.
    Hopefully this is going to be corrected in next E7 SW release.

  • Capitalisation and Number mode while making new co...

    Is there any way to ensure that all new words have the first letter capitalised while typing the first name or last name when making new phonebook entries. That is because I generally enter several words to identify a contact such as his location or words i might remember him by and have to always press shift to capitalise the new word (the phonebook looks really disorganized with small letter words). Most phones have feature this by default.
    Also when entering a new contact, it mostly happens that I type the number first while taking it from a new person and then type his name later. However when I return to the Name section, the text entry is still in number mode and I have to change it manually to alphabet mode. Is there any way to do this automatically?
    Nokia E72-1 with RM-530, firmware 021.024

    Any solution for this yet?
    Nokia E72-1 with RM-530, firmware 021.024

  • Issue while making calls

    Hi Team,
    I am new to the community.I am using iPhone 5S for past 6 months and from India.
    Issue is depending upon the signal the network will be changing from 3G to LTE in my phone.
    While this is happening I am unable to make calls or receive calls.
    Only When i try for 6 to 10 times I am able to call.
    I tried all possible troubleshooting steps as suggested by Apple support,still no luck.
    I am still using IOS 7.Will an upgrade help me ??
    Please advise..

    Hi ananthj,
    Welcome to the forum!
    To isolate the case, you can try a different SIM card on your device. This is to check if you will encounter the same behavior. If it's still the same you can reset the phone to the factory setting. Just don't forget to back up your files first. Check the link below for the step-by-step procedure:
    http://www.windowsphone.com/en-us/how-to/wp7/basics/restore-a-backup-to-my-phone
    http://www.windowsphone.com/en-ph/how-to/wp8/basics/reset-my-phone
    Hope this resolves your issue. 

Maybe you are looking for

  • I have two add-ons that are enabled AND working but they are their icons are not displaying.

    I have Firebug and Adblock-Plus on my Firefox browser that are not displaying their normal shortcut buttons next to the search bar of Firefox. They were displaying fine yesterday, now today they are not displaying at all. They are installed and enabl

  • Locating files on an external drive

    My iTunes library is saved on an external drive as it's too big for my laptop's HD. I now also access it from a MacBook at work. I've had no problem accessing my library on Mac, but I now can't locate files from my PC. I get an '!' with every file, w

  • Test Stand crashing when running ESS

    Test Stand is crashing when running ESS and one of the test fails.  I am able to run that same test alone and there are no issues.  I am seeing the following messege in the windows event log. Faulting application testexec.exe, version 13.0.0.0, stamp

  • Adobe reader doesn't support hyperlinks to facebook

    hello everybody, Ive just created pdf file in "indesign" with hyperlink attached to object (linked to facebook page) adobe reader can't open this hyperlink why? I need to send this file to someone else that's why I need it work correctly.

  • Migrating from procmail to sieve, general question

    Hi, I want to migrate a Mail-Server from 10.5 (postfix, procmail, cyrus) to 10.6 (postfix, sieve, dovecot) and have a general question about sieve. The current setup on this server is quite complex with procmail-rules. But there is only ONE procmailr