Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the blank final variable?

Answers were Sorted based on User's Feedback



What is the blank final variable?..

Answer / radhi

a variable with final keyword is called as blank final
variable....
eg. final int i=7;
we cant change the final variable....
there is no use ..if we can make a variabe as final....

Is This Answer Correct ?    7 Yes 4 No

What is the blank final variable?..

Answer / pratima

final int i;
You will get compile time error:The blank final field i may not have been initialized

Is This Answer Correct ?    1 Yes 0 No

What is the blank final variable?..

Answer / sani

when we declare a variable as final is blank final its value
will not change.

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More Core Java Interview Questions

WAP to illustrate the use of interface

2 Answers  


Can we use a switch statement with strings?

0 Answers  


How GUI component handle its own events?

1 Answers  


What is difference between static and final?

0 Answers  


What is "this" keyword in java? Explain

0 Answers  


Explain methods specific to list interface?

0 Answers  


What is difference between hashset and hashmap in java?

0 Answers  


What is core java called?

0 Answers  


Explain the init method?

0 Answers  


what is use of session tracking ?with example?

1 Answers   Photon,


I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }

4 Answers   Cap Gemini,


Why java is not 100% object-oriented?

1 Answers  


Categories