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 32,404 points

Hippiezoo

Favorite Answers20%
Answers466

Computers!

  • Dual screen sound issues?

    Ok so this is a weird situation. On my desktop I have 2 screens. works without a hitch. BUT if i open up chrome on the second extended screen and start a stream like lets say pandora or youtube. the sound wont work. no sound at all. everything is will work with sound and is normal. funny thing is if i pause the stream move the window over to the main screen and press play it works with no problem. then i move the window back to display 2 i have no issues. no idea why that would happen.

    Any ideas? as to why and how i can fix?

    cheers

    Monitors8 years ago
  • Vision blur, nausea when hiking?

    Ok so I've taken up hiking about 3 miles up and 3 miles down a small mountain (Griffith park for you Los Angeles people) but some times I run for it for a bit, when I get tired I feel nauseous and my fingers started getting jittery and and I've hard slightly blurred vision, also I gets pretty hot up there, is this some what normal considering since it get really hot and I'm really tired? I do drink a lot of water when I'm up there

    4 AnswersDiabetes9 years ago
  • Facebook and hacking?

    is there a way to stop seeing the stupid people asking us how to hack and if we would add them on FB on yahoo answers?

    1 AnswerFacebook9 years ago
  • C++ getting the month and day from a day of the year?

    I formed the question weird.. but this is the problem:

    "Assuming that a year has 365 days, write a class named DayOfYear that takes an integer

    representing a day of the year and translates it to a string consisting of the month followed

    by day of the month. For example,

    Day 2 would be January 2

    Day 32 would be February 1

    Day 365 would be December 31.

    The constructor for the class should take as parameter an integer representing the day of

    the year, and the class should have a member function print() that prints the day in the

    month-day format. The class should have an integer member variable to represent the day,

    and should have static member variables of type string to assist in the translation from

    the integer format to the month–day format.

    Test your class by inputting various integers representing days and printing out their representation

    in the month–day format."

    I created an object for each month thinking that i could use a pointer the find it but ive gotten stuck. If u have coding u can help me with that would be awesome but an explanation of how i could pass an integer to the classes (or if i just need 1 class) how i could use that integer to find the month and day associated with that day

    1 AnswerProgramming & Design9 years ago
  • dynamic struct in c++ question?

    ok so im taking a c++ class and im supposed create a dynamic structure but i cant seem to figure out what wrong with it. heres the coding.

    #include <iostream>

    #include <iomanip>

    #include <string>

    #include "Functions2.h"

    using namespace std;

    //Prototypes

    void setTestScores(Students[] ,int);

    void setSorting(Students[] , int);

    double getAverage(Students[] , int);

    void showArray(Students[] , int );

    struct Students

    {

    string name;

    double testScore;

    };

    int main()

    {

    int SIZE;

    double Average;

    Students student;

    cout << "How many students will you be inputing test scores for? ";

    cin >> SIZE;

    Students* student = new Students[SIZE];

    setTestScores(student, SIZE);

    setSorting(student, SIZE);

    showArray(student, SIZE);

    getAverage(student, SIZE);

    }

    THIS IS THE Function2.h file

    #include <iostream>

    using namespace std;

    void setTestScores(Students student[],int SIZE)

    {

    for (int count = 0; count < SIZE; count++)

    {

    cout << "What is the name of the student? ";

    cin >> student[count].name;

    cout << "What is the score for test number " << count + 1 << "?" << endl;

    cin >> student[count].testScore;

    }

    }

    void setSorting(Students testScores[],int SIZE)

    {

    //Declarations

    double temp;

    bool swap;

    //Loop to organize and sort scores

    do

    { swap = false;

    for(int count = 0; count < SIZE; count++)

    {

    if (testScores[count] > testScores[count + 1])

    {

    temp = testScores[count];

    testScores[count] = testScores[count +1];

    testScores[count + 1]=temp;

    swap=true;

    }

    }

    } while (swap);

    }

    double getAverage(Students testScores[], int SIZE)

    {

    double total=0;

    //Loops to add each test score to variable "total"

    for (int count=1; count < SIZE+1; count++)

    {

    total += testScores[count];

    }

    //Returns average and stores intovariable average in int main()

    return total/SIZE;

    }

    void showArray(Students temp[], int SIZE)

    {

    //Displays scores on screen

    cout << "The Scores Sorted by ascending order are as followed: "<< endl;

    for (int count = 1; count <= SIZE; count++)

    {

    cout << temp[count] << " ";

    }

    cout << endl;

    }

    2 AnswersProgramming & Design9 years ago
  • Best artic monkeys cd?

    I was wondering which is the best because I wanna buy it for my GF but I don't listen to them so I really don't have an opinion about them

    3 AnswersRock and Pop9 years ago
  • Why isn't my 32bit or 64bit IE browser working?

    Neither Internet explorer 9 work. It starts then immediately I guess crashes. The computer is a new windows 7 ultimate build. About a week old with all updates installed pretty much back to back so it may be a bit hard to isolate it if it's an update bug. Also norton 2011 free trial, I was wondering maybe that but idk. Also IE with no plug ins dont work either. Any help would be appreciated.

    2 AnswersSoftware9 years ago
  • How to stop iphone balance alerts?

    I recently got an iphone and a prepaid at&t sim with the 10 cents per minute plan but when i text a balance alert pops up. is there anyway to disable this?

    2 AnswersCell Phones & Plans1 decade ago
  • Will apple replace an iphone 3GS if the silent switch is broken?

    Before it would switch from regular to silent when i jiggled the phone but i dropped it earlier and now it wont go silent.

    3 AnswersCell Phones & Plans1 decade ago