Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 2321 points

bob bob

Favorite Answers6%
Answers98
  • Dr. Java PLEASE HELP!!!?

    I need help with this program, cant figure it out at all!!!

    Computer Science I Lab 14H – THE TREE LAB Lab Value - 120

    Lab Goal : The lab was designed to teach you how to use arrays to simplify solving more complex problems.

    Lab Description : Using graphics, polygons, and arrays, draw the tree shown below. You can change the tree anyway you like to make it your own.

    It outputs a triangular xmas tree, with presents and ornaments . Please HELP!!!

    1 AnswerProgramming & Design8 years ago
  • Texas gun law help? Texas gun laws for cars!?

    Is it legal for me to Conceal a loaded handgun in my car. I'm 18. ?? Please help

    3 AnswersLaw & Ethics9 years ago
  • Which amp should I get?

    I'm getting the KFC-w3013ps kenwood 400watt rms at 1200peak. What amp should I get. I don't care if it isn't kenwood. I would like it to be less than 100. And also just generally how to tell which amp to get.

    1 AnswerCar Audio9 years ago
  • Question for action pistol lovers?

    Im interested in getting into action pistol. It would be awesome if you could tell me how to get started and what equipment I will need. I want to get a price of how much I'm going to have to spend to get started. Thanks.

    1 AnswerHunting10 years ago
  • IF YOU ARE AN ELECTRICAL ENGINEER I NEED HELP!?

    I am making something using a heat sensor, once it reaches 35 Celsius it closes the circuit. One problem I'm running in to is i am replacing a one touch button (press down to connect the power source to the receiving device-then the button comes back up and closes of the connection sending a quick signal) with this sensor. With the heat sensor once it is activated it stays on. I need it to activate, send that quick signal and shut off (like the one touch button does). i need some type of resistor that once it feel the signal it shuts of the line so it isn't constantly getting the signal. It just gets a quick activation. Please help if you need more explanation please ask. Thanks

    1 AnswerEngineering10 years ago
  • ARTLEY CLARINET???HELP PLEASE!!!?

    I have a artley clarinet of which i think is a 2000 model. Its serial number is 7024810. I was woundering if i am right about the year, and how much one in good condition would be worth. Thanks!

    1 AnswerPerforming Arts10 years ago
  • Another question for rc airboat people out there?

    What would be better to get for my homemade rc airboat. A triple prop or just a standard double prop. I need either a 10x7 or a 12x6. And it's a Park 480 Bl Outrunnermtr 910Kv motor. Thanks again.

    1 AnswerHobbies & Crafts10 years ago
  • Rc air boat! Help me please!?

    I'm making a balsa wood rc airboat. I have my servo and all the steering stuff but how do I keep the boat water tight when there is a hole in the top of the boat where the servo push rod comes out of the boat.

    2 AnswersBoats & Boating10 years ago
  • CALLING ALL BALSA WOOD CREATORS?

    I made a boat out of balsa wood. What can I use to put on it to seal it off so it doesn't take on water and sink, some type of a sealant. Please help!!!!

    3 AnswersDo It Yourself (DIY)10 years ago
  • What amp would power this sub?

    What kenwood, or cheapest good quality amp, would power this kenwood sub?

    Kenwood- Performance Series 12" Single-Voice-Coil 4-Ohm Subwoofer

    Model: KFC-W3013PS | SKU: 1989356

    3 AnswersCar Audio10 years ago
  • Why do my speakers crakle?

    I have a 07 Xlt ford explorer with stock speakers and an additional 50 w kenwood deck with iPod plug on the front. After I installed the deck when ever I use my iPod the speakers crakle. The music is loud but not extremely loud because I don't want to blow the speakers. Please tell me why they crackle. Could it have to do with watts or ohms... Please help

    4 AnswersCar Audio10 years ago
  • WHITE ROTARY!!!!!?????????????!!!!!!!!!!!!!!!!!11?

    I have a old White Rotary sewing machine. Its serial number is FR 5015870X. The motor # is 85821. The patent on the motor was in oct 25, 1927 by white sewing machine corp. in cleveland ohio USA. The number on the bottom of the sewing machine is 9002-3. Please help me find out what year this is and how much it is worth in mint condition vs not very good condition, or a place in the austin (texas) area to appraise it. Please help 10 POINTS FOR BEST ANSWER!!!

    1 AnswerHistory1 decade ago
  • GAMESTOP APPLICATION HELP!!! TEN POINTS AVAILABLE!?

    I am applying to gamestop but I came to a road block. It asks me for my "game software knowledge" I'm not sure what to write there. If it helps I've owned: the original nintendo; game boy advanced; nintendo 64 ; ps2 ; xbox 360. Please help for a ten point reward!

    2 AnswersOther - Games & Recreation1 decade ago
  • how to download a video from youtube?

    I put a video on youtube a couple weeks later my comp crashed. how can i redownload that video.

    5 AnswersYouTube1 decade ago
  • WRITING A JAVA PROGRAM PLEASE HELP!!!?

    My code is

    import java.io.*;

    import java.util.*;

    public class QuadraticFormula

    {

    public static void main(String[] args)

    {

    System.out.println("The form must be ax^2+bx+c to use this program.");

    Scanner kbReader=new Scanner(System.in);

    System.out.print("Enter A: ");//ax^2

    double a= kbReader.nextDouble();

    System.out.print("Enter B: ");//bx

    double b= kbReader.nextDouble();

    System.out.print("Enter C: ");// c

    double c= kbReader.nextDouble();

    double ab= 2;//number for the second power

    double d= Math.pow( (double) b, (double) ab);//raises b two the 2nd power. first part of determinate

    double e= b*(-1); //first part of formula. changes b to a negative

    double f= 2*a;//divisore of problem

    double ga= 4*a;

    double g= ga*c;//second part of determinate

    double h= d-g;//whole determinate

    double i= Math.sqrt( (double) h); //sqrt b^2-4ac

    double bc= e+i;//top of equation added

    double cd= e-i;//top of equation subtracted

    double de= bc/f;//whole equation

    double ef= cd/f;//whole equation

    System.out.println("The zeros of this equation are "+ de + " and "+ ef + ".");

    }

    }

    When i run the program its out put is -

    The form must be ax^2+bx+c to use this program.

    Enter A: 1

    Enter B: 2

    Enter C: 8

    The zeros of this equation are NaN and NaN.

    Where it says NaN is where it messes up, i wrote all the other stuff in the code. My question is why does it say NaN and how do i fix it. i know NaN means not a number but where is my error and how do i fix it. please help!!!

    3 AnswersProgramming & Design1 decade ago
  • Positive wire or negative? help!?

    Recently my friend bought a truck and it has wiring for an amp and subwoofers. I've decided which wires could be the postive and negative but I don't know how to figure it out. Ones red ones purple. Also would it ruin the amp if I put the wrong wire (+/-) in the wrong port. Please help asap. Is there a test I can run.

    3 AnswersCar Audio1 decade ago
  • PLEASE HELP BEST ANSWER GETS 10 PTS?

    I need a good short story for my english class im a 9th grader at a catholic private academy....please help...i like suspenseful action spy-like books. So anything like Alex rider books but a short story would be awesome....please HELP!!!

    2 AnswersHomework Help1 decade ago
  • PLEASE HELP I WANT TO GET THIS TV BUT I NEED MY MOM TO KNOW AN ANSWER PLEASE HELPPPP!! best answer 10PTS?

    Hello people, i want the Dynex® - 26" Class / 720p / 60Hz / LCD HDTV from bestbuy does this HDTV get a signal To watch TV channels like Fox and Nbc...local channels...so will this get a signal, i need to know... this is the link I NEED AN ANSWER....HEre is the link I ALSO NEED PROOF!!!!!!!!!!!PLEASE HELP!!!!!!!!!!!http://www.bestbuy.com/site/olspage.jsp?skuId=8632...

    4 AnswersTVs1 decade ago
  • Need help with my ipod nano 4th gen!!!!!!! please help 10pts for right answer!!!!!!!!!!?

    I want to know how to change the screen lock, i know the code but i want to change it, if it helps the ipod is up to date on updates! please help, 10 pts for the right answer

    2 AnswersVideo & Online Games1 decade ago