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...


Is 'null' a keyword?

Answers were Sorted based on User's Feedback



Is 'null' a keyword?..

Answer / raseek

No.It is a Reserved word.We should not use this as an
identifier.

Is This Answer Correct ?    7 Yes 0 No

Is 'null' a keyword?..

Answer / ranganathkini

No "null" is not a keyword of the Java Programming Language,
it is a reserved keyword similar to "true" and "false"

Is This Answer Correct ?    5 Yes 1 No

Is 'null' a keyword?..

Answer / aruna

"null" is a reserved keyword similar to "true" and "false"

Is This Answer Correct ?    3 Yes 0 No

Is 'null' a keyword?..

Answer / george

"null" is a reserved keyword similar to "true" and "false"
we can use null to initialize string..

Is This Answer Correct ?    2 Yes 0 No

Is 'null' a keyword?..

Answer / ravikiran(aptech mumbai)

no i's a literal

Is This Answer Correct ?    4 Yes 3 No

Is 'null' a keyword?..

Answer / ejp

RE answer #1, how can it be not a keyword and a reserved
keyword?

Do try to make sense.

Is This Answer Correct ?    1 Yes 0 No

Is 'null' a keyword?..

Answer / yogesh mudgil

In case of Java,null is a literal.null is a special literal
which can be cast to any reference type but not to any
primitive type.It is used in Java to represent a void
reference i.e. a pointer to nothing.

Is This Answer Correct ?    0 Yes 0 No

Is 'null' a keyword?..

Answer / sudhakar

"Null" is not either not a key word nor a reserved word

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Does A Class Inherit The Constructors Of Its Superclass?

0 Answers   Wipro,


What are the two types of java programming?

0 Answers  


How many bytes is double?

0 Answers  


How you can force the garbage collection?

0 Answers  


What is a class instance variable?

0 Answers   Tech Mahindra,


What is super in java?

0 Answers  


Can we define static methods inside interface?

0 Answers  


public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?

6 Answers  


Are nested try statements are possible?

2 Answers  


how we can create packages in java?

0 Answers  


Can we serialize static variables in java?

0 Answers  


What is an object in java?

0 Answers  


Categories