Questions
You are interested in arranging financing to purchase a new car from Bloomington Cars, Inc. The...

You are interested in arranging financing to purchase a new car from Bloomington Cars, Inc. The car that you want has a sticker price of $42,000, an instant rebate of $3,500, a fair market value of $39,000, and a great sound system. The salesperson, while smoothing over his comb-over, taps his pinky ring on the hood of the car and tells you, “You picked the best car we have. I can also kick in a free Bloomington Cars coffee mug.” Since you love the car, you hop up and down and say, “Sold! I’ll take it.” You sign a loan contract for 60 monthly payments based on a rate of 7.3% per year and drive home with your new car and coffee mug, listening to that great sound system. (Your market rate of return for the risks you pose for a car loan is 5.5%.)

What is your monthly payment (rounded to two places)?

Group of answer choices

$802.25

$777.78

$767.81

$707.98

None of the above

Flag this Question

Question 21 pts

How much value did you destroy in pursuit of that great sound system and your free coffee mug (rounded to two places)?

Group of answer choices

$499.86

$1,197.03

$3,000.06

$2,324.09

None of the above

Flag this Question

Question 31 pts

What would have been a “fair” monthly payment (rounded to two places)?

Group of answer choices

$744.95

$837.61

$735.39

$767.43

None of the above

Flag this Question

Question 41 pts

Based on Questions #1 and #3, how much are you overpaying each month (rounded to two places)?

Group of answer choices

$26.82

$17.46

$8.24

$32.87

None of the above

Flag this Question

Question 51 pts

If you come to your senses in 12 months and realize what a bad deal you negotiated and would like to pay off this bad loan, how much do you owe (rounded to two places)?

Group of answer choices

$36,854.88

$33,014.89

$8,859.51

$31,878.28

None of the above

Flag this Question

Question 61 pts

How much interest will you pay in the first year of the loan (rounded to two places)?

Group of answer choices

$9,213.72

$2,592.00

$6,621.72

$3,452.28

None of the above

In: Finance

You eat at your office cafeteria every day during lunch time. However, you think it needs...

You eat at your office cafeteria every day during lunch time. However, you think it needs some improvements.

Write a letter to the manager of the cafeteria. In your letter about 350 words,

  • explain what you like about the cafeteria
  • describe the two (2) problems you experienced at the cafeteria and explain and example;
  • suggest two (2) ways how the problems can be resolved and explain an example.

\

In: Operations Management

Briefly explain the terms used in object-oriented programming with examples.

Briefly explain the terms used in object-oriented programming with examples.

In: Computer Science

what is a synopsis that includes a type of dynamic or static stretch and why is...

what is a synopsis that includes a type of dynamic or static stretch and why is this a beneficial stretch?

In: Biology

Southern airline inc.announced that its net income in the first quarter jumped percent to $100 million...

Southern airline inc.announced that its net income in the first quarter jumped percent to $100 million as number of passenger climbed. The airline also booked of $40 million from the sales of 2 aircraft. According to the survey of 6 analysts average estimate of the first quarter net income for the airline was $200 miliion. After earning announcement what would be the possible movement of the company's stock. Please explain with any financial concepts and theories?

In: Finance

Writing a caesar cipher in ARM assembly. INSTRUCTIONS: Step 1: The first thing you should do...

Writing a caesar cipher in ARM assembly.

INSTRUCTIONS:

Step 1:
    The first thing you should do is modify the case conversion program String.s (provided)
    Instead of subtracting 32 from all numbers you want to add a constant number which we will call the key.
    Assume that all input will be lowercase. 
    So it'll look like this,
        k = 2;
        letter = 'a';
        newletter = k+letter;
    Above is pseudocode and ABOVE NOT ASSEMBLY CODE DO NOT COPY.
    Use bl puts to show that everything is working correctly.
    You should hard code the plaintext in the assembly file.
Step 2:
    If the key + letter is bigger is 'z' then you have to subtract 26.
    If the key + letter is less than 'a' then you have to add 26.

STRING.S

.text
.global main

main:
    ldr r4,=string

get_another_byte:
    ldrb r5,[r4]

    cmp r5,#'a'
#    blt keep_going
#    cmp r5,#'z'
#    bgt keep_going

    subeq r5,#32
    strbge r5,[r4]

keep_going:
    add r4,#1
    cmp r5,#0
    bne get_another_byte

    ldr r0,=temp
    str lr,[r0]

    ldr r0,=string
    bl puts

    ldr r0,=temp
    ldr lr,[r0]

    bx lr

.data

string:
.asciz "This is a string |"


temp:
    .word 0

In: Computer Science

Provide a brief outline of a NPV analysis paper? just an Apa outline format for an...

Provide a brief outline of a NPV analysis paper?

just an Apa outline format for an NPV calculations paper

In: Finance

The coronavirus is hitting businesses and their employees. Some businesses are still open and millions of...

The coronavirus is hitting businesses and their employees. Some businesses are still open and millions of employees are working to serve customers. Some of the employees work in their workplaces while some others work from home. Almost all employees worry whether they will lose their jobs or if they will have a pay cut. It is obvious that unemployment will rise because millions of employees will lose their jobs and the remaining employees may have a pay cut (10, 20, 30, 50%) depending on the position in his/her workplace.

Because of the coronavirus, the business environment has started to change. It is becoming a challenging fast-changing environment. Currently, many managers are faced with difficulties. In the near future and in the long run, they will need to deal with important issues.

Lastly, you have to remember that one can easily manage firms during prosperous times but effective managers flourish during difficult times.

Below is a sample list of terms that you can use when answering the questions.

Job security and protection; Employee morale; Employee stress; Anxiety; Employee wellness; Effective decision making; Work performance; Key competencies; Productive employees; Quality of work produced; Work-life balance; Mental health; Employees in a high-risk health category; Illness; Government sector; Health sector; Security forces.

What would be the possible changes and developments in the workforce and workplace diversity in the near future and in the long run? Discuss.

In: Operations Management

C# Programming using Windows Form 1. Define a variable named isTrue that stores a value of...

C# Programming using Windows Form


1. Define a variable named isTrue that stores a value of
whether something is true or false. Set this variable
   to the negative. Output this variable to the txtIsTrue textbox.

2. Define a variable named favoriteGame that could store
the name of a game. Set this variable's value to your favorite game. Output this variable to the txtFavoriteGame textbox.

3.. Define a variable named pi that can store real numbers. initialize it to a value of 3.14. Output the value to txtPi

4. Create a control structure that will print out "That's Right"
to a textbox named txtRightOrWrong if isTrue from the 1st problem is positive result and "Nope" if isTrue is not true.

5. Write a loop of your choosing to print out the following
numbers to txtLoop textbox: -1 -3 -5 -7 -9 -13 -15 -17
  

6. Write a nested loop to print out the following to txtNestedLoop:
0
0 1
0 2 4
0 3 6 9
0 4 8 16 32
  

7. Call the method from number 8 and output the result to xtMethodCall textbox.

8. Create a method called Foo that takes an integer from
txtForFoo and returns Bar the amount of times entered.
ex: txtForFoo is 2 the result is "Bar Bar".

9. Add a try catch block in the Foo method to catch the  generic exception and one other exception of your choosing
bonus 5 pts if it applies to the method.

10. Create an array of 2 DateTime objects. Set the first
to the current date and time. Set the second to the
current date. Output both dates with a space between
them to txtDates.

/* ***BONUS***
Time how long it takes from the loading of the program
until the run button finishes running the first time it
is clicked.

In: Computer Science

I have a question that I would like an explanation on how an ethical hacker uses...

I have a question that I would like an explanation on how an ethical hacker uses the information derived by use of Nslookup and Whois to mitigate network connectivity issues. If you could explain in a paragraph it would help me tremendously.


In: Computer Science

Consider the following sorted int array: 1 3 4 5 7 9 10 12 If we...

Consider the following sorted int array:

1 3 4 5 7 9 10 12

If we search for the key value 10 in the array using the binary search algorithm, what is the sequence of indices that will be accessed in the array?

(Hint: For a sublist between index values low and high, the middle index is calculated using: (low + high) / 2. So you need to show the sequence of indices of the middle index in each pass.)

Question 40 options:

In: Computer Science

Write a letter inviting a business person to speak at an FBLA meeting about the hiring...

Write a letter inviting a business person to speak at an FBLA meeting about the hiring process. Be sure to tell them something about FBLA and what you would like them to talk about. Letter must be in proper business format.

In: Operations Management

Write in your own words Define the payback, net present value, internal rate of return, and...

Write in your own words Define the payback, net present value, internal rate of return, and profitability index methods.

Need 300 words discussion


Don't rewrite already existing chegg answer

In: Finance

Q2. Write an 8051 C program that uses 3 temperature sensors (TS1, TS2, TS3),   3 LEDs...

Q2. Write an 8051 C program that uses 3 temperature sensors (TS1, TS2, TS3),   3 LEDs (GreenLED, BlueLED and RedLED) and 1 buzzer (BUZZ). Monitor the temperature sensors such that whenever any of the sensor goes high, the buzzer will produce a sound and at the same time, its corresponding LED blinks 3 times. You may use any of the I/O Port Pins.    
SOLUTION:
C PROGRAM

In: Computer Science

Write the names of 12 people who have, in some way, shaped who it is that...

Write the names of 12 people who have, in some way, shaped who it is that you have become. These might be from your past or your present, real or fictional, someone whom you may or may not have actually met, someone who affected you in a positive or a negative
way, etc. After each name, write a sentence or two about the way(s) in which the person influenced your identity.
Example:
1. Mother—She instilled a sense of responsibility in me by the way she took care of us as a single parent who…
2. Father—He left the family when I was two years old. As a result, my view of what it means to be a good husband and father is…
3. Bill (best friend in high school)—I am now very cautious about using drugs or alcohol because my friend Bill…
4. Anne Frank—Because of how Anne was treated, I …

Then,  write out a ten-point statement answering the question, “Who am I?” based on the influences of those twelve people.
Example:
“Who am I? I am a person who takes responsibility for…”

In: Psychology