class Digits
public static void main()
{
int n=87;
int l=n%10;
int f=n/10;
if(l==f)
System.out.println("Digits are same");
else
System.out.println("Digits are different");
}
Answers
Answer:
1. The data type that lets you store alphabet, numbers and special characters on which<br />calculations can not be performed is<br />O String<br />Integer<br />Single<br />2. A control that lets you display non-editable text in a form is<br />D Text Box<br />Button<br />O Label<br />3. The component of the Visual Basic IDE that displays all files and components within th<br />current project is<br />Properties window<br />Solution Explorer<br />File Explorer<br />4. The component of the Visual Basic IDE where you create the interface of a form in<br />application is<br />Form Designer window Code Editor window Solution Explorer<br />5. The function in Visual Basic that lets you convert a text value into a number is<br />Number<br />Valo<br />Convert )<br />176
Explanation:
ɪ ʜᴏᴘᴇ ɪᴛ ɪꜱ ʜᴇʟᴘꜰᴜʟ ꜰᴏʀ ʏᴏᴜ
Answer:
"Digits are different. "