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 2681 points

Elias Vela

Favorite Answers9%
Answers293

Hello

  • Are wellness checkups a thing people do?

    The last doctor I saw was my pediatrician. I'm 24. Am I suppose to be periodically checked as an adult?

    1 AnswerMedicine4 years ago
  • Is 4 paid weeks off a good benifit compared to others?

    Thinking about leaving my current job. It's my first job, I've worked my way up for years. Weighing the pros and cons. With my length of service to the company, I get 4 paid weeks off. How does that compare to others?

    5 AnswersOther - Careers & Employment4 years ago
  • Would it be unethical of me to schedule interviews with no intention of taking the job?

    I need interview experience, so I'm thinking of appling for jobs that I know can't match my current pay and benefits. When I am ready to actually job hunt in a couple months, I can be better prepared.

    Who knows? Maybe I will be surprised and take an offer.

    3 AnswersOther - Careers & Employment4 years ago
  • Critique my resume?

    I m trying to leave the restaurant business, and am applying at a correctional facility. Even if I don t get the job there, I want a good resume for applying elsewhere.

    Thanks.

    OBJECTIVE . ....

    To obtain a position where I can use my experience to help the company, and to gain more experience to further my career.

    EXPERIENCE

    Smashburger Dallas , Texas December 2012 - Present

    Assistant Manager

    Filed invoices

    Counted weekly inventory

    Ordered product

    Trained Shift Managers

    Managed day-to-day shifts

    I opened and trained 2 locations in Dallas

    EDUCATION

    Collin County Community College Plano, Texas

    Marketing

    Rockwall High School Rockwall, Texas Grad. June 2011

    SKILLS

    Proficient in Windows

    Profienct in Microsoft Excel, Word, Outlook

    Customer Service skills

    LANGUAGES

    Fluent in English

    Conversational in Spanish

    Basic understanding of German

    References are available upon request.

    2 AnswersOther - Careers & Employment4 years ago
  • C++ help, why isn't my palindrome checker working?

    I feel like it's something really simple and I'll be embarrassed when I catch it...

    The program seems to loop more than once, for example if "racecar" is entered, "racecar is a palindrome" will cout 3 times.

    The number of times it loops seems to be proportionate to the amount of characters entered.

    Also, any other feedback is appreciated

    #include <iostream>

    #include <ctype.h>

    #include <string.h>

    #include <limits>

    using namespace std;

    int main() {

    const int a(15);

    char Line[a + 1];

    int i;

    do {

    cout << "Enter a possible palindrome" << endl;

    cin.getline(Line, a + 1);

    if (cin.fail())

    {

    cin.clear();

    cin.ignore(numeric_limits<streamsize>::max(), '\n');

    }

    else;

    for (int i = 0; i < strlen(Line); i++) {

    Line[i] = (char)tolower(Line[i]);

    }

    int c = strlen(Line);

    for (int i = 0; i < c / 2; i++) {

    while (!(((int)Line[c - 1 - i] >= 'a' && (int)Line[c - 1 - i] <= 'z') || ((int)Line[c - 1 - i] >= 'A' && (int)Line[c - 1 - i] <= 'Z'))) {

    c--;

    }

    if ((Line[i] == Line[c - 1 - i]))

    {

    cout << "is a Palindrome" << endl;

    }

    else

    cout << Line << " is not a palindrome." << endl;

    }

    } while (strcmp(Line, "END") != 0);

    return 0;

    }

    4 AnswersProgramming & Design4 years ago
  • In C++, how can I keep my program from stopping if the user enters an invalid character?

    I have a

    int a;

    Which I have the user cin the value. IF they enter a character instead of a number, my program stops working. How can I prevent that?

    3 AnswersProgramming & Design4 years ago
  • In C++, how can I use a continue within a nested loop?

    I'm already using a continue to loop back just after the first cin. But I also need it to loop back to before the first cin if they enter "C".

    Any suggestions appreciated. Please don't do it for me, I need to learn by doing it myself.

    Anything else that you see I could improve please let me know.

    #include <iostream>

    #include <stdlib.h>

    using namespace std;

    int main()

    {

    int a;

    int b;

    int sum;

    char op;

    cout << "Enter a number" << endl;

    cin >> a;

    while (1) {

    cout << "Enter another" << endl;

    cin >> b;

    cout << "What do you wish to do? \n To Add, + \n To Subtract, - \n To Multiply, * \n to Divide, / " << endl;

    cin >> op;

    switch (op)

    {

    case '+':

    sum = a + b;

    cout << sum << endl;

    a = sum;

    break;

    case '-':

    sum = a - b;

    cout << sum << endl;

    a = sum;

    break;

    case '*':

    sum = a*b;

    cout << sum << endl;

    a = sum;

    break;

    case '/':

    if (b == 0)

    {

    cout << "You cant divide by zero! \n";

    break;

    }

    else

    sum = a / b;

    cout << sum << endl;

    a = sum;

    break;

    case 'c':

    a = 0;

    break;

    case 'C':

    a = 0;

    break;

    case 'x':

    return 0;

    case 'X':

    return 0;

    default:

    cout << "You entered an invalid " << endl;

    continue;

    }

    }

    }

    3 AnswersProgramming & Design4 years ago
  • In C++, how can I add an "invalid" operator?

    I want user to be able to type in an operator, but if they enter an invalid, I don t want my program to stop, I want it to loop. I know how to have them enter an operator, but I can t figure out how to loop it if they enter an invalid.

    4 AnswersProgramming & Design4 years ago
  • How do I start a C++ program in Visual Studio?

    Feeling pretty idiotic, but I totally forgot how to start a new C++ project on Visual Studio, and make it so it already has the following on it.

    #include <iostream?

    using namespace std;

    int main()

    {

    return 0;

    }

    Right it keeps having this when I start a project:

    #include "stdafx.h"

    int main()

    {

    return 0;

    }

    Need it to have the first one.

    I m a c++ noob, have mercy I know it s dumb question.

  • What's a good way to learn C++ by yourself?

    I'm trying to learn C++ on my own. What's a good way to learn? I've been watching a lot of youtube videos and generally just playing around with a compiler.

    It's been a little frustrating. I'm normally a great independent learner, but for some reason this just isn't clicking.

    Any programmers out there have any advice on learning this?

    Any advice?

    3 AnswersProgramming & Design4 years ago
  • In C++, how can I take a variable from a class and bring it into another class?

    I'm trying to get the hang of classes. I'm trying to create two classes. How can I store the sum from the 1st class, and use it in another class?

    #include <iostream>

    using namespace std;

    class GasPrice {

    public:

    int Gas() {

    float a;

    float b;

    float sum;

    cout << "cost of gas \n";

    cin >> a;

    cout << " How many gallsons \n";

    cin >> b;

    sum = a * b;

    cout << sum << endl;

    return sum;

    };

    };

    int main()

    {

    GasPrice Price;

    Price.Gas();

    return 0;

    };

  • What did I do wrong in my C++ program?

    I know it's something simple. I have a feeling it's somewhere in class Eli.

    #include <iostream>

    using namespace std;

    class test {

    public: void tester() { cout << "Hello is it me \n"; };

    };

    class test2 {

    public: void tester2() { cout << "who knows \n"; };

    void t3() { cout << "dd \n"; };

    };

    class Eli {

    public: int IDK() {

    int x;

    int y;

    int s;

    cin >> x;

    cin >> y;

    s = x + y;

    cout << s;

    return s;

    };

    };

    int main()

    {

    test tstob;

    test2 t2;

    Eli t5;

    tstob.tester();

    t2.tester2;

    t2.t3();

    t5.IDK();

    return 0;

    }

    2 AnswersProgramming & Design4 years ago
  • Why won't my C++ code work?

    Hey. I just started learning about an hour ago, so go easy on me, I know it might be a dumb question. Thanks!

    #include <iostream>

    using namespace std;

    int op1();

    int op2();

    int main()

    {

    cout << " Enter Y or N \n";

    int Y;

    int N;

    cin >> Y;

    cin >> N;

    if (Y) { op1(); }

    if (N) { op2(); }

    return 0;

    }

    int op1( )

    {

    cout << "You have chosen addition! Choose 2 numbers \n";

    int a;

    int b;

    int sum;

    cin >> a;

    cin >> b;

    sum = a + b;

    cout << sum;

    return 0;

    }

    int op2()

    {

    cout << "You have choicen subtration! \n";

    int a;

    int b;

    int sum;

    cin >> a;

    cin >> b;

    sum = a - b;

    cout << sum;

    return 0;

    }

    1 AnswerProgramming & Design4 years ago
  • Is it illegal to access online content from another country?

    So, usually, we can't access the digital stores of iTunes or Google Play from other countries. What I mean is, if you live in the u.s, you can only access the American iTunes or Google Play, or if you live in Germany, only the German iTunes or Google Play. The American iTunes or Play does not have any German films, but obviously the German ones do. So if I manage to use a VPN or proxy to access the German stores, would I be breaking any laws?

    7 AnswersLaw & Ethics7 years ago
  • How can I get a proof address?

    I need a proof of address. Can I go to the post office to get it, or...?

    5 AnswersInsurance7 years ago
  • What kind of health insurance should I get?

    I hardly ever go to the doctor. I think it's been almost 2 years since I've been. But I guess it's law now. So, what type should someone like me get?

    I've had this weird spot on my leg for a few months now. I think it's spreading, and it's starting to hurt. Main reason I'm getting around to getting health insurance.

    2 AnswersOther - General Health Care7 years ago
  • Should I throw this food away?

    This morning I bought some frozen food. It was some Jalapeno poppers. I forgot it in my car. It's been less than 6 hours, and it's 60 degrees outside. Is it still safe?

    2 AnswersEntertaining7 years ago