1. Common data type conversion functions in JAVA
- Convert String to byte:
`Byte static byte parseByte(String s)`
- Convert byte to String:
`Byte static String toString(byte b)`
- Convert character to String:
`Character static String toString(char c)`
- Convert String to short:
`Short static short parseShort(String s)`