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


Can we declare Pointer in Java?

Answers were Sorted based on User's Feedback



Can we declare Pointer in Java?..

Answer / nashiinformaticssolutions

No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.

Is This Answer Correct ?    0 Yes 0 No

Can we declare Pointer in Java?..

Answer / glibwaresoftsolutions

No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.

Is This Answer Correct ?    0 Yes 0 No

Can we declare Pointer in Java?..

Answer / glibwaresoftsolutions

No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.

Is This Answer Correct ?    0 Yes 0 No

Can we declare Pointer in Java?..

Answer / glibwaresoftsolutions

No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.

Is This Answer Correct ?    0 Yes 0 No

Can we declare Pointer in Java?..

Answer / hr@tgksolutions.com

No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?

0 Answers  


Why java is not 100% object-oriented?

1 Answers  


Why wait(),notify(),notifyAll() methods defined in Object class althought we are using in only threads.

0 Answers   Mphasis,


Can static method access instance variables ?

0 Answers  


What is a copy constructor in java?

0 Answers   Amazon,


Why arraylist is not synchronized in java example?

0 Answers  


What is variable length arguments in java?

0 Answers  


Which method you will use to create a new file to store some log data. Each time a new log entry is necessary, write string to the file in java ?

0 Answers   HCL,


What does nullpointerexception mean?

0 Answers  


What is the difference between variable & constant?

0 Answers  


A abstract class extending an abstract class.Super class has both abstract and non-abstract methods.How can we implement abstract and non-abstract mehtods? Explain with snippet

3 Answers  


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


Categories