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.

Lv 43,807 points

Endellion

Favorite Answers5%
Answers1,379

I'm a brutally honest person. Deal with it. And don't IM me if you can't speak a word of decent English. Or if you just wanna babble because I'm not up for that. Check out my webbie http://www.freewebs.com/daynanames/index.htm

  • Organizing Arrays in Programming?

    Okay. I have a problem (yes, for a class. no, not looking for the answer - just bouncing what I think) in which I have to write the pseudocode for a program that accumulates grades for each of 30 different classes. Each class can have up to 35 students and each student has a grade on a test from 0-100. What I have in my Declarations is as follows:

    num stuID(35)

    num CLASS[30] = 1, 2, 3, 4, 5, 6, 7, 8, 9, (etc to thirty)

    num SCORE[100] = 1, 2...100

    those are the significant declarations, anyway. Would this be right? I then have to prompt for # of students, grade and accumulate the grades...

    3 AnswersProgramming & Design6 years ago
  • Name my business!?

    I d like to start up my graphic design and photo restoration business, but I m having difficulty finding a name that isn t being used. I d like to incorporate studios, media, graphics, ember, ink, or phoenix.

    1 AnswerDrawing & Illustration6 years ago
  • I have a JavaScript issue?

    I'm working the examples in my textbook (and I don't have the data files with the correct format) but I can't seem to get my output to show correctly.

    The issue is that it's not concatenating the customer name and displaying the lower information after computing the cost.

    // Welcome the user

    // Ask for ordering information

    document.write("Welcome to Bulk Is Best!" + BR);

    firstName = prompt("Enter your name",ES);

    lastName = prompt("Enter your last name",ES);

    numPkgs = prompt("Enter number of packages",ES);

    state = prompt("State to ship to",ES);

    // Concatentate first and last name

    custName = firstName + " " + lastName;

    // Compute per package price and shipping cost

    if (numPkgs >= 6) {

    pkgPrice = "2.00";

    }

    else {

    pkgPrice = "2.50";

    }

    if (state == "ID") {

    shipCost = "0.00";

    }

    else {

    shipCost = "4.00";

    }

    // Compute and document.write order totals

    totPkgCost = pkgCost * numPkgs;

    totOrderCost = totPkgCost + shipCost;

    document.write("Order Summary for " + custName + BR);

    document.write("Number packages ordered: " + numPkgs + BR);

    document.write("Price per package: " + pkgPrice + BR);

    document.write("Subtotal: " + totPkgCost + BR);

    document.write("Order will be shipped to: " + state + BR);

    document.write("Shipping cost: " + shipCost + BR);

    document.write("Order total: " + totOrderCost + BR);

    2 AnswersProgramming & Design7 years ago
  • Dell Laptop won't shut down or connect to the internet?

    To shut down, have to use the power button.

    It is connected directly to the modem via ethernet.

    Modem and computer have both been rebooted.

    3 AnswersLaptops & Notebooks7 years ago
  • I have to create an entity relationship diagram (ERD) for a bus reservation system...?

    "Data items must include reservation number, route number, date, origin, destinations, departure time, arrival time, passenger name and seat number"

    Correct me if I'm wrong, but the entities would still be Bus, Passenger and Reservation?

    Reservation data items would be: reservation number, passenger name, seat number, date

    Passenger data items would be: passenger name, seat number, destination, departure time

    Bus data items would be: route number, origin, destination, departure time, arrival time

    4 AnswersProgramming & Design8 years ago
  • I have to create pseudocode for a Loan Calculator program...?

    The application will accept an Annual Percentage Rate, a Period of Time (in years), and a Principal Loan Amount. The program will then calculate and output the loan payments based on Interest Amount, Principal Amount, and Total Payment in addition to the Total Amount paid on the loan.

    Calculations should be based on the following:

    Interest = APR / 12 (i.e. Interest = 8%/12 = .00667)

    Balance = Current Value

    Number of Payments = Period of Time * 12 (12 payments per year)

    Discount = (((1 + Interest)^Number of Payments) – 1) / (Interest * (1 + Interest)^Number of Payments)

    Payment = Principal Loan Amount / Discount

    Interest Payment = Interest * Balance

    Principal Payment = Payment – Interest Payment

    The output should display the information below on a console: 

    Annual Percentage Rate: 8%

    Principal Loan Amount: $10,000.00

    Period of Time (Years): 2

    Interest: 0.0066667

    Number of Payments: 24

    Discount: 22.110544

    Payment: $452.27

    Cost of Loan: $10,854.55

    Payment # Interest Principal Balance

    1 $66.67 $385.61 $9,614.39

    2 $64.10 $388.18 $9,226.22

    3 $61.51 $390.76 $8,835.45

    4 $58.90 $393.37 $8,442.08

    5 $56.28 $395.99 $8,046.09

    6 $53.64 $398.63 $7,647.46

    7 $50.98 $401.29 $7,246.17

    8 $48.31 $403.97 $6,842.20

    9 $45.61 $406.66 $6,435.54

    10 $42.90 $409.37 $6,026.17

    11 $40.17 $412.10 $5,614.08

    12 $37.43 $414.85 $5,199.23

    13 $34.66 $417.61 $4,781.62

    14 $31.88 $420.40 $4,361.22

    15 $29.07 $423.20 $3,938.03

    16 $26.25 $426.02 $3,512.01

    17 $23.41 $428.86 $3,083.15

    18 $20.55 $431.72 $2,651.43

    19 $17.68 $434.60 $2,216.83

    20 $14.78 $437.49 $1,779.34

    21 $11.86 $440.41 $1,338.93

    22 $8.93 $443.35 $895.58

    23 $5.97 $446.30 $449.28

    24 $3.00 $449.28 ($0.00)

    ------

    I have all the calculations Declarations and a general idea that I'm supposed to output the APR-Cost of Loan before I should run the detailLoop() that calculates the balance and such after each payment. Am I correct in my thinking?

    2 AnswersProgramming & Design8 years ago
  • What would be the best way to write this program?

    Create a program that can determine the following facts about a triangle based on user input:

    The user should select if they want to test based on angles or sides, then enter three values. The program should then return the results based on the user’s input.

    Types of Triangles – Based on Angles

    Right Triangle – At least one (1) interior angle is exactly 90°

    Acute Triangle – All interior angles are less than 90°

    Obtuse Triangle – At least one (1) interior angle is greater than 90°

    Types of Triangles – Based on Sides

    Equilateral Triangle –All sides must have the same length

    Isosceles Triangle – At least two (2) sides are the same length

    Scalene Triangle – All sides are unequal in length

    The program should validate the triangle based on the following rules:

    - The sum of the three angles should be 180

    - The sum of any two sides must be greater than the length of the third side

    My main thing is making the declarations. I can pretty much guide myself but instructor doesn't like the way my pseudocode turns out.

    1 AnswerProgramming & Design8 years ago
  • Anyone in the South GA area...I need some thoughts and opinions?

    My family is opening a restaurant and we're looking for opinions on what kind of foods you would like to see. In the Douglas area.

    1 AnswerAtlanta1 decade ago
  • Do you find it awkward...?

    When a first name has the same sound as the last?

    i.e. Kasen Kelton

    Jonathon Kelton

    18 AnswersBaby Names1 decade ago
  • Any names, either gender to work with this surname..?

    First and middle are appreciated. ALL IDEAS are welcome.

    Surname: Kelton

    17 AnswersBaby Names1 decade ago
  • Girls' names....What do you think of these?

    May mix n match and make new suggestions.

    Alexa Jolie

    Amanda Jiselle

    Aspen Rochelle

    Jaidyn Amari

    Cora Brooke

    Georgia Desiree

    Hilary Gianna

    Skyla Kaydence

    Libby Monique

    Summer Aaliyah

    Dallas Mariana

    17 AnswersBaby Names1 decade ago
  • Middle names?

    For Falyn, Hazel, River, and Kona

    Hazel after my grandmother who passed away. Spelling of Falyn will stay the same.

    Kona means World Ruler and is Gaelic and of masculine gender.

    River just because.

    9 AnswersBaby Names1 decade ago
  • What are you opinions on these female names?

    Victoria Brooke

    Victoria Noelle

    Victoria Lyn

    Jillian Abigail

    Haleigh Madeline

    Sara Eloise

    Mirabelle Celeste

    Mirabelle Rose

    Alyssa Paige

    Trinity Rayne

    Cassidy Michelle

    Sierra Reese

    Karsyn Mirabelle

    Whitney Giovanna

    Ashleigh Meadow

    Raven Alexis

    Kathryn Loralei

    Leila (pr. Layla) Jade

    Hazel Mae

    Falyn Alexa

    Adrienne Natalya

    Ivy Danielle

    Aimee Charlize

    Aurora Jayne

    Phoebe Rose

    Falyn Olivia

    Madison Olivia

    Nalani Jade

    Phoenix Kaylani

    Myranda Paige

    Mena Grace

    23 AnswersBaby Names1 decade ago
  • What do you think of these names for males?

    Collin Xavier

    Daniel Lawrence

    Michael Dylan

    Aiden Broderick

    Ashton Broderick

    Elijah Joel

    Elijah Drew

    Keegan Seth

    Michael Gage

    Liam Scott

    Kieran Jace

    Briar Gage

    Aldan Jace

    Braxton Alexander

    Anthony Jensen

    Kona Jace

    Corbin Alexander

    Joshua Gage

    Spencer Joshua

    Oliver Braxton

    Channing Lake

    Channing Alexander

    Dylan Jeremiah

    Calum Jensen

    Kasen Oliver

    Logan Asher

    19 AnswersBaby Names1 decade ago
  • Would like FIRST AND MIDDLE suggestions for both genders....?

    Please supply both FIRST and MIDDLE name suggestions for both genders! I'm open to anything

    16 AnswersBaby Names1 decade ago
  • My top names...Opinions?

    Female:

    Kathryn Loralei

    Alyssa Paige

    Hayden Rosalie

    Tawny Sage

    Hazel Jayne

    Aeryn Rochelle

    Male:

    Kona Jace

    Keegan Seth

    Aiden Broderick

    Corbin Alexavier

    Ellis Braxton

    Hadley Joel

    20 AnswersBaby Names1 decade ago
  • Does anyone play the hook-up on the n?

    I just started playing yesterday and I've gotten to where Sara gives up that rumor about Matthew getting Megan PG..PLUS I haven't found out much about Dylan and Megan...And I can't get Megan to say anything about the rumor Sara told..

    Any tips?

    2 AnswersVideo & Online Games1 decade ago
  • Anyone know of any caterers, florists, etc..In the Valdosta/Tifton GA area?

    I've tried looking up several things and I've found nothing to help. Granted my fiancé and I aren't discussing this much at the moment, I'd like some suggestions if at all possible.

    5 AnswersWeddings1 decade ago
  • Whose baby is this?

    All right. Do your best not to look it up...WHOSE celebrity baby?

    June Catherine

    Leo Kipling

    Joseph Gunnar

    Poet Sienna Rose

    Donovan Rory

    Ruby Megan

    Valentina Paloma

    William Atticus

    Daniel Jack

    Indiana August

    Ava Bailey

    Wilder Brooks

    Satine Anais Geraldine

    Bailey Linda

    Ammon Michael

    Flori Jean Elizabeth

    Cathal Robert Gerard

    5 AnswersCelebrities1 decade ago
  • Suggestions and Opinions?

    For a girl Kimberly Hayden Pendarvis

    We'd like to use Daniel if it's a boy. Please suggest middles or firsts.

    9 AnswersBaby Names1 decade ago