Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and the Yahoo Answers website is now 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 2733 points

Madara

Favorite Answers17%
Answers140
  • Cat eye loss and hunting?

    My cat got attacked by a mother hen about 3 week back. She recived severe trauma to her left eye and developed eye proptoisis. Living in Jamaica affording a vet is a luxury for the upperclass for hosehold animals. So I was not going even think about affording it. However, I did some home treatment with aloe vera on the eye and the swelling is entirely gone but the eye is destroyed by the wound. She no longer seems to be in pain and wlks about purrs ans sleeps. But will this affect her hunting and survival ability/

    1 AnswerCats8 years ago
  • C programming - IF ELSE?

    These lines of code are giving me a warm time, I want to scan the input for play but it is not working properly:

    printf("\nDo you wish to play another game? Y[Yes]/ N[No]: ");

    scanf("%c", &play);

    getch();

    if(play=='Y'||play=='y')

    {

    printf("Please enter the amount you wish to bet. (Note bet must be greater\nthan zero[0]): JA$ ");

    scanf("%f", &bet);

    }

    else

    if(play=='N'||play=='n')

    {

    printf("Your Overall Toatl Winnings for the %d times you played is: %.2f", count, OTW);

    printf("Thank You for Playing... \nGoodbye...");

    return 0;

    }

    else

    {

    printf("Invaild Selection. Try Again: ");

    scanf("%c", &play);

    }

    3 AnswersProgramming & Design9 years ago
  • Gateway NV53A Laptop Charging issue?

    I got a two year old Gateway NV53A. however when i leave it to charge the battery indicator never changes from amber to blue like it's supposed to, even when the laptop is off. In windows it won't charge past 65%. Is it that my A/C adapter isn't functioning properly(not supplying enough power) or do i need a new battery?

    A/C adapter: Delta Electronics- output= 19v /3.42A, input: 100-240V/1.5A

    Battery: Sanyo S/N: E875 ID: AS10D31

    2 AnswersLaptops & Notebooks9 years ago
  • What if the function of a valve retainer?

    Specifically an engine valve retainer.

    4 AnswersMaintenance & Repairs10 years ago
  • Need for Speed Shift and BSOD?

    I have had this problem over a month now and i'm not sure why it arose out of the blue. I have tried reinstalling, deleting config files in my documents, cleaning the registry, updating video drivers, deleting and updating physx. After all this during races often after 5-10 mins of racing the system locks up with looping sound and no signal to the screen. Sometimes it restarts and other times i have to do it manually. Now B4 anyone's says its my PC, I've played Dirt2, Assassins Creed Brotherhood, Black OPS all on MAX settings(HD resolutions) and have never experienced this problem ever with these games. I'm guessing EA screwed up in the coding. >_<

    PC specs:

    PSU: OCZ MODXSTREAM-PRO 700W

    CPU: Intel Pentium Dual-Core E2180 2.00Ghz @ 2.2GHz ( lil oc)

    GPU: ASUS 4870 Dark Knight 1G DDR5

    RAM: 3GB

    MOBO: AsRoCK G41M-VS2

    OS: Windows 7 Ultimate x 86 SP1

    2 AnswersSoftware10 years ago
  • PSU decision for gaming?

    Ok here's the deal. I have a system configuration of

    CPU: intel pentium dual-core E2180

    MOBO: ASRock G41M-VS2

    GPU: ASUS Radeon 4870

    HDD: 2X WD

    I run it on a cheap 700W PSU and obviously it was a stupid decision. However I bought a new PSU for a near future system. What i want to know is can i rum my current system on the new PSU until I finish building the new system?

    Oh the new PSU: OCZ MODXSTREAM-PRO 700W

    2 AnswersAdd-ons10 years ago
  • Redirect bass frequencies on Surround sound.?

    Ok i've set up a makeshift 5.1 surround sound or at least tried to. Ive connected a 2.1 stereo(built in sub-woofer) to the front left and front right. The rear left and rear right are hooked up to an old 4.1 system that blew its sub-woofer(took out blown sub). The centre is channelled through the old 4.1.

    Here's the prb. When i'm playing games or watching starwars III in 5.1 mode, voices only come out of the centre (note no voice comes through front left and right). I want to get the sub-woofer frequencies to be sent through to front left and front right on the 2.1 to get the correct bass frequencies.

    2 AnswersHome Theater10 years ago
  • Over-clocking Intel Pentium Dual-Core E2180 @2.0Ghz?

    ok heres the break-down: if been trying to get this thing to 2.6 GHz but i can only get it to 2.2 GHz all i did was to change the CMOS ratio from 200 to 220; anything above that and it won't boot into windows and maybe some post problems. My board is a ASRock G41M-VS2( so i get that it isn't a very good rig). However by chance there are possibilities to bump the clock, here are cpu-z's readings:

    core voltage: 1.266-1.288 (varies seems i need to disable power saving options)

    Core speed: 2199.2 MHz ( i have the CMOS ratio at 220 stable)

    Multiplier: x 10.0

    Bus Speed: 219.9 Mhz

    rated FSB: 879.6 MHz

    i don't see options to change these in bios only somthing abt DRAM timings

    FSB:DRAM= 3:5

    Cas# latency: 5.0 clks

    RAS# to CAS#: 5 clks

    RAS# precharge#: 5clks

    cycle time# 15 clks

    yeah i have 3Gs of DDRII-800 installed at DDRII-763 or sumthing like that

    GPU: ASUS Radeon HD4870

    2 AnswersDesktops1 decade ago
  • C program skipping a scanf for a float?

    Everytime I go to the option to enter the costs it skips the float inputs.. URGENT...

    Code:

    void service_cost(void)

    {

    float hwcost;

    float swcost;

    float tcost=0.00;

    float labourcost;

    FILE *fp2;

    printf("\t*********************************************************************\n"); //printf statement

    printf("\t*********************************************************************\n"); //printf statement

    printf("\t*** Service Account ***\n"); //printf statement

    printf("\t*********************************************************************\n"); //printf statement

    printf("\t*********************************************************************\n\n\n");//printf statement

    printf("Please enter hardware cost\n");

    scanf("%.2f", &hwcost);

    printf("Please enter the software cost\n");

    scanf("%.2f",&swcost);

    printf("Please enter the labour cost\n");

    scanf("%.2f",&labourcost);

    tcost = (tcost + hwcost + swcost + labourcost);

    printf("The total service cost is %.2f\n", &tcost);

    fp2=fopen(Services,"a+");

    fprintf(fp2,"The hardware cost is: %.2f\n",hwcost); //writes to file

    fprintf(fp2,"The software cost is: %.2f\n",swcost); //writes to file

    fprintf(fp2,"The labour cost is: %.2f\n",labourcost); //writes to file

    fprintf(fp2,"The overall cost is: %.2f\n", tcost);

    fprintf(fp2,"................................................\n");

    fclose(fp2); //close file

    system("PAUSE");

    system("cls");

    serviced();

    }

    1 AnswerProgramming & Design1 decade ago
  • Why does she want to be called a nickname?

    There is this girl i've been talking to but she wants of to call her alice (some kind of nick name). Why this out of the blue i've always called her by her real name.

    1 AnswerSingles & Dating1 decade ago
  • Why does she want to be called a nickname?

    There is this girl i've been talking to but she wants of to call her alice (some kind of nick name). Why this out of the blue i've always called her by her real name.

    1 AnswerWords & Wordplay1 decade ago
  • What question could it be?

    She says she has a question for me but keeps delaying it. What could it be?

    1 AnswerSingles & Dating1 decade ago
  • What question could it be?

    She says she has a question for me but keeps delaying it. What are the possibilites?

    3 AnswersWords & Wordplay1 decade ago
  • Ok so i got her number. Now what do i say.?

    Ok so there is this girl i've been chatting with on facebook. I've known her since high school and she does like me and i do like her . She sent me her number, what do talk to her about when i call?

    2 AnswersSingles & Dating1 decade ago
  • Help with flirting issue?

    I feel really stupid after coming out of that last taxi. I sat beside this hot lady. There were like four of up on the back seat so she was literaly leaning on my shoulder. I am sure she was looking at me. I wanted to talk to her but i just cant seem to express myself to unaquainted women. Why cant i do it, this is another opperutoity down the drain.

    1 AnswerSingles & Dating1 decade ago
  • Help with Registers and Counters?

    Can anyone provide a website that explains registers and counters, cuz ive got a basic understanding of flip flops however im nowhere to understanding counters and registers than comprehending God.. (:'((

    3 AnswersEngineering1 decade ago
  • Radeon 4870 and Power Supply Unit?

    The rating of my PSU is 600W. On the +12VDC rail it has an amperage of 36A. However it has no PCi express power connectors but i wich to add on adapters for the 2X 75W 6-pin connectors. Will it work?

    1 AnswerOther - Hardware1 decade ago
  • Windows has Detected a Hard Disk Error?

    I have a segate ST3250318AS ATA hard drive and its almost a year old. Yesterday i recived an error message than Windows has detected a hard disk error and that i should back up data immediatly. However i have transfered all important data to my secondary drive, and getting a new western digital 500GB tommorow. Can i continue to play my games such as call of duty without my drive going KIA cuz i wont bother to clone the drive since it is damaged hence fresh installation (yes, longer but safer).

    4 AnswersOther - Hardware1 decade ago
  • Ohm-age and Wattage of Speakers?

    I have a Coby CSMP80 2.1 sound system. However the right satellite speaker sounds scratchy at very sharp sounds. It is rated as follows:

    Satellites: 4 ohms, 25W x 2; Subwoofer: 6-8max ohms, 50W; Total Output: 100W

    I wish to change the satellite speakers to another set of 8ohms, 3W x2 will these work or should i go for the same ratings?

    1 AnswerHome Theater1 decade ago