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 Pointer?

Answers were Sorted based on User's Feedback



What Is Pointer?..

Answer / sachin atre

Pointer is nothing but the variable which stores the address(memory location) of another variable.
Pointers are not supported in Java but they are applicable in c,c++ languages.

Is This Answer Correct ?    9 Yes 0 No

What Is Pointer?..

Answer / singh vikas

implements two ways of representing object pointers. (An
object pointer, C type object, contains a pointer to the
memory location of the object, or - for immediate object -
all bits of the object itself.) Both of them have some
things in common:

Is This Answer Correct ?    1 Yes 0 No

What Is Pointer?..

Answer / mohit choudhary

POINTER IS A SPECIAL VERIABLE WHICH CAN CONYTAIN A ADDRESS
OF THE ANOTHER VERIABLE IN THE CLASS

Is This Answer Correct ?    1 Yes 0 No

What Is Pointer?..

Answer / n.v.swami reddy

pointer is variable which holds the address of nother
variable is called pointer.
pointer concept does not support the java.it only for c,c++,


EXAMPLE PROGRAM FOR C:
MAIN()
{
int *a=25;/*it print the value address of the a variable
value*/
int b=a;/*a value assign b*/
int c=&b;/*it print the value of the b*/
printf("%d",*a);
printf("%d",b);
printf("%d",c);
getch();
}

OUTPUT:
245 ADDRESS OF A
25
25

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

How to create an immutable class?

0 Answers  


What are the super most classes for all the streams?

5 Answers  


What is use of a abstract variable?

0 Answers  


Given: 11. public static void main(String[] args) { 12. Integer i = uew Integer(1) + new Integer(2); 13. switch(i) { 14. case 3: System.out.println(”three”); break; 15. default: System.out.println(”other”); break; 16. } 17. } ‘What is the result? 1 three 2 other 3 An exception is thrown at runtime. 4 Compilation fails because of an error on line 12.

9 Answers  


What is jrmp?

0 Answers  


Can a class be private or protected in java?

0 Answers  


What is the flag in java?

0 Answers  


Why to use nested classes in java?

0 Answers  


Difference between this(), super()?

12 Answers   College School Exams Tests, Oracle,


What are the escape sequences in java?

0 Answers  


What is the difference between pass by reference and pass by pointer?

0 Answers  


What is the purpose of the main method?

0 Answers  


Categories