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.
philqc721
YA user
Who do you think will win this week's Cup race at Michigan?
5 AnswersNASCAR6 years agoWhat's the healthiest item at KFC?
20 AnswersFast Food6 years agoIs farina gluten-free? Are there gluten-free versions?
2 AnswersAllergies6 years agoConstipation advice needed. It affects someone in my family. How can I get that person to relieve constipation woes?
If she feels that fasting for 3 days + (no food or water) will do the trick. That it will make the digestive system relax. I think its wrong.
She constantly thinks that drinking more will be counterproductive (feeling water sensations to the head) and that walking will make her dehydrated.
Then I would say you just need more fiber and keep drinking fluids (water) but she keeps refusing to believe me.
She doesn't believe in taking laxatives. So that's been ruled out for now.
She's just suffering from abdominal bloating and cramping and uncomfortable movements.
The doctor believes she doesn't have constipation and just wants her to gain weight (another issue due to the fact she keeps fasting which made her BMI drop) by eating "unhealthy" temporarily to gain some weight. He encouraged her to eat dark chocolates, milkshakes, things with higher calories/fat in it. She has been eating a lot of higher fat foods to gain some weight and it has been working for that issue but not her constipation issue.
So I feel that there's 2 issues here. The dietary plans for both issues collide. What to do?
2 AnswersDiet & Fitness6 years agoHTML help...I created a HTML file with code an all with a sample header, and a CSS file with one style change; to change the header color?
I have the two files linked and in the same folder. But the header won't change color. Why is that?
2 AnswersProgramming & Design6 years agoNon-organic seeds...?
3 AnswersAgriculture6 years agoI have a relatively green formosa papaya, how long do you expect it to ripen?
It's pretty hard now and only has a slight spot that turned yellow. Do I wait til it changes color? Does it even change color?
1 AnswerOther - Food & Drink6 years agoCan yogurt help rebuild a person's immune system?
1 AnswerOther - Food & Drink7 years agoIs there a link between aromas and having a tight neck and breathing issues?
I know someone who's experiencing that and I wanted to know more if there is some linkage between aromas (i.e. minty aroma from toothpaste and fragrance from shampoos) and having a tightening effect around the neck region and having heavy breathing.
Could someone provide me with their opinions and or credible sources? Solutions?
Could it be that the person I know is just overthinking (i.e. psychologically-induced panic attacks)?
This person is a young adult, female, and moderately active. Recently, she's also been told to avoid wheat in terms of dietary needs.
Are these conditions somehow affecting her immune system or are they two separate issues? If so, any solutions or feedback is greatly appreciated.
It's just baffling to me and I really want to help her get better.
1 AnswerRespiratory Diseases7 years agoHow to fix a corrupted image taken by a Nikon S6000 camera?
When I transferred over a bunch of photos to my laptop, one of them won't open and it says its corrupted. How do I fix it?
I've had no problems with my camera until now.
2 AnswersCameras7 years agoWhat are adaptive operators in the field of genetic algorithms?
I need a simple definition for adaptive operators. I can't find any on Google or Yahoo.
Sources greatly appreciated.
1 AnswerProgramming & Design8 years agoWhy I keep gettng Oracle Right Parenthesis missing error?
CREATE TABLE Owner
( OID integer primary key,
OFirst varchar(30) not null,
LName varchar(30) not null,
DOB Date,
OAddress varchar(75)not null,
VID integer foreign key
);
I don't see any syntax errors yet ORACLE SQL Application Express program keeps saying there is an error! Please help!
3 AnswersProgramming & Design9 years agoHow do you make C drive accessible again...?
I recently lost the ability to click through my C Drive on Windows Vista due to installation problems with Oracle XE version 11g. Does anyone know how I can reactivate the C drive again because now its showing it has zero memory when I know its not the case.
Also, in permissions, all of the checkboxes are checked for my username (ie Full control, read, write, etc.) So I'm stumped. Any help is greatly appreciated!
Please be descriptive.
1 AnswerOther - Computers9 years agoHow can I revert back to Windows Vista Start Menu?
Okay, here's my situation:
Recently my PC ran updates then the next day when I logged in, my Start Menu bar changed to Classic Windows theme.
It looks so Windows 98 to me. I don't like this.
How do I get it back to Windows Vista Start Menu (where the Start is not a rectangle but that circular Windows logo I know and love)
Please give me detailed instructions if you know.
Thanks and reply if you need further explanations.
3 AnswersSoftware1 decade agoCoders Wanted! Prime Numbers nxn table Help!!!?
How can I output a nxn table for my prime numbers program??
I got it to compile and run fine without the table but now the next step is to get the table to print. I tried and experiment so long that now I really need help. DO NOT OFFER ME FAKE OR SPAM SITES. I hate it when users try to get away with it and earn pts. Anyways that's my only rule against answering this question. Thanks to those who offer me the appropriate code help.
See code:
import java.util.*;
public class IsPrime {
public static Scanner scanner = new Scanner(System.in);
.
public static int readInt() {
System.out.print("Enter an integer: ");
while (!scanner.hasNextInt()) {
scanner.next();
System.out.print("That was not an integer. Please
try again: ");
}
return scanner.nextInt();
}
public static boolean isPrime(int n) {
if (n < 2) return false;
if (n % 2 == 0)
return (n == 2);
for (int i=3; i*i<=n; i+=2)
if (n % i == 0)
return true;
}
public static void main(String[] args) {
System.out.println("Prime Numbers\n");
int n = readInt();
if (isPrime(n))
System.out.printf("%d is a prime.\n",n);
else
System.out.printf("%d is not a prime.\n",n);
//THE PART I NEED HELP IN.
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++)
System.out.printf("%4d",i%j);
System.out.println();
}
}
}
1 AnswerProgramming & Design1 decade ago