Write an equation that properly models the problem below and solve the problem. Jeff wants to make an A in his math course this semester. To do so, he must have an average of 90 or above. If his test scores this semester are 87, 91, and 95, what is the score that he would need on his final test to attain an average of exactly 90?

A.
B.
C.
D.
E.


Answer: A

Computer Science & Information Technology

You might also like to view...

What will be the output of the following program when the button is clicked on?

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim word, result As String word = "Benjamin" result = Rotate(word) result = Rotate(result & word) result = Rotate(result) txtBox.Text = result End Sub Function Rotate(var As String) As String Dim varlength As Integer varlength = var.Length Return var.Substring(1) & var.Substring(0, 1) End Function ``` (A) jaminBBenjaminen (B) BenjaminBenjamin (C) njaminBe (D) None of the above

Computer Science & Information Technology

In a form, setting the Method attribute to ____________________ uses the browser default of the user's browser to send form data.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Match the following tablet terms with their description

1. Surface 2. Surface Pro 3. iPad 4. Google 5. Windows programming language A. Windows RT B. Android C. iOS D. JavaScript E. Windows 8 Pro

Computer Science & Information Technology

You can press the ____ key to go the next cell in a table row or the first cell in the following row.

A. DOWN ARROW B. CTRL C. TAB D. UP ARROW

Computer Science & Information Technology