Skip to main content

How to Trace your Lost Mobile with the IMEI Number



Hi friends , i think now a days mobiles are one of the parts of life.World is just running on a race, where they cannot afford to waste time and sometimes as little Careless.This Happens to our Phones also, so Do not worry When you lost your Mobile, here is the best way to trace it.
  • Our phone numbers are assigned with the Unique Identification Number.
  • The Number which can be used to track any time is the International Mobile Equipment Identity number (IMEI)
  • For the IMEI number on your mobile just type *#06# in your Handset or it is Given behind the mobile.It is advisable to note this number
1) First after the Handset theft or loss , File an FIR in the Police station

2) Then Along with FIR and IMEI number, Go to the User Service Provider and Give to them



3) Now The user Service Provider will trace your mobile number by this IMEI number.

4) Even the Phone uses other sim, or if it do not have sim, still it is Traceable

5) Then the Police will able to help for finding and giving to you safely
6) User can Able to block the phone that no one can use them after it is lost by contacting user service provider
7) To Quick access for your lost phone, Do this actions immediately after your Phone is lost or stolen
8) So Be careful in your IMEI number, Make sure to Keep it as a Secret

Comments

Popular Posts

How to find out Max Salary from each department

You can find maximum salary for each department by grouping all records by DeptId and then using MAX() function to calculate maximum salary in each group or each department. SQL Query: SELECT DeptID, MAX(Salary) FROM Employee  GROUP BY DeptID. This questions become more interesting if Interviewer will ask you to print department name instead of department id, in that case you need to join Employee table with Department using foreign key DeptID, make sure you do LEFT or RIGHT OUTER JOIN to include departments without any employee as well.  Here is the query