answersLogoWhite

0

A stick pointer is a stick that has like a nub or like a finger at the end of it and it is used for pointing out or presenting. like in a meeting , you have a slide show and you are describing something on the slide show but you don't want to get in the way of the slide show so you would use the stick pointer.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What are three pointed devices?

finger, stick, laser pointer


What do you call the stick hold by a teacher pointing on a blackboard?

It is called a pointer, either a blackboard pointer or a chalkboard pointer depending on what board it was being used at the time. An Amazon search under chalkboard pointer can give you a decent selection for purchase.


How can you protect the deserts?

while using your pointer finger spread your cheeks and stick it in


How does a knife feel like?

It feels sharp pointer than a stick that's for sure


What is pointer and use of pointer?

A pointer looks a bit like a stick. I use it to point at something. Read your text book, read C tutorials on the web and if you still cannot answer the question consider floor sweeping or basket weaving as a vocation.


What is a Rabbi's stick called?

Not sure what you are referring to - if you mean the "pointer" used when reading from the Torah, it's called a yad.


What is the American sign language sign for depend?

Take your pointer finger A and your other pointer finger B and stick them out like you are pointing.Put B over A in an X shape and move your hands up and down, but not all the way.


Difference between pointer to constant and constant pointer?

1. pointer to a constant means you can not change what the pointer points to 2. constant pointer means you can not change the pointer.


What is triple pointer?

Example: int x; -- integer int *px= &x; -- pointer to integer int **ppx= &px; -- pointer to pointer to integer int ***pppx= &ppx; -- pointer to pointer to pointer to integer


What are pointer to pointer?

A pointer only holds an address information (location) in the memory. if a pointer holds points another pointer then it is a pointer to an other pointer. Pointer holds an address in the memory so in that address there is an other location information that shows another location.


What is pointer of pointer?

pointer is the variable that holds the address of another variable


Define pointer to pointer in c?

Double (**) is used to denote the double pointer. As we know the pointer stores the address of variable, Double pointer stores the address of any pointer variable. Declaration : int **ptr2Ptr;