Biology Forums - Study Force

Science-Related Homework Help Computer Studies Topic started by: mononofu_id on Sep 9, 2018



Title: What will be displayed after the following statements are executed?
Post by: mononofu_id on Sep 9, 2018
What will be displayed after the following statements are executed?
int ans = 10;
int x = 65;
int y = 55;
if (x >= y)
{
     int ans = x + y;
}
System.out.println(ans);
a.10c.100
b.120d.The code contains an error and will not compile.


Title: What will be displayed after the following statements are executed?
Post by: cmt0730 on Sep 9, 2018
Content hidden