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

Harsh

Favorite Answers6%
Answers16
  • I was reading Dante's Inferno and came across these quote. I understand the basic meaning but what does it mean in depth?

    “THROUGH ME THE WAY INTO THE SUFFERING CITY,

    THROUGH ME THE WAY TO THE ETERNAL PAIN,

    THROUGH ME THE WAY THAT RUNS AMONG THE LOST.

    JUSTICE URGED ON MY HIGH ARTIFICER;

    MY MAKER WAS DIVINE AUTHORITY

    THE HIGHEST WISDOM, AND THE PRIMAL LOVE.

    BEFORE ME NOTHING BUT ETERNAL THINGS

    WERE MADE, AND I ENDURE ETERNALLY.

    ABANDOM EVERY HOPE, WHO ENTER HERE.”

    1 AnswerQuotations6 years ago
  • Why does Xbox 360 take so long to sign in your account since the Xbox one came out?

    I did an update a couple of weeks ago on my Xbox 360 and now it takes a long time to sign me in. Is anyone else having this problem too?

    1 AnswerXbox7 years ago
  • I am building a computer and I need your help.?

    I am trying to create a startup sound when I turn the power key on. I want the sound to come from inside the computer not from external speakers. I want to make it sound like a tractor starting up when I turn the power on. Is there any such device that (like a recorder) that I can hook up to my motherboard so when I turn on the computer it makes the tractor engine noise and then stops once done and do the same thing when when I turn it on the next time.

    1 AnswerProgramming & Design8 years ago
  • Can someone help me with this C++ code?

    I am working on a little personal project and want to create this for my class. I am a math teacher and just learning C++. Please program this for me and describe each step in detail so I understand how to do it.

    (1) Record students' grades in a data file. Prompt users for the file name of data file; id, name and grade of each student as well as the total number of students. Following shows an example of outputs in data file and console.

    ID NAME GRADE

    01 Mary 100.00

    02 Tom 98.35

    03 John 88.99

    ......

    (2) If grade is <0 or >100, ask users to re-enter correct grade.

    (3) After generating data file, read the content of data file and print to console.

    2 AnswersProgramming & Design8 years ago
  • I need help with this C++ code.?

    Write a program to complete the following tasks.

    (1) Record students' grades in a data file. Prompt users for the file name of data file; id, name and grade of each student as well as the total number of students. Following shows an example of outputs in data file and console.

    ID NAME GRADE

    01 Mary 100.00

    02 Tom 98.35

    03 John 88.99

    ......

    (2) If grade is <0 or >100, ask users to re-enter correct grade.

    (3) After generating data file, read the content of data file and print to console.

    3 AnswersProgramming & Design8 years ago
  • I need help with this C++ code.?

    Assignment #1

    Print a M by N multiplication table as following. Headers must be included in the table. Allow user to enter the size of the table (M by N).

    1 2 3 4 5 6 ... N

    1 1 2 3 4 5 6 ...

    2 2 4 6 8 10...

    ...

    M .................................

    1 AnswerProgramming & Design8 years ago
  • Why can't I completely delete a program from my hard drive?

    I downloaded a game and it took 15 gb of memory from my hard drive, then i uninstalled it and only got 13 gb of data back. what happened to the other 2 gb and how can I delete that?

    1 AnswerSoftware8 years ago
  • Can I upgrade my 4 gig ram to 16 gig?

    I have a Samsung i3, 500 gig hard drive, 64 bit, 4 gig ram with windows 8 OS. Can i upgrade to 16 gig ram without causing any harm to my computer? Or is it even possible?

    1 AnswerLaptops & Notebooks8 years ago
  • What does double **a mean in C++?

    What do the 2 asterisks in front of 'a' mean?

    double **a;

    a=new double*[m];

    for (int i=0;i<m;i++)

    a[i]=new double[n1];

    4 AnswersProgramming & Design8 years ago
  • Can someone help me with this C++ code?

    Create a class called "MPG" to represent fuel economy of a car. Include the following:

    1) Attributes: starting odometer reading (int), ending odometer reading (int), gallons (double), number of stops (int).

    2) Default constructor: all attributes are set to zero.

    3) Initial value constructor. You must make sure that the ending odometer reading is greater than the starting odometer reading. If this condition is not met, output an error message and exit the program.

    4) Accessors and mutators for all attributes. You must make sure that the ending odometer reading is greater than the starting odometer reading. If this condition is not met, output an error message and exit the program.

    5) A method that calculates the average miles-per-gallon for the last fill-up, determines whether it's a city reading (miles per stop < 0.5), highway reading (miles per stop > 1), or combined reading (miles per stop between 0.5 and 1, inclusive), and then estimates the other two readings. Use the estimate that (city MPG) = 0.75*(combined MPG) and (combined MPG) = 0.75*(highway MPG). The output for this method must be an array with three elements (city MPG, combined MPG, and highway MPG).

    The attached file contains 8 values: starting odometer reading, ending odometer reading, gallons, and number of stops for car 1, then the same sequence of quantities for car 2. Read the data and create a formatted output file that contains the read values for each car as well as each car's three calculated MPG values.

    20265 20970 12.2 46

    51350 51780 13.1 14

    1 AnswerProgramming & Design8 years ago
  • What is the code for this program?

    Create a class called "MPG" to represent fuel economy of a car. Include the following:

    1) Attributes: starting odometer reading (int), ending odometer reading (int), gallons (double), number of stops (int).

    2) Default constructor: all attributes are set to zero.

    3) Initial value constructor. You must make sure that the ending odometer reading is greater than the starting odometer reading. If this condition is not met, output an error message and exit the program.

    4) Accessors and mutators for all attributes. You must make sure that the ending odometer reading is greater than the starting odometer reading. If this condition is not met, output an error message and exit the program.

    5) A method that calculates the average miles-per-gallon for the last fill-up, determines whether it's a city reading (miles per stop < 0.5), highway reading (miles per stop > 1), or combined reading (miles per stop between 0.5 and 1, inclusive), and then estimates the other two readings. Use the estimate that (city MPG) = 0.75*(combined MPG) and (combined MPG) = 0.75*(highway MPG). The output for this method must be an array with three elements (city MPG, combined MPG, and highway MPG).

    The attached file contains 8 values: starting odometer reading, ending odometer reading, gallons, and number of stops for car 1, then the same sequence of quantities for car 2. Read the data and create a formatted output file that contains the read values for each car as well as each car's three calculated MPG values.

    1 AnswerProgramming & Design8 years ago
  • Consider the following array?

    2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32

    Using Binary search, what is the minimum number of bisections before the number 18 is found? In the method we stop bisecting when there are two elements left.

    Please show work.

    1 AnswerProgramming & Design9 years ago
  • Converting from base 3 to decimal equivalent?

    I am having a hard time doing this. Can you please tell me how to do this and can you show the work so I understand how to do this?

    2 AnswersEngineering9 years ago
  • Calculus Help Please?

    Differentiate

    y=x(arctan(2x))^2

    2 AnswersMathematics9 years ago
  • Help With a Calculus Problem?

    { 1/(x^2+4) dx

    Use the substitution x=2tanx

    your final answer should be in terms of x.

    Please show work

    5 AnswersMathematics9 years ago
  • Calculus Problem. Please Help?

    Find { (cot(1/r^2)dr)/r^3

    Integrate

    1 AnswerMathematics9 years ago
  • What does this quote mean by John Adams?

    “The Revolution was effected before the war commenced. The Revolution was in the minds and hearts of the people. . . in principles, opinions, sentiments and affections of the people [that] was the real American Revolution.”

    John Adams

    3 AnswersHistory9 years ago
  • logarithmic differentiation?

    y = x sqrt(x^2+12), x>0

    1 AnswerHomework Help9 years ago
  • Find the derivative of the Function.?

    f(x)=2x^2 ln2x.

    Please show work so I can understand how to do it.

    1 AnswerHomework Help9 years ago