you are not signed in | sign in or register
All About JAVA
This site consists all about java fundamentals, java topics, java interview questions and answers, java materials, java development code etc are available
Feed & Web Facts
10
Feed Item Count
29 May 12 03:02
Last Reading
1.0
RSS/XML Version
UTF-8
Feed Encoding
Page-Views
 
Weekly People
Week
javaliveinfo.blogspot.com
All About JAVA
Newest Posts in Feed
How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters?
Unicode requires 16 bits and ASCII require 7 bits. Although the ASCII character set uses only 7 bits, it is usually represented as 8 bits. UTF-8 represents characters using 8, 16, and 18 bit patterns. UTF-16 uses 16-bit and larger bit patterns.
Which method of the Component class is used to set the position and size of a component?
setBounds()
What is the difference between the >> and >>> operators?
The >> operator carries the sign bit when shifting right. The >>> zero-fills bits that have been shifted out.