Computer Science, asked by bnischal91, 9 months ago

String myStringVar = “Good Morning”; String mySecondVar = “I love CS”; myStringVar = mySecondVar; System.out.println(myStringVar); Its output please????

Answers

Answered by Vyomsingh
1

Answer:

Output:

I love CS

Reason:-

You store the string of variable mySecondVar in myStringVar.

there value get change...

Answered by anindyaadhikari13
63

Output is: I love CS.

<marquee>Hope it helps you...Please mark this answer as the brainliest and follow me..</marquee>

Similar questions