Convert Characters to Upper Case
public class Main { public static void main(String[] args) { String str = "this is a test"; str = str.toUpperCase(); System.out.println(str); } } //THIS IS A TEST
true