aftababbasi

Greenhorn
+ Follow
since Nov 22, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by aftababbasi

Sorry Jeroen,
I dont understand. but u mentioned math formula i know this but friend I get 20 not get 21 result understand
Hi,
1. null is not java keyword but this is reserved word.
you can go and check more http://java.sun.com/docs/books/tutorial/java/nutsandbolts/_keywords.html
2. final modifer
u can't modify value if u use final modifer in variable
u can't override method if u use final modifer in a method
u can't extends class if u use final modifer in a class
3. static
1. its initilize first in a class if u use static keyword
2. u dont need to create instance if use static keyword
if u understand then ok otherwise can mail me
take care
aftab
if v run this code of line
int a = 10;
a = a + a++;
System.out.println(a);
so why we get answer of a 20 not 21
tell me
can any buddy tell me single and double precision in primitive data types float,double