Data Type Java

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