Computer Applications
Find the output of the following program snippet:
String s= "7";
int t =Integer.parseInt(s);
t=t+1000;
System.out.println(t);
Java
Java Library Classes
18 Likes
Answer
1007
Working
Integer.parseInt() converts "7" into an int value i.e. the decimal number 7. t+1000 adds the number 7 to 1000 giving 1007 as the output.
Answered By
9 Likes
Related Questions
Write a program in Java to display the following pattern:
ABCDE
ABC
AWrite a program in Java to display the following pattern:
PRTV
PRT
PR
PWrite a program in Java to display the following pattern:
A*B*C*D*E*
A*B*C*D*
A*B*C*
A*B*
A*Write a program in Java to display the following pattern:
a a a a a
b b b b b
A A A A A
B B B B B