GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

Author Archives: Anonymous

A house is for sale for $500,000. You have a choice of two 3…

A house is for sale for $500,000. You have a choice of two 30-year mortgage loans with monthly payments: (1) if you make a down payment of $50,000, you can obtain a loan with a 8 percent rate of interest or (2) if you make a down payment of $100,000, you can obtain a loan with a 7 percent rate of interest. What is the effective annual rate of interest on the additional $50,000 borrowed on the first loan?

Read Details

An appraisal usually contains three approaches to valuation….

An appraisal usually contains three approaches to valuation. Which of the following is NOT one of those approaches?

Read Details

A loan was made 2 years ago for $500,000 at 10.5 percent for…

A loan was made 2 years ago for $500,000 at 10.5 percent for a 30-year term. Rates are currently 7 percent. What is closest to the market value of the loan as of today for the remaining payments?

Read Details

What is the annual interest rate of a fully amortizing 20-ye…

What is the annual interest rate of a fully amortizing 20-year fixed rate $175,000 mortgage, with a monthly payment of $1,409.79?

Read Details

A transaction in which a borrower sells a property for less…

A transaction in which a borrower sells a property for less than the current balance of the loan and then provides all of the proceeds to the sale to the lender, typically in full satisfaction of the loan is:

Read Details

The following program generates an error. Why? const int NUM…

The following program generates an error. Why? const int NUM_ELEMENTS = 5;int userVals[NUM_ELEMENTS];int i;userVals[0] = 1;userVals[1] = 7;userVals[2] = 4; for (i = 0; i

Read Details

What is the ending value of the element at index 0? int numb…

What is the ending value of the element at index 0? int numbers[10];numbers[0] = 35;numbers[1] = 37;numbers[1] = numbers[0] + 4;

Read Details

The numNegatives variable counts the number of negative valu…

The numNegatives variable counts the number of negative values in the array userVals. What should numNegatives be initialized to, to make sure it has the correct value after the for loop? int userVals[20];int i;int numNegatives = /* What should this be? */ ; for (i = 0; i < 20; ++i) { if (userValues[i] < 0) { numNegatives = numNegatives + 1; }}

Read Details

What is the output? int MyFct(int x) { int y; x = x * 2; y =…

What is the output? int MyFct(int x) { int y; x = x * 2; y = x + 1; return y;} int main() { int a; a = 5; cout

Read Details

What is the output? void IsEven(int num) { int even; if (num…

What is the output? void IsEven(int num) { int even; if (num % 2 == 0) { even = 1; } else { even = 0; }}int main() { IsEven(7); cout

Read Details

Posts pagination

Newer posts 1 … 45,683 45,684 45,685 45,686 45,687 … 73,200 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top