anilsoman Answered 2 Years ago through
Quizzes | 5 Points
Option 2 is surely faster.
This is because, when you use String += something, then the value of string is copied to new instance every time because the string is immutable. So the code has to copy the value 10000 times or so and that too with growing...