ETIT-303 Java Programming and Web Design Tutorial 2
This document outlines 15 topics covered in a Java programming and web design tutorial, including autoboxing and unboxing, string comparison operators, the Scanner class, anonymous classes, thread groups, checked and unchecked exceptions, mutable and immutable objects, primitive data types, yield vs sleep methods, native methods, this and super constructors, valid identifier characters, the diamond problem and static inner classes, and creating custom exception subclasses.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
45 views1 page
ETIT-303 Java Programming and Web Design Tutorial 2
This document outlines 15 topics covered in a Java programming and web design tutorial, including autoboxing and unboxing, string comparison operators, the Scanner class, anonymous classes, thread groups, checked and unchecked exceptions, mutable and immutable objects, primitive data types, yield vs sleep methods, native methods, this and super constructors, valid identifier characters, the diamond problem and static inner classes, and creating custom exception subclasses.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
ETIT-303 Java Programming and Web Design
Tutorial 2 a) b) c) d) e) f) g) h) i) j) k) l) m) n) o)
Define and WAP on the concept of Autoboxing and Unboxing principle.
Explain the effect of comparison operator = = on the String with short program. Explain Scanner class importance and WAP on it. Define and WAP on anonymous class. Define Thread group. What is difference between checked and unchecked Exception? What is the difference between mutable and immutable object explain with an example? What type of coding is used in java to represent data types? What is the difference between yield ( ) and sleep ( ) method? What is native method? Explain the exact difference between the functioning of this and supper when used in constructor. Which non Unicode letter character s may be used as the first character or letter of identifier? What is diamond problem what is done in java to avoid it? WAP on static inner class. WAP to create your own exception subclasses.