class Ideone{ public static void main (String[] args) throws java.lang.Exception { //lower bit to higher bit conversion //Implicit casting //No loss of data byte x = 4; int y = x; }}