What would be the value of "str" of the below program?
string str = "hello";
str.ToUpper().;
str.Insert(0,"WORLD);
what is the value now of str ?What would be the value of "str" of the below program?
string str = "hello";
str.ToUpper().;
str.Insert(0,"WORLD);
what is the value now of str ?
3 Answers