ZeroFrost85531 ZeroFrost85531 15-05-2024 Computers and Technology Answered Suppose that str1, str2, and str3 are string variables. After the following statements execute, the value of str3 is "____".str1 = "abc";str2 = "xyz";str3 = str1 + '-' + str2;A) abcB) xyzC) abc-xyzD) xyz-abc