Skip to main content

Formatting Nokia Series 60 mobiles


If your Nokia mobile has following symptoms then you can format it at home
1) The phone switches off after showing the Nokia logo.
2) If some malcious software attacks your mobile, destroys your mobile information, and slows down your mobile.
3) If your mobile displays the error similar to contact service center blah blah blah.........

  All of us, who have the Nokia mobiles suffer from the software problems. So, we need to take the mobile to the Nokia Care. If our mobile goes out of the warranty then we need to give much money to the Nokia Care.
So, I am going to unveil you the secret of formatting the mobile.
To know if your mobile lies in series 60,then use this link
http://en.wikipedia.org/wiki/S60_(software_platform)

Follow the following steps :
1) Switch off the phone.
2) Press the following key combination until the phone starts and hold it until the timezone selection menu doesn't appear
    Switch on Button + Call button + 3 + *
3) If your mobile is touchscreen then use the following keys
     Switch on Button + Call Button + Call End button (red button) + Menu Button
4)  If the timezone selection menu doesn't appear then restart the phone again and repeat the procedure.
5) Enter the details and start the phone.

Note :
 1) This procedure may remove your all data,contacts,installed apps and everything in your mobile.So, take care while doing.
 2) Fully Charge your battery.

Comments

Popular posts from this blog

C programs to create pyramid structures

Q1.  Write a C program to create pyramid structure as shown below : 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 Code: //Author : Lakshmikant A. Deshpande #include<stdio.h> #include<stdlib.h> void main() { int i=1,j=5; for(i=1;i<=5;i++) { for(j=1;j<=i;j++) printf("%d ",j); printf("\n"); } } Q2.  Write a C program to create pyramid structure as shown below :     1      1 2     1 2 3  1 2 3 4 1 2 3 4 5 Code: //Author : Lakshmikant A. Deshpande #include<stdio.h> #include<stdlib.h> void main() { int spaces=4; int i,j,k; for(i=1;i<=5;i++) { for(k=0;k<spaces;k++) //Print spaces printf(" "); for(j=1;j<=i;j++) { printf("%d ",j); } for(k=0;k<spaces;k++) //Print ...

Enable Developer Tools in Moto G

As we know, Moto G is a fantastic and affordable phone by Motorola and Google !! Moto G surprisingly provides specifications that the phones with double price could provide. Are you too a nerd too, trying to explore your brand new phone ? You are at the right place. Initially developer options used to be visible. Later, with the release of Android 4.2 Jelly Bean (JB)  Google decided to hide those settings, because people used to play with developer tools, even if they did not know what those settings could lead. Follow the steps. 1. First of all get a Moto G, if you still don't have it... 2. Open settings. 3. Scroll down to bottom. 4. Touch on 'About Phone' 5. Tap on Build Number 7 times You are good to go... :)

Moto G Tips and Tricks

Hey there ! You got a Moto G ? Awesome. You bought the Motorola's most successful phone ever. It's the best phone you can get by spending  less than 200$. The Motorola and Google have done some magic over the phone and it's still difficult to find out what exactly they have done to bring down the price bar. Smart typing with Google Keyboard.   Google has introduced Google keyboard in Kitkat with gesture based typing which lets you type by just swiping your finger through the letters of intended word. It's an incredible way of typing which gets better and better as you go on using it. Google currently haven't added a facility to fetch slang words/popular acronyms from social networks. Getting help from Motorola   Motorola has provided a nice application for providing easy access to help. It is also one of the only few apps Motorola has added to keep the operating system more close to stock android. To access this service, just click on Help icon in launche...