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

Hamzah

Favorite Answers2%
Answers85
  • Can I replace a non-retina iPad mini screen with a retina one if the processor has been upgraded?

    I bought an iPad mini 1 off of craigslist, but it has a cracked screen. Before getting the display replaced, I just want to know if it can be replaced with a Retina display. Also, the processor has been upgraded to A7.

    1 AnswerPDAs & Handhelds3 years ago
  • How can I prevent files from being deleted upon reboot on Kali Linux?

    I ve installed kali Linux on my Mac, but each time I reboot Linux, all my files get deleted. This is especially annoying since I need to write scripts for class. Is there a way to prevent Linux from deleting my files?

    1 AnswerSoftware3 years ago
  • Why do I have to install windows 7 every time I boot the VM?

    I have Windows 7 installed as a VM using virtual box but every time I boot it, I have to re install it. It takes a lot of time, so is there a way to stop this from happening? I also have Kali linux installed and I don't need to install that every time. Any ways to fix this?

    1 AnswerSoftware4 years ago
  • iPhone sound not working?

    Hi

    When I m connected to wifi the video loads to my phone. When I get in my car and I play the video, the video plays but the sound doesn t work. Also my phone is connected to my car via Bluetooth. When I m in the car I m not connected to wifi

    1 AnswerComputer Networking4 years ago
  • How often should I replace coffee pods?

    I normally make coffee twice a day using my Keurig brewer. I m wondering if it s ok to reuse the K cup pod. If I use a fresh pod in the morning, can I use the same one in the evening? Because when I m serving multiple people, I want to use as little pods as possible.

    1 AnswerNon-Alcoholic Drinks4 years ago
  • Why isn't the Honda City available in North America?

    When I visit India, I see a lot of Honda City cars on the roads. I was just wondering why it's not available in North America

    1 AnswerHonda4 years ago
  • Should I upgrade my iPhone 6s to 7 Plus?

    Hi,

    I got my iPhone 6s 16 GB in January of last year. My birthday is coming up and I want something nice. Here are my reasons I'm considering the upgrade:

    1) Much better battery life: my current phone has terrible battery life and even after replacing the battery it still drains

    2) Color: I love the new jet black color on the 7 Plus. My current phone is silver and I feel that the jet black color makes the phone look much sleeker

    3) Camera: I love the new portrait mode

    4) Storage: 16 GB is not enough! I watch a lot of movies and TV shows on my phone as well as listen to a lot of music and the 16 GB storage is too little

    5) No headphone jack: I'm one of the few people who likes Apple's move to remove the headphone jack because I feel that it's just an extra port. A couple of weeks ago when I was filling sauces at work, I accidentally got some on my phone and the only port that was affected was the headphone jack

    6) 6s Value: Currently, my 6s is worth $330 if I trade it in and that number will only go down the longer I wait

    7) Virtual home button: The virtual home button feels very futuristic (I've tried it out at the Apple Store)

    And finally, with the points I have listed above, I am convinced to upgrade. However, I need to convince my parents, as they will say that I just bought a new phone at the beginning of last year. BTW, I'm 21 and have my own job so I'll be paying for most of if not all of it.

    Thanks in advance for your thoughts

    1 AnswerCell Phones & Plans4 years ago
  • Should I replace my MacBook Pro with Surface Pro 4?

    Hi,

    When I started university in 2014 I wanted to do business, which is why I bought a 2014 MacBook Pro. Since then, I have changed my major to computer science and am thinking of buying a Windows PC instead. This is mainly because of software compatibility for my courses. One semester I took a networking course and we used a program that was only on Windows, so I had to find a way to convert it to .dmg. My instructors have also said that Widows is much more preferable for IT students. Also, I don't want to use bootcamp to run Windows on my Mac because I don't need 2 OS running which also takes up a lot of space. The price is relatively same at $1400. Any suggestions on whether I should go through with this?

    1 AnswerSoftware4 years ago
  • Is it possible to transfer some university credits and not others?

    Hi,

    This semester I took 3 courses and for one of them I failed. Since I m going back to the university I went to before, I want to transfer only 2 of the courses and not the third. Is this possible?

  • Is it possible to get scammed on Amazon?

    I ordered an iPhone 6 from Amazon.com 2 weeks ago. The confirmation email I got said it would arrive between July 8 and July 15 (which was yesterday). I haven't gotten it yet. Also, there was no tracking info for it. Call me paranoid, but I have a feeling it was a scam and the phone won't come. To make things worse, I sold my old phone 2 weeks ago so right now I don't have a phone at all. I know this sounds like a first world problem but I need my new phone.

    3 AnswersCorporations6 years ago
  • File not found error for <bit/stdc++.h> on Mac?

    I'm trying to use the <bit.stdc++.h> library in my program but keep getting an error saying "bit/stdc++.h file not found". I'm using a Mac.

    1 AnswerFinancial Services6 years ago
  • Why is my c++ program ignoring my switch statement?

    I'm writing a program that executes a function based on user's response. So I've used a switch statement that says if the user enters 1 it will run a certain function. The problem I'm having is that when I run the program, it completely skips over the switch statement. At the end of the switch statement I have a default that says"invalid choice" if the user enters anything but the choices. When the program runs it asks for my choice, which I enter. Now, no matter what I enter, it says "Invalid choice", which is the default at the end of the switch statement. I've checked the code and it looks fine. Don't know what's wrong.

    Here's the switch statement:

    //c = getchar();

    cin>> c;

    switch (c)

    {

    case '1':

    void ave();

    break;

    case '2':

    void lar();

    break;

    case '3':

    void sma();

    break;

    case '4':

    void med();

    break;

    case '5':

    void sorta();

    break;

    case '6':

    void sortd();

    break;

    default:

    cout<< "Invaid choice";

    return 0;

    }

    4 AnswersProgramming & Design6 years ago
  • Calling functions in a switch statement?

    I'm writing a program that executes a certain function based on user's response. For this, I used a switch statement. So like if the user entered '1' the program would execute function( ); I declared the functions before the int main( ) looking like this:

    void function( );

    when I try calling it in the switch statement:

    case '1':

    function( );

    break;

    However, I keep getting an error saying "function( )" referenced from _main in main.o

    Don't know how else to call the function without it being in int main.

    2 AnswersProgramming & Design6 years ago
  • Career path help?

    I'm in a rough situation right now. So first of all I just finished my first year of university. Originally, my plan was to do business administration which is what I got admitted into. So my dad told me I should do computer science instead because it has more opportunities when I graduate and that there are already too many people with business degrees. So I took computer science courses in my first year. Recently, I failed programming which is an essential course for computer science. Now, I have 2 options. I could use the summer to catch up on programming and continue doing comp science. Or, I could take business courses instead, because I'm still officially in the business faculty. But the problem with that is that not only would I be a year behind, but all the courses I took in my fist year will go to waste. Now before anyone tells me to go for whatever interests me more, I want to say that naturally, my talents are in business. I'm great at presentations, selling products, etc. The only reason I went for comp science is because there are more jobs. I still have the summer to decide whether to continue comp science or go for business. Any suggestions? Thanks in advance.

  • Good websites for blog?

    I want to write my own blogs. Which website should I use?

    2 AnswersProgramming & Design6 years ago
  • Should I follow this girl on Instagram?

    So there's this girl I have 2 classes with. A few weeks ago, I made a new friend and it turns out she's in his group. I just started talking to her today. I was looking at my friend's instagram and I found her account. Should I follow her or will it seem a bit creepy?

    4 AnswersSingles & Dating6 years ago
  • Is this unfair?

    Ok. So back in February it was my birthday and I wanted to buy an iPhone 6 with the birthday money I got. When I told my dad this, at first he said ok and that he'll look into it. But after waiting over a month, I asked him about it and he said I don't deserve one. Now, my sister's birthday is coming up (who is 2 years younger than me) and my dad happily buys her one the moment she says she wants one. I feel upset and I know he genuinely hates me.

    2 AnswersFamily6 years ago
  • Is my dad being unreasonable?

    So I have a mid term coming up this week and so I m studying on the weekend. My dad suddenly walks into my room and starts yelling at my because I m not studying the way he wants me to study, which is by writing everything repeatedly. I study by memorizing the concepts and then asking myself questions, which is how I learn best. Also, I tried both techniques last semester. The course in which I memorized, I got a B+ and in the course I wrote everything down I just barely passed. To add to this, my drivers test is in 2 days, which he is really mad about because he thinks my work is more important than my drivers test. I ve been attempting the drivers test for 2 years now, and I finally found a good date for it. Now he just hates me for disobeying him. My mom is taking my side and says that both are important and that I should still do my drivers test. Also, I m a university student, so I feel that it should be up to me how I study.

    3 AnswersFamily6 years ago
  • What is the c++ equivalent of the function scanf?

    I'm writing a program that converts between fahrenheit and celsius and need to use a function equivalent to scanf. I'm writing in c++. Basically, I have a line that says

    cout<<"Enter Fahrenheit value\n"

    and I want to store the user's answer in a variable and use it to do the calculations.

    1 AnswerProgramming & Design6 years ago
  • How do I compile and run a c++ program from my Mac terminal?

    Hi, I'm a new programmer. I have written a c++ program on my mac terminal and I can't run it. I'm using a MacBook Pro 2014 with OS X Yosemite. I have x code installed as well. I've also got emacs installed. So I'm having troubles compiling and executing the program.

    1 AnswerProgramming & Design6 years ago