I got a laser pointer to play with my cats. I have three of them. They totally ignore it. Are they the norm or the acception? Are there cats that like laser pointers?

1 Answer

Answer :

Most cats enjoy chasing the dot of light. There may be too many distractions when you're using it. Be patient and try moving the dot, then holding it still. At least one of your cats will probably stalk it and then pounce trying to catch it. It can be fun for both you and the cats.

Related questions

Description : Do I need to buy special nail polish for animals or can I use the same polish I use on myself?

Last Answer : Absolutely do not use regular polish on the cat's nails! The chemicals in nail polish are toxic to your cat. There are nail polishes that claim to be safe for pets, but you can't be sure if your ... to an ingredient. I would rather leave the cat's nails as nature made them. Better safe than sorry.

Description : Is Blue buffalo grain free Mature 7+ kosher for passover?

Last Answer : Sorry I'm so late answering but we were on vacation for Passover. I was told that any food that doesn't contain the 5 grains is acceptable to feed your pets. I wouldn't say they are kosher, but they can be fed to your animals.

Description : Do laser pointers hurt cats?

Last Answer : Uh, no. It could be bad if you shine it directly into their face, so be careful not to do that. But otherwise, it’s a great form of exercise.

Description : Could I replace a cheap laser pointer's LED with an infrared LED?

Last Answer : Yes you can but you will need to do some soldering though. Most laser pointer LED's are soldered to a PCB (printed circuit board) and you can't just tear it off. If you do this you will damage the ... find the right LED then figure out how you are going to make it fit to the PCB somehow. Good Luck!

Description : Anyidea why laser pointers used on a fish tank make the fish freak out?

Last Answer : They freak out because the laser is bright and the water dissipates the light throughout the tank.

Description : What are some common colors of laser pointers?

Last Answer : Typically they come in green, red, yellow, blue or purple. The least expensive ones feature red lights and the most common ones feature green ligths.

Description : Can white cats see laser light?

Last Answer : It’s just your cat. There’s nothing about white cats that affects their ability to see lasers. It can probably see the light but just isn’t all that interested in it. Maybe it’s a very smart cat.

Description : Would anyone like to give me some good pointers, advise, etc. about representing myself in court today?

Last Answer : answer:Tell the court what you told us. Say it honestly, without histrionics and without defensiveness, and accept what they decide. Apologize, too. It was an innocent mistake, and normally you acknowledge you ... because it wasn't obvious to you that school was in session. I'm sorry, your honor.

Description : Need your Uber advice - has it worked for you? Any pointers?

Last Answer : answer:Here is a good article for first-time Uber users. The biggest thing is that your first ride with Uber is free up to $22. So that's cool. I can't give any location-specific advice on LAX ... restaurant, and there was a driver already eating there! He just dropped them off on his own way home!

Description : Have you ever grown kiwi fruit at home, or do you have any tips or pointers for successfully growing kiwi fruit?

Last Answer : How to collect the seeds This woman seems to know her kiwi This guy too. The thing to be aware of is the need for male and female vines. Claims are, one vine will produce fifty ... in Europe and North America. Note, at least one knowledgeable grower warns against fertilizing because the roots burn.

Description : I have a 'group interview' on Wednesday, any pointers?

Last Answer : Lot’s of smiles. Laugh at your mistakes. And look desperately for any opportunity to say “Oh may I help you with that”?

Description : How can I learn to "flirt"? Can someone give me pointers"? Not trashy just, nice & simple?

Last Answer : Read this book.

Description : Hi, everyone I'm planning to start my own plowing business in West Michigan. This will be a new adventure for me and I'm in need for some pointers. Please help!

Last Answer : Serious Good customer report seems to be the best thing for I-do-a-service-for-you kind of jobs. Knowing people's first names, being friendly, being prompt especially. People really love having ... phones? It's not as intrusive as a phone call, but good, honest information is always appreciated.

Description : Could I get some pointers on my singing and performance?

Last Answer : [Mod says] Txtspk removed.

Description : I'm in a department store looking for the Juniors Maternity department, any pointers?

Last Answer : You mean maternity clothes for pregnant youngsters? I don’t think there is such a thing. I would say just look for Maternity.

Description : I have my driving test tomorrow. Any pointers?

Last Answer : Sleep the night before, eat breakfast, breathe, compulsively check everything on your car before you start. My test honestly only lasted eight minutes and I basically drove in a figure eight on four semi residential roads. And all we did was talk about Pandas.

Description : Any pointers on how to be the best candidate, for joining the California Highway Patrol?

Last Answer : You do that when you ACAP, all sorts of government jobs are available. Are you gonna be a good cop or a bad cop?

Description : need pointers for growing burssell sprouts

Last Answer : Need Answer

Description : What are some pointers for the 3 main sections of the SAT?

Last Answer : The Critical Reading, formerly verbal, section of the SAT is made up of three scored sections, two 25-minute sections and one 20-minute section, with varying types of questions, including sentence ... . The shorter section is all multiple choice, with only 16 questions. Notably, the SAT has

Description : what are some pointers about buying antique cars?

Last Answer : Figure out your budget! You don't want to spend a bunch of money on your classic beauty, with none left over to fix it up! Know the basic model/make of the car you want, and find time and space to work on it!

Description : The addressing mode which makes use of in-direction pointers is ______ A. Offset addressing mode B. Relative addressing mode C. Indirect addressing mode D. None of the Above

Last Answer : C. Indirect addressing mode

Description : Before measuring an unknown resistance with an ohmmeter, you should _____________. A. adjust the meter's pointers to mid-scale B. change the meter's batteries C. center the meter's pointer at infinity D. short the test leads and calibrate the meter

Last Answer : Answer: D

Description : In AI programming, a list may contain ___________ a) cells b) fields c) pointers d) all of the mentioned

Last Answer : d) all of the mentioned

Description : Define what are pointers?

Last Answer : Pointers point to specific areas in the memory. Pointers contain the address of a variable, which in turn may contain a value or even an address to another memory.

Description : The dereferencing operator ………….. is used to access a member when we use pointers to both the object and the member. A) ->* B) .* C) Any of the above D) None of the above

Last Answer : A) ->*

Description : In C++, the keyword void was used ……….. A) To specify the return type of function when it is not returning any value. B) To indicate an empty argument list to a function. C) To declare the generic pointers. D) All of the above.

Last Answer : D) All of the above.

Description : Write a program to compute the sum of all elements stored in an array using pointers.

Last Answer : #include #include void main() { int a[5],sum=0,i,*ptr; clrscr(); printf("\n Enter array elements:"); for(i=0;i

Description : Implement a program to demonstrate concept of pointers to function.

Last Answer : Pointer to function: include int sum(int x, int y) { return x+y; } int main() { int s; int(*fp)(int, int); fp = sum; s = fp(10,12); printf(“Sum = %d”,s); return 0; }

Description : Write a program using concept of pointers to string for performing following operations: (i) String concatenation (ii) String comparisons

Last Answer : (i) Program to implement String Concatenation: #include #include void main() { char s1[50],s2[30],*p,*q; clrscr(); couts1>>s2; p=s1; q=s2; while(*p!=NULL) { p++; } while(*q!=NULL) { *p=*q; p++; q++; } *p='\0'; cout

Description : Explain searching elements in array using pointers.

Last Answer : Consider an array of five elements as shown below: A[5]={ 10,20,30,40,50}; Search element(SE)=30 Pointer variable is declare as *ptr; Before starting search process ... If search element is not present in an array, then after comparing all elements stop the search process.

Description : If the queue is implemented with a linked list, keeping track of a front pointer and a rear pointer, which of these pointers will change during an insertion into a non-empty queue? (A) Neither of ... (B) Only front pointer changes (C) Only rear pointer changes (D) Both of the pointers changes

Last Answer : (C) Only rear pointer changes

Description : What does the following declaration mean ? int (*ptr) [10]; (A) ptr is an array of pointers of 10 integers. (B) ptr is a pointer to an array of 10 integers. (C) ptr is an array of 10 integers. (D) none of the above.

Last Answer : (B) ptr is a pointer to an array of 10 integers.

Description : What does the following expression means ? char *(*(* a[N]) ( )) ( ); (A) a pointer to a function returning array of n pointers to function returning character pointers. (B) a ... to characters (D) an array of n pointers to function returning pointers to functions returning pointers to characters.

Last Answer : Answer: A,B,C,D

Description : In Unix operating system, special files are used to : (A) buffer data received in its input from where a process reads (B) provide a mechanism to map physical device to file names (C ... pointers associated with i-nodes (D) store information entered by a user application program or utility program

Last Answer : (B) provide a mechanism to map physical device to file names 

Description : Consider an implementation of unsorted single linked list. Suppose it has its representation with a head and a tail pointer (i.e. pointers to the first and last nodes of the linked list). Given the ... the front node of the linked list. (D) Deletion of the last node of the linked list.

Last Answer : (D) Deletion of the last node of the linked list.