what are some pointers about buying antique cars?

1 Answer

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!

Related questions

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 : 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 : 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 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 : 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 : 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 : How can I learn to "flirt"? Can someone give me pointers"? Not trashy just, nice & simple?

Last Answer : Read this book.

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

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

Description : need pointers for growing burssell sprouts

Last Answer : Need Answer

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. 

Description : Should Germany stop making decent cars so that Americans stop buying them?

Last Answer : Haha..that’s funny. I don’t know how successful businessman like him can think that way.

Description : Spare parts abroad are probably much more expensive, right?

Last Answer : I think the price differences are slowly disappearing. Many parts for different cars are delivered to factories from joint suppliers. Rather, it wants to see if the part in question does not exist for another car ... , you will buy a Skoda yourself. She still has the question of what is a Czech car?

Description : What is the number one website for buying cars online?

Last Answer : One of the most popular websites for buying, trading and selling new and used cards online is Autotrader.com. Carmax.com also offers buying and selling of cars online, as well as reviews of dealers.

Description : Can I save money by buying pre-owned luxury cars?

Last Answer : Of course you can. You can save a lot of money buy purchasing a pre-owned luxury cars rather than a purchasing a luxury car brand new.

Description : What is the most reliable way to check online for vehicle history when buying used cars?

Last Answer : When buying a used car, it's best to find out all the history of the car. The most reliable way to check for vehicle history is to do a lien check or a used-car history check. One of those website is carmax.com

Description : Will you guys help me track down some info on these antique chairs?

Last Answer : answer:Looks similar to some antique Morris Chairs. Another look-alike And

Description : Some days (like today), I think to myself that I'd love to pack it all in (work) and open up an antique store. What would I need to do to become a successful antique dealer?

Last Answer : answer:First of all, a good eye for antiques. Then you'd need to identify your supply of antiques (the nice old stuff is getting a bit scarce; since it lasts so much longer than the modern crap, people ... the new owner's house until it either goes to a junk store or else is sold in an estate sale.

Description : Who are some reputable antique dealers for Portland, Oregon?

Last Answer : Oregon is a great place to hunt for antiques. Here are just a few of the highest rated establishments and their website links (if available): Timeless Antiques and Collectibles in Aurora, OR http: ... 6757. Check out USAntiqueDealer.com for lists of shops by city/county and also reviews and ratings.

Description : What are some of the most valuable antique tractors ever made?

Last Answer : The determination of the most valuable antique tractors will depend on the brand, who you ask, and how many were made. In general the most valuable brand is Allis Chalmers as they tend to be rarer and more well-known.

Description : Where can I find some antique patio furniture?

Last Answer : Outdoor Garden Furniture sells lots of antique garden patio furniture that is bound to suit your needs. You can browse through their selection on their website: http://www.outdoorgardenfurniture.net/antiquegardenfurniture.html

Description : Are there a lot of working antique steam trains in England?

Last Answer : When I saw this question, I thought of having just watched Father Brown and been impressed with the train.

Description : Who was the artist of the painting on Antique Roadshow April 14?

Last Answer : Wouldn’t your best bet be to search online for a rebroadcast of the program or contact the producers? At 40K, it’s not likely to be by a very famous artist and the subject matter isn’t that unique for it to be easily found.

Description : Can anybody help me to value this antique bottle?

Last Answer : I don’t have a clue to what it is worth but the bottom shot shows signs of a punty mark which means it was hand blown most likely into a mold. Despite the fact that the top lip is broken I would consider this as a collectable piece but the value could be all across the board.

Description : How could you display an antique accordian?

Last Answer : You could nail a shelf to the wall and put it on that.

Description : For antique car buffs, what is the make and year of the car in the background of this picture?

Last Answer : Looks a heck of a lot like this 1930 Packard.

Description : Looking to score an antique gumball/candy machine, other than gumballs, what should I put it in?

Last Answer : answer:Copper bb’s? Pachinko balls?

Description : What's in store for the future of antique collecting?

Last Answer : I think you are right that in the future there will be a smaller quantity of quality items that people will want to collect. In the future the prices of handmade, beautiful items made now ... of carpentry and glass blowing. I will hand my loved possessions down to my children and grandchildren.

Description : Do you like any of these names for a coffee/antique shop/art studio?

Last Answer : I like the last two. The first three seem a bit long for a name. However, Eclectic Sunsets sounds pretty awesome.