What interest will be charged on a $300 loan for 6 months if the rate is 18% simple interest?

A.
B.
C.
D.
E.


Answer: E

Computer Science & Information Technology

You might also like to view...

When you select a subform control, an orange border appears around the control and a(n) ________ appears in the top-left corner

Fill in the blank(s) with correct word

Computer Science & Information Technology

A column in a column chart is an example of a ________ marker

Fill in the blank(s) with correct word

Computer Science & Information Technology

To add a button to the Quick Access Toolbar, you must first go to the:

A) DEVELOPER Tab. B) Quick Access Toolbar. C) Add-Ins Tab. D) Backstage view.

Computer Science & Information Technology

Name three categories of errors that may be found in a computer program. Which category is detected by the compiler?

// This program determines the percentage grade on
// an exam, given the number of questions missed,
// how many points each question was worth,
// and the total points possible.

#include 
using namespace std;

int main()
{
int		pointsPerQuestion;
int		numberMissed;
double	percentageGrade;
double	pointsPossible;

cout << "Enter the total points possible on the exam => ";
cin  >> pointsPossible;
cout << endl;
cout << "Enter the number of points per question => ";
cin  >> pointsPerQuestion;
cout << endl 
cout <<"Enter the number of questions missed => ";
cin >> numberMissed;

percentageGrade = pointsPossible - numberMissed * pointsPerQuestion  /   					pointsPossible  *  100;

cout << endl << "The percentage grade is ";
cout << percentageGrade << "%";

return 0;
}

Computer Science & Information Technology