import java.lang.Math;
double number = 16.0;
double squareRoot = Math.sqrt(number);
import java.lang.reflect.Method;
String className = "java.lang.String";
String methodName = "toUpperCase";
Class<?> stringClass = Class.forName(className);
Method method = stringClass.getMethod(methodName);
String result = (String) method.invoke("hello world");