Answer:
$26,125
Explanation:
[($25,000 x 0.005) x 9 + $25,000]
=$26,125
Zach owe $26,125 as of December 31, 2019 because he did not fail to file - he failed to pay. Hence he owes the 0.5% per month or part of a month failure to pay penalty plus the already outstanding tax amount of $25,000 that he owed.
Answer:
The correct answer is letter "C": is an assumption that economists make to have a useful model for how decisions are made.
Explanation:
Rational Behavior guides the decision-making process towards choices that maximize individuals' benefits. Most economic theories assume that any individual taking part in action or activity is behaving rationally. Given the choice, people would choose something that increases their satisfaction.
Answer: The values are missing below are the values
a. $105
b. $95
answer :
a) $5
b) -$5 ( loss )
Explanation:
From the perspective of the long position for each of the two options upon expiration
a) For $105
for the long position ( long call ) since the expired price > than the exercise price
i.e. $105 > $100 the profit = $105 - $100 = $5
b) For $95
For the long position ( long call ) since the expired price < than the exercise price
i.e. $95 < $100 the profit = $95 - $100 = - $5 ( a loss is incurred )
Answer: B - The interest rate may increase after an inductor period.
Answer:
for (i = 0; datasamples[i] < NUM_POINTS ; ++i) {
if(datasamples[i] < minVal) {
datasamples[i] = datasamples[i] * 2;
}
}
Explanation:
In this particular problem, we are trying to look at each value in the datasamples array, and double it. This calls for the use of an index variable.
The index variable will keep track of the position within the array as we move from left to right. Starting on the left, at index 0, we will move right until we are at the end of the array.
++i takes care of incrementing the index variable each time the loop runs. This is what moves through the array.
The termination condition checks whether if we have iterates all values in the array. Once you've gone past all the values in the array the index variable is pointing all the way at the end.
As soon as the termination condition is false the loop will stop executing. So we will want to run your code while i (the index variable) is less than the size of the array (datasamples.length).
Once you've figured out the for loop bounds, simply check your conditional with an if-then statement before updating the values: