Answerbag: POP Fan's answers http://www.answerbag.com/profile/1030264 New Answerbag answers from POP Fan Mon, 28 May 2012 15:04:00 -0700 Mon, 28 May 2012 15:04:00 -0700 Answer to Science seems to be well on the way to petroleum free automobiles.What about aircraft? Could a 747 use an alternate fuel source? http://www.answerbag.com/a_view/10723701 Science seems to be well on the way to petroleum free automobiles.What about aircraft? Could a 747 use an alternate fuel source?<br /><br />Theoretically, a "bio-fuel" jet engine could be developed, but it's not likely to happen anytime soon. Jet engines use specially refined fuel, and bio-fuel isn't even a good environmental option anyway. Suffice it to say that electric 747s are definitely out of our reach for now. Mon, 16 May 2011 18:01:37 -0700 http://www.answerbag.com/a_view/10723701 Answer to Is the phrase 'felt like' slang? An example of would be 'I felt like eating cheese'. http://www.answerbag.com/a_view/10723687 Is the phrase 'felt like' slang? An example of would be 'I felt like eating cheese'.<br /><br />It's disputed that "like" can be used as a conjuction, similar to "as". However, it is not technically slang, and it highly accpetable in spoken word. Mon, 16 May 2011 17:57:08 -0700 http://www.answerbag.com/a_view/10723687 Answer to If you could invent a word, what would it be and mean? http://www.answerbag.com/a_view/10723666 If you could invent a word, what would it be and mean?<br /><br />Two things come to mind, both of which are primarily intended to solve a problem I common have in writing. The first is the creation of a word that can be used in the place of the "singular they"--a word to refer to someone in the third person without specifying gender or using the cumbersome "he... Mon, 16 May 2011 17:51:01 -0700 http://www.answerbag.com/a_view/10723666 Answer to I need someone help badly! I'm doing a piano piece on Gary Jules' Mad World, I got MOST of the left hand (bass) done, and also I'm... http://www.answerbag.com/a_view/10723597 I need someone help badly! I'm doing a piano piece on Gary Jules' Mad World, I got MOST of the left hand (bass) done, and also I'm...<br /><br />The clef simply indiciates which line is associated with which note. Regardless, the left hand follows the bottom staff and the right follows the top staff. They can cross over, but in those instances there are generally special markings. As for the song itself, are you trying to figure this out... Mon, 16 May 2011 17:28:40 -0700 http://www.answerbag.com/a_view/10723597 Answer to VB6 vs VB.NET... was learning VB6 just a waste now? http://www.answerbag.com/a_view/10723584 VB6 vs VB.NET... was learning VB6 just a waste now?<br /><br />Maybe I'm a little biased, but I personally feel that learning VB6 was always a waste. I mean, if it benefitted you in some way, then I guess it served a purpose, but VB6 was/is a terrible language in my opinion. In fact, I was never aware of it being used for anything outside of simple, personal... Mon, 16 May 2011 17:21:21 -0700 http://www.answerbag.com/a_view/10723584 Answer to How can I make a random number generator to randomize numbers in a specified range? http://www.answerbag.com/a_view/9616846 How can I make a random number generator to randomize numbers in a specified range?<br /><br />Usually you would get the current system time in seconds or calculate how long the program had been running and use that value as your starting point, because it's relatively random. From there, you need to create an equation that will turn that number into a number between the specified range. ... Mon, 06 Sep 2010 10:29:50 -0700 http://www.answerbag.com/a_view/9616846 Answer to How to make a delay routine for assembly programs? http://www.answerbag.com/a_view/9616808 How to make a delay routine for assembly programs?<br /><br />If you want the delay to be relatively system-independant, you can use the real time clock to control your loop. Most operating systems will provide a routine for accessing the clock, but you can also access it directly. There is a free PDF book called Art of Assembly available for download. It... Mon, 06 Sep 2010 10:19:38 -0700 http://www.answerbag.com/a_view/9616808 Answer to In a fight, who would win, Burt and Ernie or Chandler and Joey? http://www.answerbag.com/a_view/9614147 In a fight, who would win, Burt and Ernie or Chandler and Joey?<br /><br />Bert would terrify Chandler and Joey with his sentient unibrow. Sun, 05 Sep 2010 17:56:29 -0700 http://www.answerbag.com/a_view/9614147 Answer to Christians- Help me understand the concept of believing in both God and Evolution. http://www.answerbag.com/a_view/9614135 Christians- Help me understand the concept of believing in both God and Evolution.<br /><br />I like to think of the creation of Adam as the point in which, in Christian terms, humans were given souls. Sort of, the point where these evolved apes turned into sentient beings that were aware of themselves and had conscious thought and so on. The point at which Humans became especially... Sun, 05 Sep 2010 17:52:17 -0700 http://www.answerbag.com/a_view/9614135 Answer to what is meaning of atomic datatype with examples http://www.answerbag.com/a_view/9610856 what is meaning of atomic datatype with examples<br /><br />I may be wrong, but I think atomic data types are the instrinsic data types, or the base data types. For example, in C the atomic data types would be int, char, float, double. They are atomic because they cannot be divided into a smaller data type (though, this is really an abstraction because... Sat, 04 Sep 2010 17:10:36 -0700 http://www.answerbag.com/a_view/9610856 Answer to whats the best programming language for me to learn? i know a fair bit about as2 I'm 14. I want to make games.text based, 2D, 3D. whatever. http://www.answerbag.com/a_view/9610848 whats the best programming language for me to learn? i know a fair bit about as2 I'm 14. I want to make games.text based, 2D, 3D. whatever.<br /><br />You're in for a long ride if you want to make computer games. Games require a deep knowledge of the language (unless they're simple). And 3D requires a good understanding of math for best results. I first learned C, though i had done GamerMaker before that. GameMaker is good for getting into... Sat, 04 Sep 2010 17:06:06 -0700 http://www.answerbag.com/a_view/9610848 Answer to in c arithmetic which is allowed {} [] () none of the above http://www.answerbag.com/a_view/9610844 in c arithmetic which is allowed {} [] () none of the above<br /><br />The braces "{}" are used to indicate the starting and ending of a block. The square brackets "[]" are used to indicate indices in arrays. For arithmetic "()" alter the order of operations. They can be nested to any reasonable level. However, they are also used to enclose function... Sat, 04 Sep 2010 16:54:22 -0700 http://www.answerbag.com/a_view/9610844 Answer to a c++ program to swap the values of two numbers a and b http://www.answerbag.com/a_view/9610840 a c++ program to swap the values of two numbers a and b<br /><br />Did you try surrounding your code with /* */? Sat, 04 Sep 2010 16:52:19 -0700 http://www.answerbag.com/a_view/9610840 Answer to Hi 2 al...... I jus know a little bit of c basics.. But i wanna study C programming thoroughly as am nearing my placements......can somebody tel me wer 2 get e-books and c tutorials such tat i can finish in 10 days time..... http://www.answerbag.com/a_view/9539675 Hi 2 al...... I jus know a little bit of c basics.. But i wanna study C programming thoroughly as am nearing my placements......can somebody tel me wer 2 get e-books and c tutorials such tat i can finish in 10 days time.....<br /><br />This is an old question, so I don't know if you're still looking, but I learned, originally, from a book called "C: The Complete Reference". It has some errors in it, but they're minor and this is the text that brought me from only understanding how to use printf and scanf to creating full... Wed, 18 Aug 2010 18:02:29 -0700 http://www.answerbag.com/a_view/9539675 Answer to what is the best and most simple to use C programming.. program? I switched to microsoft visual 08 but I dont understand how to use it http://www.answerbag.com/a_view/9539633 what is the best and most simple to use C programming.. program? I switched to microsoft visual 08 but I dont understand how to use it<br /><br />I personally prefer Dev-C++. It's completely free for download. It uses the Mingw compiler, which is an alteration of the GNU compiler for Linux that allows it to run on Windows. It has a few quirks, but in general it's done its job well. Wed, 18 Aug 2010 17:53:26 -0700 http://www.answerbag.com/a_view/9539633 Answer to If 'God can do anything', can he build a mountain so strong he can't move it himself? http://www.answerbag.com/a_view/8617899 If 'God can do anything', can he build a mountain so strong he can't move it himself?<br /><br />He can build such a mountain, and he can move it. It's the dumb answer to the dumb question. Mon, 18 Jan 2010 16:19:06 -0800 http://www.answerbag.com/a_view/8617899 Answer to Is that possible to build a time machine http://www.answerbag.com/a_view/8501901 Is that possible to build a time machine<br /><br />I would say not. Scientifically, most agree that travelling backwards in time is definitely impossible. Many will suggest that time travel would be possible if you could travel at a speed greater than the speed of light, but even if they&#039;re right, it&#039;s not possible for matter to exceed... Wed, 09 Dec 2009 13:02:06 -0800 http://www.answerbag.com/a_view/8501901 Answer to Where in the sky would you expect to see a rainbow in the evening? http://www.answerbag.com/a_view/8501869 Where in the sky would you expect to see a rainbow in the evening?<br /><br />The rainbow will be across from the sun, which would be in the east in the evening. Also, the bottom of the rainbow will be at approximately a 42&ordm; angle to your eyes, with the top being about 48&ordm; to your eyes. Wed, 09 Dec 2009 12:56:41 -0800 http://www.answerbag.com/a_view/8501869 Answer to Have you ever felt the interest to "make a computer virus". . what virus name would you use? .. http://www.answerbag.com/a_view/8501858 Have you ever felt the interest to "make a computer virus". . what virus name would you use? ..<br /><br />I would like to try to make one, but not to actually send out to other people. Just to see if I could do it, and if so how well. Wed, 09 Dec 2009 12:54:53 -0800 http://www.answerbag.com/a_view/8501858 Answer to Is scanning a4 size paper in 300dpi the same as/a good equivalent to scanning a5 in 600dpi? http://www.answerbag.com/a_view/8496481 Is scanning a4 size paper in 300dpi the same as/a good equivalent to scanning a5 in 600dpi?<br /><br />The size of the image and the resolution are two entirely different things. The resolution is the number of pixels the computer uses to display an image (at 100%), the size means the dimensions of the real-world object. Tue, 08 Dec 2009 16:38:38 -0800 http://www.answerbag.com/a_view/8496481 Answer to Do you really believe that 2012 will be the end of the world for us? http://www.answerbag.com/a_view/8476361 Do you really believe that 2012 will be the end of the world for us?<br /><br />It could be, but it&#039;s not any more likely than any other year has been or will be (okay, billions of years from now there will be a large risk concerning the death of the sun). Still, none of the theories have held up. There&#039;s a good article about it somewhere in the cracked.com... Sun, 06 Dec 2009 11:59:20 -0800 http://www.answerbag.com/a_view/8476361 Answer to Anybody ever have/had a computer with an Intel Celeron processor? I know it's a lower-end processor. If so, can you please let me know your thoughts about it (it was ok, slow, good, horrible, etc)? http://www.answerbag.com/a_view/8476314 Anybody ever have/had a computer with an Intel Celeron processor? I know it's a lower-end processor. If so, can you please let me know your thoughts about it (it was ok, slow, good, horrible, etc)?<br /><br />I have one, it works fine. The only time it would be problematic is if you wanted to do any high-end gaming or watch and high definition videos of significant length. For your average computing needs, you won&#039;t notice any problems, I never have. You even have MMX so there is minimal... Sun, 06 Dec 2009 11:55:02 -0800 http://www.answerbag.com/a_view/8476314 Answer to 111,111,111 X 111,111,111 = ? an intreastng answer http://www.answerbag.com/a_view/8466068 111,111,111 X 111,111,111 = ? an intreastng answer<br /><br />It&#039;s not really that surprising. If 11x11 is 121, then 111x111 is going to be 12321. And 1111x1111 is 1234321. It goes on until you pass the ten mark, then it gets shifted because of the carry. Sat, 05 Dec 2009 09:44:48 -0800 http://www.answerbag.com/a_view/8466068 Answer to How do I solve a question like this? 5√2-5 (Five x the square root of two - five) http://www.answerbag.com/a_view/8466050 How do I solve a question like this? 5√2-5 (Five x the square root of two - five)<br /><br />If it means sqrt(2-5) then you&#039;re going to have an imaginary answer, approximately 1.73205i. Multiply that by five and you have 8.66... If it&#039;s 5*sqrt(2)-5, then the answer would be 2.07. It&#039;s interesting that we end up with two numbers that are significant: 8.66, and 7.07... Sat, 05 Dec 2009 09:42:16 -0800 http://www.answerbag.com/a_view/8466050 Answer to Have you ever been to the Bermuda triangle? would you ever go? http://www.answerbag.com/a_view/8466009 Have you ever been to the Bermuda triangle? would you ever go?<br /><br />Why not? It&#039;s just a bunch of islands. And the &quot;mysterious occurances&quot; don&#039;t even form a triangle when mapped out, it&#039;s a square. Sat, 05 Dec 2009 09:34:10 -0800 http://www.answerbag.com/a_view/8466009 Answer to Where do I find out how much read-only memory my computer has? http://www.answerbag.com/a_view/8465956 Where do I find out how much read-only memory my computer has?<br /><br />eam587&#039;s answer would tell you the amount of RAM you have. I think that&#039;s probably what you meant, but you said read-only memory, which is completely different. I don&#039;t think operating systems usually provide a way for measuring ROM, you might be able to figure it out if you... Sat, 05 Dec 2009 09:25:59 -0800 http://www.answerbag.com/a_view/8465956 Answer to When CD is scratched up, does it still read the disc? http://www.answerbag.com/a_view/8432096 When CD is scratched up, does it still read the disc?<br /><br />It depends on the depth, breadth, and length of the scratch as well as where it occured. Even using different players may yield different results. Also, a scratch travelling around the disc in a circle or spiral will be much more damaging than a straight line from the edge of the disc to the... Tue, 01 Dec 2009 15:18:42 -0800 http://www.answerbag.com/a_view/8432096 Answer to How to make a programming language?is it hard than making a os? http://www.answerbag.com/a_view/8431092 How to make a programming language?is it hard than making a os?<br /><br />I don&#039;t know if it&#039;s harder than making an OS, but it can be very hard. First, you need to decide what your language&#039;s purpose will be. If you just want to do it for fun, you might want to rethink how much fun it will be debugging a compiler. If you can&#039;t think of a purpose... Tue, 01 Dec 2009 13:18:38 -0800 http://www.answerbag.com/a_view/8431092 Answer to Christians: are you willing to give your life for your Faith? http://www.answerbag.com/a_view/8431024 Christians: are you willing to give your life for your Faith?<br /><br />I&#039;d definitely be willing to die protecting my faith. If someone threatened to kill me unless I denounced God, I would take death and hope I make it into heaven. (I think I will) Tue, 01 Dec 2009 13:10:27 -0800 http://www.answerbag.com/a_view/8431024 Answer to Why is your God the true God? State your faith. http://www.answerbag.com/a_view/8431019 Why is your God the true God? State your faith.<br /><br />I don&#039;t even know. I went to sleep one night borderline athiest, woke up the next day full on Christian. If you ask me why I believe God exists, I wouldn&#039;t be able to answer. As I said, Christian. But not any particular denomination. Tue, 01 Dec 2009 13:09:18 -0800 http://www.answerbag.com/a_view/8431019 Answer to What comes after the number Googolplex? http://www.answerbag.com/a_view/8423454 What comes after the number Googolplex?<br /><br />It&#039;s just googolplex and one, like how a hundred and one comes after one hundred. If you just want a larger number, you could use: 10^10^10^1000 You could come up with any arbitrarily large number, but this particular number has some significance that I can&#039;t remember. Try... Mon, 30 Nov 2009 15:30:35 -0800 http://www.answerbag.com/a_view/8423454 Answer to Who out there REFUSES to get the H1N1 vaccine? Why? http://www.answerbag.com/a_view/8423400 Who out there REFUSES to get the H1N1 vaccine? Why?<br /><br />I don&#039;t see a point. I&#039;ve never gotten the flu, I rarely get sick. If I do get swine flu, I&#039;ll lie in bed for a few days and it won&#039;t really be that big a deal. The only people who really need to get such a shot are high-risk people and those that get sick easily. Mon, 30 Nov 2009 15:23:19 -0800 http://www.answerbag.com/a_view/8423400 Answer to Is it possible to delete one's memory? http://www.answerbag.com/a_view/8422532 Is it possible to delete one's memory?<br /><br />Some people argue that it can never truly be erased. Usually, when you forget something, it&#039;s not that it isn&#039;t there, but that you can find it. Imaging having a computer with infinite harddrive space. This harddrive contains a large file for every instant of your life after the... Mon, 30 Nov 2009 13:19:58 -0800 http://www.answerbag.com/a_view/8422532 Answer to What's a song that you would consider flawless? http://www.answerbag.com/a_view/8422436 What's a song that you would consider flawless?<br /><br />Ben Folds Five - Army http://www.youtube.com/watch?v=o-GDpJ44B_c&amp;feature=fvsr Mon, 30 Nov 2009 13:04:17 -0800 http://www.answerbag.com/a_view/8422436 Answer to If Jesus came back to life then did he really make a sacrifice? You'd think that a sacrifice would be with someone forever. Just a thought. http://www.answerbag.com/a_view/8422420 If Jesus came back to life then did he really make a sacrifice? You'd think that a sacrifice would be with someone forever. Just a thought.<br /><br />He still endured extreme torture. Religous or not, no one deserves to be treated that way, especially without fair reason. Death isn&#039;t really a sacrifice in my opinion. But enduring the pain he did is. Mon, 30 Nov 2009 13:01:43 -0800 http://www.answerbag.com/a_view/8422420 Answer to How do you find the angle of sin theta = 1/2 (square root 2)? (note: the angle is >50*) http://www.answerbag.com/a_view/8413869 How do you find the angle of sin theta = 1/2 (square root 2)? (note: the angle is >50*)<br /><br />So, the sin of the angle is 1/2*sqrt(2) and you want the angle? Simply find 1/2 the square root of 2, about 0.70710678118654752440084436210485. To find the angle, use arc sine, should be found on any scientific calculator. I can tell you just by looking at it that the angle was 45&ordm; (if... Sun, 29 Nov 2009 12:19:24 -0800 http://www.answerbag.com/a_view/8413869 Answer to What is the main reason Atheists don't believe in God? http://www.answerbag.com/a_view/8413813 What is the main reason Atheists don't believe in God?<br /><br />Athiests want proof to believe in something. It&#039;s understandable to want proof that God exists, but such proof would defeat the entire purpose of &quot;faith&quot;. If there was proof, God wouldn&#039;t be able to separate the sinners from those that deserve to make it in to heaven... Sun, 29 Nov 2009 12:13:00 -0800 http://www.answerbag.com/a_view/8413813 Answer to What is the square root of 50 http://www.answerbag.com/a_view/8413750 What is the square root of 50<br /><br />About 7, so use this formula: sqrt: y = (x + (y/x))/2 where x is our guess, 7. This will give you a result, ~7.07 Now use 7.07 as x and do it again. The more times you do it, the closer you get. Sun, 29 Nov 2009 12:03:31 -0800 http://www.answerbag.com/a_view/8413750 Answer to Are we a virus to the world? http://www.answerbag.com/a_view/8413665 Are we a virus to the world?<br /><br />No, I feel the world would be worse off without us, not better. And it would be quite boring having no intelligent life on earth. At the very least, we would need to wait millions of years for something else to evolve to our level, and that might never happen. Sun, 29 Nov 2009 11:52:41 -0800 http://www.answerbag.com/a_view/8413665 Answer to Write any two properties of the image of the mirror that is used in the house. http://www.answerbag.com/a_view/8413657 Write any two properties of the image of the mirror that is used in the house.<br /><br />Laterally inverted Virtual Equal in size (hi = ho) Equal distance from mirror (di = -do) Sun, 29 Nov 2009 11:51:28 -0800 http://www.answerbag.com/a_view/8413657 Answer to Do you want to chat with an intelligent robot online? Click on the link in my answer. http://www.answerbag.com/a_view/8406602 Do you want to chat with an intelligent robot online? Click on the link in my answer.<br /><br />Intelligent robot? Those two words don&#039;t go together. Sat, 28 Nov 2009 15:42:19 -0800 http://www.answerbag.com/a_view/8406602 Answer to In your opinion what is the best os for my pc? Here are the specs: 700 mhz processor, 128mb ram, 400 gb hard drive. http://www.answerbag.com/a_view/8406526 In your opinion what is the best os for my pc? Here are the specs: 700 mhz processor, 128mb ram, 400 gb hard drive.<br /><br />I&#039;d say Win98SE and/or DOS. But that&#039;s the suggestion I&#039;d make for any computer. But you would need to do some complicated driver work if you wanted to have a high end video card or something. Sat, 28 Nov 2009 15:30:21 -0800 http://www.answerbag.com/a_view/8406526 Answer to What does awesomeness multiplied by a billion equal? http://www.answerbag.com/a_view/8399418 What does awesomeness multiplied by a billion equal?<br /><br />Ben Folds Fri, 27 Nov 2009 17:16:46 -0800 http://www.answerbag.com/a_view/8399418 Answer to Can u make 2+2=5 http://www.answerbag.com/a_view/8399411 Can u make 2+2=5<br /><br />You could probably make a proof that uses illusive division by zero to make it seem like 2+2=5, but of course the fallacy makes it worthless. Fri, 27 Nov 2009 17:16:07 -0800 http://www.answerbag.com/a_view/8399411 Answer to Wwhen do you use degrees? or Radian in trigonmetry? i need to find a length of one triangle the degrees is already givin for corner of the triangle but i do not know whether to use the degree mode or radain mode http://www.answerbag.com/a_view/8399403 Wwhen do you use degrees? or Radian in trigonmetry? i need to find a length of one triangle the degrees is already givin for corner of the triangle but i do not know whether to use the degree mode or radain mode<br /><br />Yuu should use degress for most trigonemtric functions. There&#039;s no difference if you convert to radians first and perform the calculation. Degrees are much more people-friendly than radians. However, sometimes you need radians. Computers use radians to calculate sine, cosine, tanget, and... Fri, 27 Nov 2009 17:14:35 -0800 http://www.answerbag.com/a_view/8399403 Answer to Do you like to pull false statistics out of your ass when arguing your point? http://www.answerbag.com/a_view/8399379 Do you like to pull false statistics out of your ass when arguing your point?<br /><br />I&#039;ve done this accidentally before. Like I&#039;ll hear one statistic that involves 65%, and then I&#039;ll mix it up with something else. Fri, 27 Nov 2009 17:10:57 -0800 http://www.answerbag.com/a_view/8399379 Answer to What is the longest a person can hold his breath for? http://www.answerbag.com/a_view/8397777 What is the longest a person can hold his breath for?<br /><br />I think the record is 7-9 minutes or something. But people can survive hours without oxygen under the right circumstances. Fri, 27 Nov 2009 13:19:23 -0800 http://www.answerbag.com/a_view/8397777 Answer to Waht became obsolete because of the computer and internet? http://www.answerbag.com/a_view/8397732 Waht became obsolete because of the computer and internet?<br /><br />Not particullarly because of computers, but hand held calculators made doing math by hand practically extinct. I&#039;m talking about multiplication, division, addition, and subtraction, more complicated formulas need to be done by hand. They used to teach kids how to calculate things using... Fri, 27 Nov 2009 13:12:38 -0800 http://www.answerbag.com/a_view/8397732 Answer to How do I create nested dialogs in a Win32 application? No MFC please. I'm using the Windows API. http://www.answerbag.com/a_view/8397709 How do I create nested dialogs in a Win32 application? No MFC please. I'm using the Windows API.<br /><br />I&#039;m not sure what you mean by &quot;nested dialogs&quot;, but you can have one dialog box create another dialog box. Fri, 27 Nov 2009 13:09:08 -0800 http://www.answerbag.com/a_view/8397709 Answer to Do you believe in aliens? Why? http://www.answerbag.com/a_view/8397679 Do you believe in aliens? Why?<br /><br />No really. I know probabilistically, there are almost definitely other life forms out there, but I&#039;m going to go with the small odds here. At the very least, the alien abduction, crop circles, area 51 conspiracies, and such are all definitely fake/wrong. Fri, 27 Nov 2009 13:04:06 -0800 http://www.answerbag.com/a_view/8397679 Answer to Which console is right for you? http://www.answerbag.com/a_view/8397667 Which console is right for you?<br /><br />I assume I&#039;ll eventually get a PS3 (nothing can beat Gran Turismo), but for now I&#039;m just sticking with my PS1 and PS2. I&#039;m not a big online gamer, and I just find the wii dumb. I&#039;m waiting for God of War 3 and Gran Turismo 5, by which time the PS3 will be somewhat cheaper. Fri, 27 Nov 2009 13:02:23 -0800 http://www.answerbag.com/a_view/8397667 Answer to Why does my computer, all of a sudden, get real slow for a few minutes, and then it is back to it normal speed? Mine will be doing great and bingo, it gets real slow just for a few minutes. Anyone here know why this happens? http://www.answerbag.com/a_view/8381460 Why does my computer, all of a sudden, get real slow for a few minutes, and then it is back to it normal speed? Mine will be doing great and bingo, it gets real slow just for a few minutes. Anyone here know why this happens?<br /><br />Mine does that if I leave it on for too long. Too long, like one month or longer. Except, that means never being turned off or entering sleep mode. So maybe you need to let it rest for a while? Wed, 25 Nov 2009 13:20:25 -0800 http://www.answerbag.com/a_view/8381460 Answer to How does a microchip work and what is meant by chipping If anybody knows the answere could thay give me a link on chipping for my research Thank you http://www.answerbag.com/a_view/8372318 How does a microchip work and what is meant by chipping If anybody knows the answere could thay give me a link on chipping for my research Thank you<br /><br />I don&#039;t know what chipping is, but I know how a chip works. Basically, you have these microscopic components, made of semi-conductors, called transistors. They have two inputs, and one output (or the other way around). In order for current to flow from the first input to the output, there... Tue, 24 Nov 2009 13:11:24 -0800 http://www.answerbag.com/a_view/8372318 Answer to What is multiple indirections in c++? http://www.answerbag.com/a_view/8372271 What is multiple indirections in c++?<br /><br />Multiple indirection is making a pointer to another pointer. For example: int x, *y, **z, ***q; x is an int variable, y is a pointer to an int variable. z is a pointer to a pointer to an int variable. This can be layered as many times as you want. Basically, you can have a variable that... Tue, 24 Nov 2009 13:05:17 -0800 http://www.answerbag.com/a_view/8372271 Answer to How does white light seperate in a prism? (obviously by refraction) - but the actual mechanism which causes the frequencies to seperate. The angle of refraction is dependent on the refractive index and relative permittivity which are material properties.. http://www.answerbag.com/a_view/8363090 How does white light seperate in a prism? (obviously by refraction) - but the actual mechanism which causes the frequencies to seperate. The angle of refraction is dependent on the refractive index and relative permittivity which are material properties..<br /><br />Light refraction is similar to a car driving half on the road and half on sand. Without a limited-slip, this would cause the car to turn towards the sandy side, because the left of the car is moving faster than the right. In the case of white light, each wavelength would refract at a different... Mon, 23 Nov 2009 13:25:20 -0800 http://www.answerbag.com/a_view/8363090 Answer to You can`t see the air, but without it you will die. You can`t see the electricty in the lines, but touch it and you will surely know its there. So why is it so hard for you to beleive that God is real?Everything in the universe declares his glory! http://www.answerbag.com/a_view/8362987 You can`t see the air, but without it you will die. You can`t see the electricty in the lines, but touch it and you will surely know its there. So why is it so hard for you to beleive that God is real?Everything in the universe declares his glory!<br /><br />Hey, I&#039;m a Christian myself, but you can&#039;t force your beliefs on other people. These are the kinds of questions that give us Christians bad names. Mon, 23 Nov 2009 13:09:12 -0800 http://www.answerbag.com/a_view/8362987 Answer to Whats the difference between dvd-r and a cd http://www.answerbag.com/a_view/8362974 Whats the difference between dvd-r and a cd<br /><br />CDs are like records. They have little tracks in them, like the grooves in records. Except that the tracks in CDs are immensely thin. This allows a CD to hold a lot of information, about 80min of music/video and 703MB of data. DVDs are the same, except the tracks are even thinner, which allow... Mon, 23 Nov 2009 13:06:58 -0800 http://www.answerbag.com/a_view/8362974 Answer to Are "climate alarmists" making it up as they go along? http://www.answerbag.com/a_view/8350245 Are "climate alarmists" making it up as they go along?<br /><br />Probably. At the very least their statistics are way off. They&#039;ve been saying &quot;We only have fifty years before it&#039;s too late&quot; for the last two decades, at least. Sun, 22 Nov 2009 06:21:29 -0800 http://www.answerbag.com/a_view/8350245 Answer to Why is 2012 the new 2000 (end of the world) Is there some real reason they came up with this number? http://www.answerbag.com/a_view/8350237 Why is 2012 the new 2000 (end of the world) Is there some real reason they came up with this number?<br /><br />Well, the mayan calendar ends in 2012. People just took that and ran with it. Then those people starting stretching facts and throwing statistics at everyone, they got media attention, and now we have to endure end of the world questions for the next three years. This is the only bit of the... Sun, 22 Nov 2009 06:20:10 -0800 http://www.answerbag.com/a_view/8350237 Answer to Do you think Coke and Pepsi taste the same? http://www.answerbag.com/a_view/8350153 Do you think Coke and Pepsi taste the same?<br /><br />Not at all. The largest difference is that Pepsi has more sugar and less carbonated water. I prefer Coke myself, but Pepsi will do in its absence. If you add a little water to a can of Pepsi and leave a can of Coke open for a few minutes, they begin to taste extremely similar. Sun, 22 Nov 2009 06:05:21 -0800 http://www.answerbag.com/a_view/8350153 Answer to An atheist is offering $1 million for proof that God exists. Would any religious person risk offering just $1000,000 for someone who can prove God does not exist or is theist belief too shallow? http://www.answerbag.com/a_view/8350142 An atheist is offering $1 million for proof that God exists. Would any religious person risk offering just $1000,000 for someone who can prove God does not exist or is theist belief too shallow?<br /><br />I would. No one could ever make a claim for two reasons: 1. His existance is impossible to prove/disprove 2. Any &quot;proof&quot; that could be found would not suffice If someone found proof of God&#039;s existance and tried to make a claim, the person offering would just call the... Sun, 22 Nov 2009 06:03:35 -0800 http://www.answerbag.com/a_view/8350142 Answer to Do you think the "do you think the world will end in 2012" questions will end in 2012? http://www.answerbag.com/a_view/8346009 Do you think the "do you think the world will end in 2012" questions will end in 2012?<br /><br />Unfortunately, we&#039;re stuck with them until 2013. Then we&#039;ll get a few moments peace before they change the date and start the whole thing over again. Sat, 21 Nov 2009 16:19:49 -0800 http://www.answerbag.com/a_view/8346009 Answer to What software do i use to open a file with .iss extension? http://www.answerbag.com/a_view/8341917 What software do i use to open a file with .iss extension?<br /><br />I think .iss stands for inno setup script (it does on my computer). Try searching for Inno Setup on Google or something, but you should be able to open it with notepad. Sat, 21 Nov 2009 06:21:44 -0800 http://www.answerbag.com/a_view/8341917 Answer to Can you solve this puzzle (see the link)? http://www.answerbag.com/a_view/8338064 Can you solve this puzzle (see the link)?<br /><br />Yes, but to be fair it&#039;s a little similar to one I&#039;ve seen before. Fri, 20 Nov 2009 17:00:50 -0800 http://www.answerbag.com/a_view/8338064 Answer to Are we post-racial? http://www.answerbag.com/a_view/8338052 Are we post-racial?<br /><br />No. We&#039;re better, there are fewer racist actions nowadays, and people who are racist aren&#039;t as open about it anymore, but it&#039;s still there. It&#039;s much broader too. Fri, 20 Nov 2009 16:58:52 -0800 http://www.answerbag.com/a_view/8338052 Answer to If everything that is in place for us to be able to survive & for plant life & animals to be able to survive is in perfect place & the earth is in the perfect spot,how can anyone believe it happened outside a devine creator?Do you know the odds of that? http://www.answerbag.com/a_view/8335314 If everything that is in place for us to be able to survive & for plant life & animals to be able to survive is in perfect place & the earth is in the perfect spot,how can anyone believe it happened outside a devine creator?Do you know the odds of that?<br /><br />No one knows the odds of it. Well, we do, 100% because it happened. Some will argue that God&#039;s existance is even less likely. The thing is, you can&#039;t prove God&#039;s existance with probability, it can&#039;t be proven using anything. I myself believe he exists but you need to accept... Fri, 20 Nov 2009 11:56:06 -0800 http://www.answerbag.com/a_view/8335314 Answer to We have five senses, can you think of another sense we could have that maybe useful? http://www.answerbag.com/a_view/8335284 We have five senses, can you think of another sense we could have that maybe useful?<br /><br />We already have: Sense of balance Sense of orientation Sense of time Maybe &quot;Sense of lying&quot; would be good, but only if a few people had it. Fri, 20 Nov 2009 11:51:53 -0800 http://www.answerbag.com/a_view/8335284 Answer to Flip-flops - SR, T, JK, D . . . how to know which one to use for a circuit design? http://www.answerbag.com/a_view/8333989 Flip-flops - SR, T, JK, D . . . how to know which one to use for a circuit design?<br /><br />JK is usually pretty good because you can adapt it to simulate the other types (though I&#039;m not 100% sure). Fri, 20 Nov 2009 08:53:51 -0800 http://www.answerbag.com/a_view/8333989 Answer to Fighting-Does it really solve any problems at all? http://www.answerbag.com/a_view/8333950 Fighting-Does it really solve any problems at all?<br /><br />It solved World War 2. We could&#039;ve asked the Nazis nicely to stop, but I don&#039;t think that would have been very sucessful. Fighting solves lots of problems, it just creates some in the process. Sure, it&#039;s almost never the best way, but it does have its pros and cons. The biggest... Fri, 20 Nov 2009 08:48:07 -0800 http://www.answerbag.com/a_view/8333950 Answer to How often do you get a new computer? http://www.answerbag.com/a_view/8332940 How often do you get a new computer?<br /><br />I don&#039;t get a new computer until my current one breaks. I kept the computer before this one until it literally caught fire and stopped working. There was some sort of mixup installing a new CD drive... Fri, 20 Nov 2009 06:07:20 -0800 http://www.answerbag.com/a_view/8332940 Answer to Ok I belive that men and women are equally and should be treated as such and I hate double standards like how a man can be sexually free to do as he pleases and be awsome but a women can get shamed by her family and peers its not right so why the confusio http://www.answerbag.com/a_view/8332915 Ok I belive that men and women are equally and should be treated as such and I hate double standards like how a man can be sexually free to do as he pleases and be awsome but a women can get shamed by her family and peers its not right so why the confusio<br /><br />That&#039;s not really a question. Men and women should be treated equally, but they never are. We&#039;re a long way from equality, and both men AND women suffer from stereotypes and sexism. We just need to keep trying... Fri, 20 Nov 2009 06:01:27 -0800 http://www.answerbag.com/a_view/8332915 Answer to Why do you feel; 1a) the Bible; 1b) Evolution has the answers to mans past. http://www.answerbag.com/a_view/8332907 Why do you feel; 1a) the Bible; 1b) Evolution has the answers to mans past.<br /><br />Neither has all the answers, really. Evolution can explain, once life was first created, how it got to this point. However, evolution doesn&#039;t explain how life got started. Then there&#039;s the Bible. It explains how life was started, and it does (unarguably) refer to at least some... Fri, 20 Nov 2009 05:59:52 -0800 http://www.answerbag.com/a_view/8332907 Answer to In a 72 letter alphabet, how many 5 letter permutations in which the first and last letters are the same but no other letters repeat, can be created? http://www.answerbag.com/a_view/8318203 In a 72 letter alphabet, how many 5 letter permutations in which the first and last letters are the same but no other letters repeat, can be created?<br /><br />Well, the number of combinations, with no letters repeating, that can be obtained from choosing four letters from 72 (we only need four because the first and last would be the same) would be represented by the Binomial coefficient. This is calculated thus: n! / k!(n - k)! 72! / 4!(72-4)! 72!... Wed, 18 Nov 2009 13:02:28 -0800 http://www.answerbag.com/a_view/8318203 Answer to How can I find out, through a C prog, how much memory is available? http://www.answerbag.com/a_view/8318152 How can I find out, through a C prog, how much memory is available?<br /><br />You could try making a pointer and starting it at a position, say 0x0100, the starting point for .COM applications. You could continually increment this pointer, incrementing a counter variable for each location that the program is allowed to access. I&#039;m not sure exactly how well this would... Wed, 18 Nov 2009 12:55:40 -0800 http://www.answerbag.com/a_view/8318152 Answer to How can a chip store so much of data..? http://www.answerbag.com/a_view/8318087 How can a chip store so much of data..?<br /><br />Chips don&#039;t actually store much by comparison to other types of storage, but they can hold a fair bit. In the case of ROM chips (not the usually ROM, but chips that are truly only read-only) just have the data built-in as a circuit, it will always give the same output. RAM, where most... Wed, 18 Nov 2009 12:47:18 -0800 http://www.answerbag.com/a_view/8318087 Answer to There are 365 1/4 days per year. 7 won't go evenly into 365. So why are there 7 days in a week? http://www.answerbag.com/a_view/8317999 There are 365 1/4 days per year. 7 won't go evenly into 365. So why are there 7 days in a week?<br /><br />Well 7x52 is 364, which is the closest you could get without having a week be significantly longer, unless you only had five days. It just kinda worked out years ago that we had seven days, and if we wanted to even things out, we would need to shorten it to 5 days per week. Since school and many... Wed, 18 Nov 2009 12:38:01 -0800 http://www.answerbag.com/a_view/8317999 Answer to Do you or would you fly the American flag in front of your home (or the flag of your country)? http://www.answerbag.com/a_view/8311873 Do you or would you fly the American flag in front of your home (or the flag of your country)?<br /><br />I want to have a Canadian flag out front, but flag poles are pretty expensive, and I&#039;ve never really gotten around to it. One day... Tue, 17 Nov 2009 17:54:37 -0800 http://www.answerbag.com/a_view/8311873 Answer to If a parent tells a child that Santa Claus is real, isn't that lying to them? http://www.answerbag.com/a_view/8311864 If a parent tells a child that Santa Claus is real, isn't that lying to them?<br /><br />Yes, I never understood why parents bothered with the whole thing. I think a kid would be more likely to behave if they knew they&#039;re parents were responsible for buying them presents. And, unless they tell the kid about the real Saint Nicholas, I don&#039;t see what Santa Claus has to do... Tue, 17 Nov 2009 17:53:36 -0800 http://www.answerbag.com/a_view/8311864 Answer to Do you believe it is irresponsible in today's world for people to have more than 2 children? http://www.answerbag.com/a_view/8310837 Do you believe it is irresponsible in today's world for people to have more than 2 children?<br /><br />No, I don&#039;t see what you&#039;re getting at with &quot;today&#039;s world&quot;. The only time it&#039;s irresponsible to have a child is if you know you can&#039;t care for it properly. Tue, 17 Nov 2009 15:52:45 -0800 http://www.answerbag.com/a_view/8310837 Answer to What is your favorite song? Band? Genre? http://www.answerbag.com/a_view/8310825 What is your favorite song? Band? Genre?<br /><br />It&#039;s a tough choice, but Army by Ben Folds Five. It&#039;s kinda jazz and rock mixed into one. Tue, 17 Nov 2009 15:52:00 -0800 http://www.answerbag.com/a_view/8310825 Answer to What is the square root of X? http://www.answerbag.com/a_view/8309817 What is the square root of X?<br /><br />sqrt(x) is an expression, to actually find a value you need to make an equation which states that two expressions are equal in value. There are other ways of writing it though: x^0.5 log base y(x) = 2 where y is the square root of x. 10^(1/2 log(x)) x could be anything, so the square... Tue, 17 Nov 2009 13:57:07 -0800 http://www.answerbag.com/a_view/8309817 Answer to A rhombus is a square always true sometimes true never true? http://www.answerbag.com/a_view/8309776 A rhombus is a square always true sometimes true never true?<br /><br />On rare ocassion a rhombus is a square, but I don&#039;t think it would ever be said that way. Instead, one usually states that a square is a special kind of rhombus. Tue, 17 Nov 2009 13:52:44 -0800 http://www.answerbag.com/a_view/8309776 Answer to Is dismissal rather than refutation intellectual cowardice? http://www.answerbag.com/a_view/8309743 Is dismissal rather than refutation intellectual cowardice?<br /><br />Only if that which you are dismissing actually has enough evidence to require refutation. Some theories are very sound and have good amounts of evidence, but are simply refuted by others because they don&#039;t like change. Wheareas some don&#039;t deserve anything better. Tue, 17 Nov 2009 13:49:19 -0800 http://www.answerbag.com/a_view/8309743 Answer to Will you be angry or hate if someone tell you that "I do not believe in your God"? Why most believers argue or defend their God? (God doesn't really care about this for sure) http://www.answerbag.com/a_view/8309645 Will you be angry or hate if someone tell you that "I do not believe in your God"? Why most believers argue or defend their God? (God doesn't really care about this for sure)<br /><br />There&#039;s nothing wrong with someone having an opinion, but if they said &quot;your God doesn&#039;t exists&quot; like a fact rather than an opinion, then yes it would bother me. I couldn&#039;t care less if someone disagreed with me about God&#039;s existance, but they need to remember... Tue, 17 Nov 2009 13:36:01 -0800 http://www.answerbag.com/a_view/8309645 Answer to In a class,four out of 20 students own a pet bird. what fraction of the class own birds? http://www.answerbag.com/a_view/8309606 In a class,four out of 20 students own a pet bird. what fraction of the class own birds?<br /><br />Twenty percent. I know that&#039;s not a fraction, but you should figure it out yourself and use the percentage to check. Technically you could find the reduced fraction using the percentage, but you couldn&#039;t find the original fraction without a basic knowledge of how fractions work. Tue, 17 Nov 2009 13:30:23 -0800 http://www.answerbag.com/a_view/8309606 Answer to I'm an atheist, and I believe those that believe in god are brainwashed. When the idea of god dies, men will finally be free from slavery. http://www.answerbag.com/a_view/8309602 I'm an atheist, and I believe those that believe in god are brainwashed. When the idea of god dies, men will finally be free from slavery.<br /><br />Your point of view isn&#039;t quite clear. Who&#039;s doing the brainwashing? If people choose to believe in something, that&#039;s extremely different from being brainwashed. And what does faith have to do with slavery? &quot;When the idea of god dies&quot;, that will only ever happen if... Tue, 17 Nov 2009 13:28:52 -0800 http://www.answerbag.com/a_view/8309602 Answer to What is value of seventh root of 2. (Fully details solution) http://www.answerbag.com/a_view/8302030 What is value of seventh root of 2. (Fully details solution)<br /><br />There is a way to figure it out without a calculator (but you&#039;ll need a bit of time and a piece of paper): First guess the seventh root of 2. It must be about 1.1 because 1.2^7 = 3.58... and 1^7 = 1. This will be x. Now we use the formula: 7th route of y = (6x + (y/x/x/x/x/x/x))/7 ... Mon, 16 Nov 2009 15:57:33 -0800 http://www.answerbag.com/a_view/8302030 Answer to Is there any way I could send a fax for free,using my computer without having to sign up for services with a credit/debit card? I am reluctant to believe those free trial periods and figured my card will get billed regardless ! http://www.answerbag.com/a_view/8300823 Is there any way I could send a fax for free,using my computer without having to sign up for services with a credit/debit card? I am reluctant to believe those free trial periods and figured my card will get billed regardless !<br /><br />I&#039;m pretty sure that if you have home phone service, and connect a phone line (not ethernet or anything else) to your computer, there are programs that will let you send faxes for free. Faxing is part of normal phone usage. Mon, 16 Nov 2009 13:12:15 -0800 http://www.answerbag.com/a_view/8300823 Answer to Do you think it would be kind of strange for a 15 year old to really want to be married to the love of his life and to be able to have a ring on his finger? http://www.answerbag.com/a_view/8300780 Do you think it would be kind of strange for a 15 year old to really want to be married to the love of his life and to be able to have a ring on his finger?<br /><br />Everybody&#039;s different, so I don&#039;t think people should generalize and say &quot;A fifteen-year-old doesn&#039;t know what love is&quot; because maybe they do. There&#039;s no yes or no answer really. Not to mention that strange just means &quot;not normal&quot;, and normality is also... Mon, 16 Nov 2009 13:07:21 -0800 http://www.answerbag.com/a_view/8300780 Answer to If a tree falls in a forest and no one is around, does it make a sound? http://www.answerbag.com/a_view/8293393 If a tree falls in a forest and no one is around, does it make a sound?<br /><br />Yes. If a bomb goes off in the forest, and there&#039;s no one around to see it, does it still explode and burn everything nearby? Yes. Sun, 15 Nov 2009 16:40:42 -0800 http://www.answerbag.com/a_view/8293393 Answer to Is there any possibility Robots think in their language [artificial intelligence]? http://www.answerbag.com/a_view/8293360 Is there any possibility Robots think in their language [artificial intelligence]?<br /><br />Artificial intelligence isn&#039;t a language I&#039;m afraid, it&#039;s a branch of computer science that looks at problem solving. All computers use binary, which also isn&#039;t a language. But computers don&#039;t need a language because computers don&#039;t think. Sun, 15 Nov 2009 16:37:33 -0800 http://www.answerbag.com/a_view/8293360 Answer to What meaning of #include <stdio.h> in C Language. http://www.answerbag.com/a_view/8293348 What meaning of #include <stdio.h> in C Language.<br /><br />The &#039;#&#039; sign tells the preprocessor, which scans the code before sending it to the compiler, to do something. &quot;include&quot; tells the preprocessor that the following file is to be included in the compiling process. When the compiler compiles the source code, it also... Sun, 15 Nov 2009 16:36:14 -0800 http://www.answerbag.com/a_view/8293348 Answer to Is programming/software development easy? Why? http://www.answerbag.com/a_view/8293317 Is programming/software development easy? Why?<br /><br />Depends on the complexity of the software being developed. Beyond trivial programs there is alot of time that needs to be spent, first breaking the problem down into sections. Then coding those sections. Then testing everything and fixing errors. Then optimizing. Then more testing... ... Sun, 15 Nov 2009 16:33:16 -0800 http://www.answerbag.com/a_view/8293317 Answer to Are you smart enough to answer this question in binary? Or, do you have to use the reference URL? http://www.answerbag.com/a_view/8293299 Are you smart enough to answer this question in binary? Or, do you have to use the reference URL?<br /><br />I could translate it to binary myself, but it would take too much time. It&#039;s just a matter of memorizing ascii character values. One interesting thing about binary text, this is the representation for the digit &quot;0&quot;: 00110000 But that&#039;s just 48 in binary, which could mean... Sun, 15 Nov 2009 16:31:10 -0800 http://www.answerbag.com/a_view/8293299 Answer to Do you think that artifical intelligence could one day overthrow mankind http://www.answerbag.com/a_view/8293277 Do you think that artifical intelligence could one day overthrow mankind<br /><br />I doubt it. Artificial Intelligence is just giving a computer a list of options. Then you give it information concerning a problem, and the computer chooses one of those options. Really isn&#039;t room for taking overthrowing manking. Plus they&#039;d need to be able to think, which is much... Sun, 15 Nov 2009 16:28:27 -0800 http://www.answerbag.com/a_view/8293277 Answer to Is it true that when you die your brain is still active, if so does that mean you sense everything around you? http://www.answerbag.com/a_view/8293181 Is it true that when you die your brain is still active, if so does that mean you sense everything around you?<br /><br />Your brain doesn&#039;t stay active, as it&#039;s inactivity combined with the loss of a heartbeat is what makes you dead, but medical proffessionals know that some people remain conscious for up to a few hours after death, while some lose consciousness much sooner. And if you&#039;re religous... Sun, 15 Nov 2009 16:18:27 -0800 http://www.answerbag.com/a_view/8293181 Answer to What are the odds of having five sons in a row, what percentage? http://www.answerbag.com/a_view/8293147 What are the odds of having five sons in a row, what percentage?<br /><br />It depends on the person, but I&#039;d approximate it at 3.125%. As I said though, depending on the father, those numbers could change dramatically, even 100% or 0% in some cases. Sun, 15 Nov 2009 16:15:22 -0800 http://www.answerbag.com/a_view/8293147 Answer to Do you still have "old media" (plastic/vinyl records, 8-tracks, cassettes, VHS tapes, etc.)? How many of each? Do you still use them? http://www.answerbag.com/a_view/8291376 Do you still have "old media" (plastic/vinyl records, 8-tracks, cassettes, VHS tapes, etc.)? How many of each? Do you still use them?<br /><br />I use VHS whenever I need to record a TV show or something, and I also use floppy disks all the time, more often than CDs usually. Sun, 15 Nov 2009 11:59:19 -0800 http://www.answerbag.com/a_view/8291376 Answer to If you had the power, what crime would merit an instant death penalty. And how would you execute the filthy criminals? http://www.answerbag.com/a_view/8291370 If you had the power, what crime would merit an instant death penalty. And how would you execute the filthy criminals?<br /><br />I don&#039;t think I&#039;d have the death penalty, because one in every thousand people convicted in the U.S. are wrongfully imprisioned (or something like that). I wouldn&#039;t want to accidently kill an inoccent person. But I would give the convict the choice between death or life in prison. Sun, 15 Nov 2009 11:58:04 -0800 http://www.answerbag.com/a_view/8291370 Answer to Are the abreviations BC and AD related to time based on Christian Tradition? http://www.answerbag.com/a_view/8291325 Are the abreviations BC and AD related to time based on Christian Tradition?<br /><br />Technically they are, because Jesus is being referred to as Christ; but very few people, historians and scientists included, disagree that Jesus DID exist around that time. The only debate is whether he was just a nice person, or the son of God. Sun, 15 Nov 2009 11:54:16 -0800 http://www.answerbag.com/a_view/8291325