InterviewSolution
Saved Bookmarks
| 1. |
State the output: string a = "Android app" ,b = "Bluetooth" ;string l = a.substring (3, 7).replace ('r','v');string m = b.substring (4). touppercase( ) ;System. out. pritnln( l );System. out. println( m ); |
| Answer» | |