What does the following code display? String str = "Antelope Country"; String mystery = ""; for (int i = 0; i < str.leng
Posted: Tue Jul 05, 2022 10:25 am
What does the following code display? String str = "Antelope Country"; String mystery = ""; for (int i = 0; i < str.length(); i++) mystery str.charAt(i) + mystery; = System.out.println(mystery); Select one A. Antelope Country OB. yrtnuoc epoletnA OC. epoletnA yrtnuoc OD. Nothing, this is an error