Searching for "IMEI"

Q:

The  Most  Favoured  Nation  (MFN)  Clause under   WTO   regimeis   based   on   the principle of 

A) non-discrimination between nations B) discrimination between nations
C) differential  treatment  between  locals and foreigners D) uniform tariff across commodities
 
Answer & Explanation Answer: A) non-discrimination between nations

Explanation:

In   Most-favoured-nation countries cannot normally discriminate between their trading partners.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

Q:

Write code snippet to retrieve IMEI number of Android phone?

Answer

TelephonyManager class can be used to get the IMEI number. It provides access to information about the telephony services on the device.


Code


        TelephonyManager mTelephonyMgr = (TelephonyManager)


        getSystemService(Context.TELEPHONY_SERVICE);


        String imei = mTelephonyMgr.getDeviceId();

Report Error

View answer Workspace Report Error Discuss