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.

Derik
same HDD new parts?
my friend has new computer parts and a HDD with a preexisting OS on it. can we get the drivers for the new components onto that OS so it will boot?
4 AnswersDesktops5 years agochild custody?
my friend has a 3 year old daughter. his ex wants to move to Dubai and split the custody of his daughter 6 months each. anything he can do to stop her?
4 AnswersMarriage & Divorce5 years agoSQL create table not working. returns invalid identifier.?
create table NONGAME
(Column varchar(15) primary key,
Type varchar(15),
length decimal(2,0),
Decimal_places decimal(2,0),
Nulls_allowed varchar(15),
Description varchar(25)
);
2 AnswersProgramming & Design5 years agopc gaming, black screen, crashing, driver failure?
My computer is pretty decent. an fx-850 8core/4gh, r280x and 10gb ram. here's the issue. I'll be playing a game and it will crash. screen goes black, resolution is refreshed, audio remains. sometimes I get a message "your video driver has crashed and has recovered". firs thing you should know is that some of my games don't do this at all such as darksouls 2. shadow of mordor usually does this over an hour into. Lords of the fallen usually takes half an hour but it just happened within 10 minutes. Here's the tricky part. Alien isolation did it as well but after turning down the graphics it does not do it at all. So I figure this solution could work for other games as well. no luck. Two great examples are the greenlit games "no more room in hell" and "the fifth day". both of these titles are pretty low end in graphics, but they are unplayable due to this problem. the second game never crashes however it just continues to turn black and than it actually recovers only to go black again. So in essence the problem is very complex. I have tried altering settings in AMD catalyst manager with no luck. I than did a complete reinstalled of my system and installed all of the updates available. I also tried other drivers for my card. I thought perhaps the system is overheating but that was not the case at all. Any ideas at all. please,
1 AnswerSoftware6 years agoc programming triangles?
this is oneof the four triangles i have to make. i cant come up with with any logical set of steps that would lead to this. as far as i can tell there are 3 variables, but nobody gives them actual names for me to work off of. i need to use a for loop for each. help
*
**
***
****
*****
3 AnswersProgramming & Design8 years agofind origin of a decease?
how does finding where a decease begins help cure it. Im watching the film "world war z" and wondering how does that make a difference in the research progress. explain the thought process behind this
1 AnswerWords & Wordplay8 years agoc programing. "left of comma not working"?
im making this program that should output 10 lines of 8 asterisks, every other line should be indented. my indentation is not working
#include <stdio.h>
int main(int argc, char** argv)
{
int counter = 0;//stars on line
int stars = 0;//stars in total
int space = 0;
while (stars < 81) {//program will stop at 80 stars
if(space = 0 , counter <= 8){//rows 8 stars long
printf( "%s" , "* " );//prints a star
printf( "%s" , " " );//prints a space
counter = counter + 1 ; stars = stars +1; space = space + 1;}//increments counter and stars for new line and program termination
else if (space > 0 , counter <= 8){//rows 8 stars long
printf( " " );//prints a space
printf( "%s" , "* " );//prints a star
printf( "%s" , " " );//prints a space
counter = counter + 1 ; stars = stars +1; space = 0;}//increments counter and stars for new line and program termination
else if (counter = 8) {printf( "\n" );//new line after 8 stars
counter = 0;}//controls row length of 8 stars
}
}
Programming & Design8 years agoc programing, binary to decimal?
This program should output a number made up of 16,8,4,2,1. a 1 adding to the counter and a 0 not. when i run the program i get massive numbers?
#include <stdio.h>
int main(int argc, char** argv)
{
int input;
unsigned int counter;
printf ("Please input a 5 digit binary number\n") ;
scanf( "%d" , &input );
if (input / 10000 == 1) {counter = counter + 16 ;}
else if (input / 10000 == 0) {counter = counter + 0 ;}
input = input - 10000 ;
if (input / 1000 == 1) {counter = counter + 8 ;}
else if (input / 1000 == 0) {counter = counter + 0 ;}
input = input - 1000 ;
if (input / 100 == 1) {counter = counter + 4 ;}
else if (input / 100 == 0) {counter = counter + 0 ;}
input = input - 100 ;
if (input / 10 == 1) {counter = counter + 2 ;}
else if (input / 10 == 0) {counter = counter + 0 ;}
input = input - 10 ;
if (input / 1 == 1) {counter = counter + 1 ;}
else if (input / 1 == 0) {counter = counter + 0 ;}
printf ("%u" , &counter ) ;
}
3 AnswersProgramming & Design8 years agounderwater advanced society?
Does anybody have any idea as to weather or not it seems possible for an underwater society to develop scientificly. lets say they are intelligent and have appendages that allow them to handle small objects and build. Does the water not present obvious problems for development. no fire, no electricity, no chemistry due to the skewed results of the water. It seems to me that they will never cross the thresh hold from thinker to doer simply because they can not.
2 AnswersBiology8 years agomaking a second access point?
I have a wirless netgear router that gives poor signal to my computer upstairs. i have been attempting to make a second access point using this wirless encore router. it just not working. walk me through the basics?
2 AnswersComputer Networking8 years agoreligion a mandatory development for a civilization?
When looking back to human history and simply logical conclusion, it becomes evident to me that when people start asking questions about their origins, they come to the conclusion of a creator. i can not blame them for coming to this conclusion due to their very early culture. Can you think of any way a human society would not come to this conclusion as it ascended through time?
1 AnswerSociology8 years agosolid state worth the price?
my cousin and I are having an argument.
for 140$ you can either have a 3TB HDD or a 128GB SSD. which do you chose?
3 AnswersDesktops8 years agowhy cant i stream HD video?
quad core
10gb ram
gtx550
why in gods name can i not stream HD videos without lag
1 AnswerOther - Computers8 years agowhy do many pc games not have dedicated servers like their console counter-part?
games like killing floor and left 4 dead. multiplayer games with no dedicated servers
2 AnswersPC8 years agovisual basic message box title?
not a msgbox. a messagebox. messagebox.show("blabla") & variable & "blabla"...etc
i need to add a title to it
2 AnswersProgramming & Design8 years agovisual basic messagebox help?
MessageBox.Show(CStr("subtotal is: " & dbltotal.ToString("C") & vbNewLine & "tax is: " &
dblTax.ToString("C") & vbNewLine & "Total is: " & dbloutput.ToString("C"))))
im trying to add a title to this. so when the message box comes up its title will be "Cody's store 12/7/2012"
1 AnswerProgramming & Design8 years agohtml/css background color?
On my website, anywhere there is text the background is black. can i make it so that this background color only goes across the page as far as the text goes?
1 AnswerProgramming & Design8 years agovisual basic input box cancel button?
How can i make an event occur when the cancel button is clicked on the input box. im making a cash register of sorts. when the cancel button is clicked all previously entered values should be added and displayed in a message box
2 AnswersProgramming & Design8 years agohtml/css background image wont show in...?
firefox,chrome. my background image is just a white background. in IE it works fine
3 AnswersProgramming & Design9 years agoexcel, simple issue please help?
lets say the number is 100 at the top. i need this 100 to decrease by 3 for the cell bellow it. so now the cell beloow it will be 97, and the cell beloow that 94,91,88 etc. please help
2 AnswersSoftware9 years ago