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

margaret g.

Divider

Questions asked

BEST MATCH

Question 37 What is the surface charge density of a conducting sphere of radius 2.5cm that carries a net charge of +1.6nC? 1.6 x 10$^{-19}$ C/m$^2$ 2.0 x 10$^{-7}$ C/m$^2$ 2.0 x 10$^{-11}$ C/m$^2$ 5.0 x 10$^{-9}$ C/m$^2$ 8.1 x 10$^{-7}$ C/m$^2$

View Answer
divider
BEST MATCH

What set of reaction conditions will allow for the transformation of an amide into an ester.

View Answer
divider
BEST MATCH

Which of the following is an Arrhenius acid? $H_2SO_4$ More than one of these compounds is an Arrhenius acid. $BH_3$ $HBr$

View Answer
divider
BEST MATCH

In Python, if I type the below, what will I get? x = 2 y = 3 x = 3 z =4 print(x+y) 0 5 0 6 0 0 1

View Answer
divider
BEST MATCH

Which type of game is distinguished by high barriers to entry, including long playing times and demand for advanced skills for ongoing play? Hardcore game Core game Social game Casual game

View Answer
divider
BEST MATCH

P(x) = 2x^2 + 8x + 5, c = -3 P(-3)

View Answer
divider
BEST MATCH

Language: C++ 20 Environment: Autocomplete Ready #include <bits/stdc++.h> using namespace std; int getTripletCount(vector<int> arr, int d) { // Write your code here } int main() { // Test cases } Question 1: Find all stocks in triplets such that the sum of the cost for three days is divisible by d. The goal is to find the number of distinct triplets i, k such that i < j < k and the sum a[i] + a[j] + a[k] is divisible by d. Example 1: Let arr be the prices of stock = [3, 3, 4, 7, 8] and d = 5. Following are the triplets whose sum is divisible by d (1-based indexing): - Triplet with indices 1, 2, 3, sum = 3 + 3 + 4 which is equal to 10 - Triplet with indices 1, 3, 5, sum = 3 + 4 + 8 which is equal to 15 - Triplet with indices 2, 3, 4, sum = 3 + 4 + 8 which is equal to 15 Hence the answer is 3. Function Description: Complete the function getTripletCount in the editor below. The function must return an integer denoting the total number of distinct triplets. getTripletCount has the following parameters: - arr: an array of integers - d: an integer Constraints: 3 <= n <= 10^3 1 <= arr[i] <= 10^9 Test Results: Custom Input: DELL

View Answer
divider
BEST MATCH

(Marsden-Tromba 7.2.9) Evaluate ∫ydx + (3y - dy + zdz) for each of the paths c(t) = t^2 + 9t + 1, where n = 1, 2, 3 runs across the positive integers. Your answer should be in terms of an arbitrary positive integer n.

View Answer
divider
BEST MATCH

2 Question 8, chap 120, sect 10. part 1 of 2 10 points A gas is enclosed in a container fitted with a piston of cross-sectional area 0.15 m². The pressure of the gas is maintained at 9350 Pa as the piston moves inward 23 cm. Calculate the work done by the gas. Answer in units of J. Question 9, chap 120, sect 10. part 2 of 2 10 points If the internal energy of the gas decreases by 10.7 J, find the amount of heat removed

View Answer
divider
BEST MATCH

For the following two transactions and the initial table values as shown complete the missing blanks in the transaction log below: Part_ID Desrption OnHand OnOrder 57 Assembled Foo 5 0 987 Foo Fastener 12 7 989 Foo Half 7 0 BEGIN TRANSACTION; UPDATE Part SET OnHand = OnHand + 7, OnOrder = OnOrder - 7 WHERE Part_ID = 987; COMMIT; BEGIN TRANSACTION; UPDATE Part SET OnHand = OnHand - 4 WHERE Part_ID = 987; UPDATE Part SET OnHand = OnHand - 2 WHERE Part_ID = 989; UPDATE Part SET OnHand = OnHand + 1 WHERE Part_ID = 57; COMMIT TRL_ID TRX_ID PREV_PTR NEXT_PTR OPERATION TABLE ROW ATTRIBUTE BEFORE AFTER ID VALUE VALUE 1787 109 NULL START **** 1788 109 1787 UPDATE PART 987 OnHand 12 1789 109 UPDATE PART 987 OnOrder 7 1790 109 NULL COMMIT **** 1791 110 NULL START ****

View Answer
divider