Aufgabe 3

Welche der folgenden Typenumwandlungen sind implizit, explizit oder nicht erlaubt?

byte a = 0;short b = 4;
int c = 8;long d = 123;
float e = 2134.24f;double f = 12341324.42;
boolean g = true;char h = 'H';

implizitexplizitnicht erlaubt
b = a;
d = g;
c = h;
e = b;
g = e;
d = e;
e = a;
h = c;
g = h;
b = f;