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

paul m.

Divider

Questions asked

BEST MATCH

Which of the following statements is correct? Cover crops remove excess nitrogen from soil. Although tilling soil disrupts its structure, the aeration it provides outweighs that disruption. Maximizing the presence of living roots increases microbial activity. Biodiversity has been found to be detrimental to some agricultural systems.

View Answer
divider
BEST MATCH

What is one reason a nurse would place a patient in a Trendelenburg position?

View Answer
divider
BEST MATCH

In Social, Behavioral, and Education Research, what are the primary risks to participants? Select all correct answers. Potential of distress and/or worsening of mental health conditions. Loss of privacy and breach of confidentiality of data, which could lead to loss of employment, financial standing, damage to reputation. Legal risks. Damage to the reputation of the researcher.

View Answer
divider
BEST MATCH

Which of the following is the most serious and the most frequent cause of sudden cardiac death? A Atrial flutter. B Atrial fibrillation. C Ventricular flutter. D Ventricular fibrillation.

View Answer
divider
BEST MATCH

Question 65 Chapter 20 - Which of the following is NOT a primary target of T lymphocytes? Fungi Toxins Cancer cells Viruses 1 pts

View Answer
divider
BEST MATCH

TB MC Qu. 14-70 The discount rate... The discount rate Multiple Choice is the rate of interest charged by the Fed when it lends money to private banks. is the rate that private banks charge other private banks for a loan. is the reduction in the prime rate that big banks provide to corporate borrowers. is always equal to the market rate minus the core rate of inflation.

View Answer
divider
BEST MATCH

What will the following boolean expression evaluate to if the variables have these values: int i = 12; int j = 12; int k = 15; The boolean expression is: 5 <= i && i < 18 Error occurs True False

View Answer
divider
BEST MATCH

In this problem, you are given a partially completed program, and you need to update and fill in the rest of the program to produce the desired output. This problem is like other programs we've done for Trish's Swap Shop. The program asks the user for the number of books, DVDs, and games being purchased, and then it will output the cost for each item and the total with tax. Values: • Books are $2.25 each. • DVDs are $4.35 each. • Games are $5.00 each. • Tax is 6.5% Sample output: Enter the number of books: 7 Enter the number of DVDs: 3 Enter the number of games: 4 Books: $15.75 DVDs: $13.05 Games: $20.00 Subtotal: $48.80 Tax: $3.17 Total: $51.97 • The instructor has provided a file called Lab04P2-FillThisIn.py. Download that file and rename it Lab04P2.py. • Copy that file into your PyCharm project. • Change the program header to include your name and the date. • Replace # -- FILL THIS IN -- # with correct code that will enable the program to produce output like what is shown above. • Use the function name and parameter names indicated in the program comments. • Use Global Constants within the function where appropriate to make your code more readable. • All monetary values should be formatted with 2 digits after the decimal point. • Run this program using the PyCharm Terminal. • Take a screenshot of the Terminal that includes the line showing where you started the program run with the results. • Name the screenshot Lab04P2-ouput.jpg.# Global Constants BOOK_PRICE =2.25 DVD_PRICE =4.35 GAME_PRICE =5.00 TAX_RATE =0.065 # Tax Rate of 6.5% 1 usage def main(): # DO NOT CHANGE ANY CODE IN THE MAIN ROUTINE # NOTE: This program is NOT doing input validation to simplify the # program. To do input validation we would need to insert these lines # into while loops. num_books = int(input('Enter the number of books: ')) num_dvds = int(input('Enter the number of DVDs: ')) num_games = int(input('Enter the number of games: ')) calc_and_display_total (num_books, num_dvds, num_games) # Create a function called calc_and_display_total. It should take # 3 parameters. Use the names provided here: # books - Number of books # dvds - Number of dvds # games - Number of games # # It should calculate and display the total cost of each item. It should also # calculate and display the total cost with tax. # -- FILL THIS IN -- # main() # Global Constants B00K_PRICE = 2.25 DVD_PRICE= 4.35 GAME_PRICE= 5.00 10 TAX_RATE= 0.065 # Tax Rate of 6.5% 11 1usage 12 def main(): # DO NOT CHANGE ANY CODE IN THE MAIN ROUTINE 13 # NOTE: This program is NOT doing input validation to simplify the 14 # program. To do input validation we would need to insert these lines 15 # into while loops. 16 num_books = int(input(Enter the number of books:)) 17 num dvds = int(input('Enter the number of DvDs: )) 18 num_games = int(input('Enter the number of games: ')) 19 20 calc_and_display_total(num_books, num_dvds, num_games) 21 22 23 # Create a function called calc_and_display_total. It should take # 3 parameters. Use the names provided here: # books- Number of books 24 25 26 # dvds- Number of dvds 27 # games- Number of games 28 # 29 # It should calculate and display the total cost of each item. It should also 30 # calculate and display the total cost with tax. 31 32 #-- FILL THIS IN -- # 33 34 35 main()

View Answer
divider
BEST MATCH

Five compounds, A, B, C, D, and E were separated by micellar electrokinetic chromatography run in a buffer at pH 8.0 with 40 mM of sodium dodecyl sulfate. Data gathered from the separation is shown in the table. If this separation was run in the absence of sodium dodecyl sulfate, what would be the elution order? Compound Charge at pH 8.0 Migration time (min) A -1 14.6 B 0 7.0 C -2 11.1 D +2 20.3 E 0 10.1 Elutes first Elutes last Answer Bank A E D C B Which compound was most soluble in the micelles? OD A B E OC

View Answer
divider
BEST MATCH

Problem 3 (based on old exam) (20 pts) Figure shows a portion of a pump that is gear-driven at uniform load and speed. The shaft is supported by bearings mounted in the pump housing. The shaft is made of steel having Su = 690 MPa, Sy = 580 MPa. Fatigue stress concentration factors for the fillet have been determined and are shown on the drawing. The shaft has the following properties at the fillet: Marin surface factor = 0.9 Marin size factor = 0.9 Reliability requirement = 99%

View Answer
divider