1.

Statement to convert the string '275' stored in a variable number to a numeric value.

Answer»

String s =“275”; 

int a = Integer.parseInt(s);



Discussion

No Comment Found

Related InterviewSolutions