Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
jeffrey hamilton

jeffrey h.

Divider

Questions asked

BEST MATCH

Indicate the ionic species of ammonia that predominates at pH 4, 8, and 11. pH 4; pH 8; pH 11;

View Answer
divider
BEST MATCH

Write a function which outputs as many crosses as the parameter 'numCrosses' indicates. def stars(numCrosses): For example, when parameter 'numCrosses' equals 5, the function displays the following: + + + + + + + + + + + + + + + You are not allowed to use string "concatenation" or multiplication. Also the use of a list and appending to a list is not permitted. You must solve the problem using 2 loops (one 'for' loop nested in the other). Concatenation: # String Concatenation means adding two strings together A = "Hi!" B = "Hello" C = A +" "+ B print (C) # Shows: Hi! Hello Hints: [ be sure to type the examples below, copy/pasting will give you errors! ] Remember: print (1) print (2) Shows: 1 2 But: print (1, end=' ') # end = ' ' prevents new line from happening print (2) Shows: 1 2 If we do: for row in range(0, 4,1): print ( ' * ' ) We get: * * * * We need to add more extra star with each additional row: * # add zero extra stars at row 0 * * # add 1 extra star at row 1 * * * # add 2 extra stars at row 2 * * * * # add 3 extra stars at row 3 Which leads to: for row in range(0, 4, 1): print (' * ', end= ' ') # show a star, but no new line yet for j in range (0, row, 1): # loop happens as many times as value of 'row' print (' * ',end = ' ' ) # show extra stars on the same line print ( ) # show a new line after the extra stars The code above needs to be in a function.

View Answer
divider
BEST MATCH

Determine the kinds of intermolecular forces that are present in each element or compound for H2O?

View Answer
divider
BEST MATCH

5. We pick a route from (-10, -10) to (10, 10) uniformly at random, when we are allowed to move by (+2, +1) or (0, +1) each turn. The probability it passes through (0, 0)?

View Answer
divider
BEST MATCH

You gram stain a bacterial colony and it comes back as a gram positive catalase positive cocci in clusters. Which of the following bacteria could it be? Group of answer choices Klebsiella pneumoniae Staphylococcus aureus Bacillus cereus Streptococcus pneumoniae

View Answer
divider
BEST MATCH

Please use a table to show the numbers. Thank you. Work-in-Process Control Manufacturing Overhead Control Materials Control 17 Bal. Bal. Bal. Bal. Bal. Bal. Bal. Bal. Finished Goods Control 8 Manufacturing Overhead Allocated Cost of Goods Sold Bal. JL JL Bal. Bal. Bal. Bal. Bal. Bal. Reference . Journal Entry Accounts Debit Credit (In milions) 154 154 153 153 15 15 96 36 132 21 21 14 14 65 65 296 296 406 406 (1.) Materials Control Accounts Payable Control (2) Work-in-Process Control Materials Control (3) Manufacturing Overhead Control Materials Control (4) Work-in-Process Control Manufacturing Overhead Control Wages Payable Control (5) Manufacturing Overhead Control Accumulated Depreciation - Buildings and Manuf. Equipment (6) Manufacturing Overhead Control Miscellaneous Accounts (7) Work-in-Process Control Manufacturing Overhead Allocated (8) Finished Goods Control Work-in-Process Control (6) Accounts Receivable Control Revenues (10) Cost of Goods Sold 298 Finished Goods Control 298 (11) Manufacturing Overhead Allocated 65 21 Cost of Goods Sold Manufacturing Overhead Control 86

View Answer
divider
BEST MATCH

If a 6% increase in the price of houses causes a 15% reduction in the quantity of houses sold, what is the price elasticity of demand and what type of elasticity is it? 2.5, inelastic 2.5, elastic 0.4, inelastic 0.4, elastic

View Answer
divider
BEST MATCH

Question 5 (1 point) Listen Cora has a tremendously difficult time eating in front of other people, for fear that they will catch her with something in her teeth, that she will eat sloppily, or spill food all over her. She fears humiliation and negative scrutiny from others only with this specific activity. What would we call this? a) Social Anxiety disorder, specific b) Specific phobia, specific c) Specific phobia, general d) Social Anxiety disorder, general

View Answer
divider
BEST MATCH

Consider the following system of linear equations: x1 + x2 + x3 = 3, 3x1 + 6x2 - 3x3 = -45, -x1 - 2x2 + 2x3 = 19. Let A be the coefficient matrix and X the solution matrix to the system. Solve the system by first computing A⁻¹ and then using it to find X. You can resize a matrix (when appropriate) by clicking and dragging the bottom-right corner of the matrix. A⁻¹ = 2 3 -1 1 2 1 0 1 3 X = 0 0

View Answer
divider
BEST MATCH

Let Find a spanning set for the null space of $A$. $N(A) = \text{span}\left\{ \begin{bmatrix} 1 \\ -1 \\ -1 \\ 1 \end{bmatrix}, \begin{bmatrix} 0 \\ 0 \\ 1 \\ 1 \end{bmatrix}, \begin{bmatrix} 0 \\ 0 \\ 0 \\ 0 \end{bmatrix} \right\}$ $A = \begin{bmatrix} -6 & 2 & -4 & 4 \\ -3 & 1 & -2 & 2 \end{bmatrix}$

View Answer
divider