In: Biology
The following frequency distribution shows the price per share for a sample of 30 companies listed on the New York Stock Exchange.
| Price per Share | Frequency | |
| $20-29 | 7 | |
| $30-39 | 4 | |
| $40-49 | 6 | |
| $50-59 | 4 | |
| $60-69 | 5 | |
| $70-79 | 1 | |
| $80-89 | 3 |
Compute the sample mean price per share and the sample standard deviation of the price per share for the New York Stock Exchange companies (to 2 decimals). Assume there are no price per shares between 29 and 30, 39 and 40, etc.
| Sample mean | $ |
| Sample standard deviation | $ |
In: Math
[Computer Science Question]
Compare and Contrast the trade-offs associated with using C++ in
comparison to Python. How do the characteristics of the languages
impact the amount of memory each language occupies. How do memory
considerations impact each languages real world
implementations?
In: Computer Science
In this assignment you must submit TWO different programs both of which accomplish the same thing but in two different ways.
Using NetBeans, create a program that prompts the user for a sentence. Then the program displays the position of where the lowercase letter 'a' appears everywhere in the sentence. Here is a sample of the input and output:
Enter a sentence
for the night is dark and full of terrors.
The lowercase letter 'a' appears at character position 18
The lowercase letter 'a' appears at character position
22
Write TWO different programs that accomplishes the above using different techniques. Take a look at the JavaDocs for the String methods available to you. For example, one way is you might use the 'charAt()' method while your second program uses 'indexOf()'.
please send me the solution in java as soon as possible.
In: Computer Science
Free-body Diagrams - 01
Due in 21 hours, 49 minutes
A free-body diagram is a major tool we use to help analyze problems involving forces. To create a free-body diagram, place a dot on the paper to represent the object (or objects) of interest and then draw all of the forces acting on that body. The force vectors are drawn with their tail on the dot. A major step in any of our force problems is correctly identifying all of the forces acting on an object. There are three possible free-body diagrams shown at the top of the problem. Select the appropriate free-body diagram for each of the situations listed below. If there are two items mentioned, select the free-body diagram for the first object mentioned (book, block, you, ball).
A [One arrow pointing down]
B [One arrow pointing down, on down, one left, one right]
C [One arrow pointing down, one pointing up]
A
B
C
A book is sitting stationary on a table.
A
B
C
A block is being pulled by a string to the right at a
constant speed. There is friction between the block and the
table.
A
B
C
You are standing stationary on a flat floor.
A
B
C
A block is hanging from a string and is not
accelerating.
A
B
C
A ball is flying through the air. Ignore air resistance
(assume projectile motion).
Incorrect. Tries 1/10 Previous Tries
In: Physics
In: Accounting
Transactions; Financial Statements
On July 1, 2019, Pat Glenn established Half Moon Realty. Pat completed the following transactions during the month of July:
Required:
1. Indicate the effect of each transaction and the balances after each transaction. For those boxes in which no entry is required, leave the box blank. If required, enter negative values as negative numbers.
| Assets | = | Liabilities + | Owner's Equity | ||||||||||||||||||||
| Cash | + | Supplies | = | Accounts Payable |
+ | Pat Glenn, Capital |
- | Pat Glenn, Drawing |
+ | Sales Commissions |
- | Rent Expense | - | Office Salaries Expense |
- | Auto Expense |
- | Supplies Expense |
- | Miscellaneous Expense |
|||
| a. | |||||||||||||||||||||||
| b. | |||||||||||||||||||||||
| Bal. | |||||||||||||||||||||||
| c. | |||||||||||||||||||||||
| Bal. | |||||||||||||||||||||||
| d. | |||||||||||||||||||||||
| Bal. | |||||||||||||||||||||||
| e. | |||||||||||||||||||||||
| Bal. | |||||||||||||||||||||||
| f. | |||||||||||||||||||||||
| Bal. | |||||||||||||||||||||||
| g. | |||||||||||||||||||||||
| Bal. | |||||||||||||||||||||||
| h. | |||||||||||||||||||||||
| Bal. | |||||||||||||||||||||||
| i. | |||||||||||||||||||||||
| Bal. | |||||||||||||||||||||||
repare an income statement for July.
| Half Moon Realty | ||
| Income Statement | ||
| For the Month Ended July 31, 2019 | ||
| Sales commissions | $ | |
| Expenses: | ||
| Rent expense | $ | |
| Office salaries expense | ||
| Automobile expense | ||
| Supplies expense | ||
| Miscellaneous expense | ||
| Total expenses | ||
| Net income | $ | |
Feedback
2. An income statement reports the revenues and expenses. When revenues are larger than the expenses, the difference is net income.
Prepare a statement of owner's equity for July. If an amount is zero, enter "0".
| Half Moon Realty | ||
| Statement of Owner's Equity | ||
| For the Month Ended July 31, 2019 | ||
| Pat Glenn, capital,July 1, 2019 | $ | |
| Investment on July 1, 2019 | $ | |
| Net income for July | ||
| Withdrawals | ||
| Increase in owners equity | ||
| Pat Glenn, capital, July 31, 2019 | $ | |
Feedback
3. Follow Example Exercise 1-5. Recall that the statement of owner's equity considers beginning owner capital, additional investments of the owner and net income for the year and withdrawals to calculate the ending capital. The net income from the income statement is needed to complete the statement of owner's equity.
Prepare a balance sheet as of July 31.
| Half Moon Realty | |
| Balance Sheet | |
| July 31, 2019 | |
| Assets | |
| Cash | $ |
| Supplies | |
| Total assets | $ |
| Liabilities | |
| Accounts payable | $ |
| Owner's Equity | |
| Pat Glenn, capital | |
| Total liabilities and owner's equity | $ |
In: Accounting
Calculate the hydronium ion concentration and the pH at the equivalence point when 65.0 mL of 0.4000 M NH3 is mixed with 35.0 mL of 0.7429 M HCl.
Ka=5.6x10-10
In: Chemistry
Health and fitness
1. background/introduction
2. Etiology
3. Epidemiology
4. Signs and symptoms
5. Treatment modalities
6. Medical, Pharmacological and Nursing management
7. summary/conclusion
In: Nursing
Balance the following using the ½ reaction method Permanganate ion plus bromide ion yields (MnO4) and BrO3 - (basic solution)
In: Chemistry
In: Accounting
Describe the process for determining the orbital diagram for an atom, including the number of orbitals and electrons for each subshell. Describe how quantum numbers relate to the orbital diagrams. How does this quantum mechanical view of the atom differ from the Bohr model of the atom?
In: Chemistry
what is the time complexity of those ?
//TODO - Question 18
public static int[][] fillRandomArray4(int n) {
int[][] arr = new int[n][n];
for(int i = 0; i < arr.length;
i++) {
arr[i] = new
int[] {(int)(Math.random() * 101),
(int)(Math.random() *
101),
(int)(Math.random() *
101)};
}
return arr;
}
//TODO - Question 19
public static int factorial(int n) {
if(n == 1 || n == 0) {
return 1;
}
return n * factorial(n-1);
}
//TODO - Question 20 - assume str.length() == n
public static boolean isPalindrome(String str) {
if(str.length() == 0 ||
str.length() == 1) {
return
true;
}
if(str.charAt(0) !=
str.charAt(str.length()-1)) {
return
false;
} else {
return
isPalindrome(str.substring(1,str.length()-1));
}
}
In: Computer Science
Find the fundamental frequency and the frequency of the first three overtones of a pipe 55.0 cm long, if the pipe is open at both ends.
Please enter your answer as four numbers, separated with commas.
Find the fundamental frequency and the frequency of the first three overtones of a pipe 55.0 cm long, if the pipe is closed at one end.
Please enter your answer as four numbers, separated with commas.
If the pipe is open at both ends, what is the number of the highest harmonic that may be heard by a person who can hear frequencies from 20.0 Hz to 2.00×104 Hz?
If the pipe is closed at one end, what is the number of the highest harmonic that may be heard by a person who can hear frequencies from 20.0 Hz to 2.00×104 Hz
In: Physics