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

cynthia j.

Divider

Questions asked

BEST MATCH

Multiple Choice Question A Blank______ register is a report that shows the pay period dates, hours worked, gross pay, deductions, and net pay of each employee for each pay period. Multiple choice question. W-4 W-2 payroll tax

View Answer
divider
BEST MATCH

What does sustainability mean? Choose all the answers that you think are correct: Group of answer choices ensuring human rights and well-being without depleting or diminishing the capacity of the earth's ecosystems to support life, or at the expense of others well-being meeting the needs of current generations without compromising the ability of future generations to meet their needs the ability for an action or process to continue on indefinitely

View Answer
divider
BEST MATCH

A stufent launches a small rocket which starts from rest at ground level. At a high h= 1.49 km, the rocket reaches a speed of vf =311 m/s. At that heigh, the rocket runs out of fuel, so there is no longer any thrust propellibg it. Take the positive directionto upward. After the rocket's engine turns iff at a hight of h= 1.49 km, it continues to move upward due to the velicity tgat it reached. What is the ricket's acceleration, in meters per squared secord, during the oeriod from engine shutoff until it turns to the ground?

View Answer
divider
BEST MATCH

typically, bacterial DNA contains less repetitive DNA than eukaryotic DNA. true or false

View Answer
divider
BEST MATCH

You are given an array A of N positive integers. In one move, you can pick a segment (a contiguous fragment) of A and a positive integer X and then increase all elements within that segment by X. An array is strictly increasing if each element (except for the last one) is smaller than the next element. I need a Java code for this. Write a function: int solution(vector &A); that, given an array A of N integers, returns the minimum number of moves needed to make the array strictly increasing. Examples: 1. Given A = {14, 2, 4, 1, 3, 5}, the function should return 2. One possible solution is to add X = 3 to the segment [2, 4], and then add X = 8 to the segment [1, 3, 5]. As a result of these two moves, A is now strictly increasing. 2. Given A = {3, 5, 7, 71}, the function should return 1. Write an efficient algorithm for the following assumptions: - N is an integer within the range (1, 100,000). - Each element of array A is an integer within the range.

View Answer
divider
BEST MATCH

Wizard Works Orders for March, 2007 Customer Wilson, Rachel Add header Shipping Costs Standard $8.95 Express $14.95 Discount for orders > $200 5% Address Product Price Qty Total 8502 Nighthawk Lane Darby, NH 80021 Nighteyes (Box 10) $29.95 2 $59.90 Goblin Fountain $19.95 1 $19.95 Assorted Items $19.95 3 $59.85 Subtotal Shipping $5.00 Standard Discount TOTAL $5.00 +

View Answer
divider
BEST MATCH

Please answer the following question step by step with real formulas, not Excel: A) You've just found a 10 percent coupon bond on the market that sells for par value. What is the maturity of this bond? B) To calculate the number of years until maturity, assume that it is currently May 2022. All of the bonds have a $1,000 par value and pay semiannual coupons. RATE MATURITY BID ASKED Chg ASK Yld ?? May 29 102.725 102.915 0.3204 2.18 3.850 June 32 103.168 103.823 0.4513 ?? 4.125 July 38 ?? ?? 0.6821 3.87

View Answer
divider
BEST MATCH

Question 6 Specialization Defines the subclasses of an entity type Defines a set of subclasses Subclass resulting from the inclusion of multiple entity type Models which do not allow shared or multiple subclasses All subclasses share a similar attribute in the existing superclass Objects that share most, but not all, of the properties in a class Inclusion of values from levels found in higher in a particular hierarchy Collection of subclasses of an entity type Governed by more than one superclass Determination of membership in a subclass based on an existing superclass attribute A requirement that every Subclass participates in one and only one relationship Minimization of similarities that allows for aggregation at a higher level of abstraction A collection of entities that belong in the same entity set advanced relationship, inheritance constructs, categories, and union types Inverse of classification that uses generic or abstract constructs Are combined to create the next higher level in a hierarchy of a class Constructs used to define semantic models A precise specification or representation of a concept or conceptualization A strict hierarchy that does not share class, superclass or attributes Data modeling and architectural visualization technique Hierarchical construct that contributes to a pre-existing constraint The attribute that is shared by a superclass A subclass that allows multiple relationships Properties that are shared across a class but are not a requirement The attribute that describes a specific specialization hierarchy Abstract process of combining composite objects with their component objects

View Answer
divider
BEST MATCH

12. a. Write the general anti-derivative of $\int \left( 2^x - \frac{3}{x} + 2\sqrt{x} \right) dx$. a. Use the Fundamental Theorem of Calculus to compute $\int_0^2 (x^2 - 2x + 2) dx$.

View Answer
divider
BEST MATCH

The Madhava-Leibniz series is used to approximate the value of $\pi$. It is given as: $\pi = \sqrt{12} \sum_{i=0}^{\infty} \frac{(-3)^{-i}}{2i + 1} = \sqrt{12} \left( \frac{1}{1} + \frac{-3^{-1}}{3} + \frac{-3^{-2}}{5} + ... \right)$ Write a program that approximates $\pi$ to be the sum of the first 100 terms in the above series. Use a for loop.

View Answer
divider