automatic type conversion

Hey guys! i need some help with this question..

Describe what is meant by Automatic Type Conversion in the context of Java's numeric data types and contrast this with type casting. Using your definitions comment on the following assignments:

(a) byte i = 100;

(b) long l = i*3+4;

(c) double d = i*3.1+1/2;

(d) float f = 10.1;

[364 byte] By [fairydusta] at [2007-11-27 2:11:40]
# 1
Read this: http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html
DrLaszloJamfa at 2007-7-12 2:05:06 > top of Java-index,Java Essentials,Java Programming...
# 2
> comment on the following assignments:> > (a) byte i = 100;mwah.> (b) long l = i*3+4;mwah.> (c) double d = i*3.1+1/2;neh ...> (d) float f = 10.1;neh ...kind regards,Jos
JosAHa at 2007-7-12 2:05:06 > top of Java-index,Java Essentials,Java Programming...
# 3
is widening primitive conversion the same as automatic type conversion?
fairydusta at 2007-7-12 2:05:06 > top of Java-index,Java Essentials,Java Programming...