Question: Consider the following code segment: String str = I am ; str + = 1 0 + 3 ; String age = years old;

Consider the following code segment:
String str = "I am";
str +=10+3;
String age = "years old";
System.out.println(str + age);
What is printed as a result of executing the code segment?
Consider the following code segment:
String str = "I am";
str +=10+3;
String age = "years old";
System.out.println(str + age);
What is printed as a result of executing the code segment?
I am 13 years old
I am 103 years old
I am103years old
years oldI am 13
I am13years old

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!