1) Elaborate on the concept of competitiveness. How does it affect trade in goods and services? Is it necessary that the current account will improve? What are the conditions for the current account to improve?
2 )Compare and contrast autarky with free trade. Talk on the pros and cons.
3) Define the current and financial accounts.
In: Finance
PLEASE DO NOT CHANGE THE CODE BELOW!
In this problem, we will implement an nth root finder. In particular, please fill in the findNthRoot(int number, int n, int precision) method in the class NthRootFinder. The method should return a string representing the nth root of number, rounded to the nearest precision decimal places. If your answer is exact, you should fill in the answer with decimal places (i.e. with input 41 and precision 5, we should return 41.00000.) You may not use any library functions for this question.
In this question, our program expects 3 lines, where the first line is n (the degree of root to take), the second line is a number, and the third number represents the precision. The output is a single line containing the answer followed by a newline.
For example, the following input would generate the output 20.000: 2 400 3 Additionally, the following input would generate the output 6.86: 2
47
2
import java.util.Scanner;
public class NthRootFinder {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// Read n (for taking the nth root)
int n = Integer.parseInt(sc.nextLine());
// Read number to take the nth root of
int number = Integer.parseInt(sc.nextLine());
// Read the desired precision
int precision = Integer.parseInt(sc.nextLine());
// Print the answer
System.out.println(findNthRoot(number, n, precision));
}
private static String findNthRoot(int number, int n, int precision)
{
// TODO complete this method
double
return 0;
}
}
In: Computer Science
These balances were extracted from the books of Tembo Ltd as at 31 January 2018:
Debit | Credit | |
Retained earnings (31 January 2018) | 12,994,000.00 | |
Interest payable | 175,312.50 | |
Long term loan | 2,250,000.00 | |
Application and allotment | 2,691,000.00 | |
Shareholders for ordinary dividends | 30,000.00 | |
Stated share capital (2 000 000 ordinary shares) | 4,000,000.00 | |
Preference share capital and shareholders for preference dividends are not known |
Additional information:
On 28 February 2018 Tembo Ltd issued 877 000 ordinary shares and applications worth N$60 000.00 were returned due to an oversubscription.Underwriting commission was not accrued in the in the previous final year and the underwriter was paid a commission of 2%.Tembos accounting policy with respect to share issue costs is to minimize distributable reserves.The final dividend was paid on 3 February 2019.Tembo Ltd had issued 15 000,N$3, 6% cumulative preference shares on the 1 February 2016.Preference shares have never been issued at a premium and in case of preference shares declared they are then paid on 1 February.Furthermore ,Tembo Ltd declared and paid an ordinary interim dividend of 7 cents per share on 15 February 2018 and declared a final dividend of N$0.50c per share on 30 January 2019.
The first dividend ever to be paid by Tembo Ltd was the N$30 000.00 ordinary dividend of the prior year.The simple interest payable on the outstanding balance of the long term loan bears at 8.5%.The interest is payable annually on 28 February and the two capital repayments of N$350 000.00 and N$400 000.00 were made on 31 June 2018 and 31 December respectively.The net profit in the statement of profit or loss and comprehensive income is N$3 827 000.00 for the year ended 31 January 2019.This is before any of the information above has been taken into account.
You are required to:
1.Calculate the price at which each ordinary share was issued in the current year
2.Prepare all journal entries relating to the share issue ,to be processed in 2019 financial year.
3.What does the accounting policy say on distributable reserves with relation to the underwriter commission.
4.Calculate the dividends paid to ordinary shareholders during the year ended 31 January 2019 (4 marks )
5.Calculate the dividends paid to preference shareholders during the year ended 31 January 2019
6.Calculate the final net profit
7.Calculate the closing retained earnings
8.How would you determine the total asset value of Tembo Ltd.
In: Accounting
12) Calculate the change in pH when 3.00 mL of 0.100 M HCl(aq) is added to 100.0 mL of a buffer solution that is 0.100 M in NH3(aq) and 0.100 M in NH4Cl(aq).
delta pH=?
Calculate the change in pH when 3.00 mL of 0.100 M NaOH(aq) is added to the original buffer solution.
delta pH=?
In: Chemistry
Browse and read the article
Your response must demonstrate that you have read and understood
the article.
Your response must also be substantive and explain why the article
is useful for the a research essay.
The article is from nytimes.com called "Gun Control Explained". It was published on October 7th, 2015 by Richard Perez-Pena.
In: Psychology
A. Explain your reasons for deciding which is better: improve the processor or improve the algorithm? Use the following facts in your consideration:
❖ PC / home computer executes 10 ^ 8 comparisons per second
❖ Supercomputer executes 10 ^ 12 comparisons per second
❖ The complexity of insertion sort O (n ^ 2) and quick sort 0 (n log n).
B. There are two algorithms (A and B) that can be used to solve a given problem (P). As a computer master candidate, give a comprehensive consideration of choosing the best algorithm between A and B in solving P problems.
In: Computer Science
De Beers, a diamond mining and distribution firm, is one of the most successful monopolies in history. The firm used numerous tactics to successfully control supply and demand. Read the article 'Here's why diamonds are so expensive' (Links to an external site.), and watch the video 'Why engagement rings are a scam' (Links to an external site.) [warning: contains strong language], and respond to the following prompts in a post with a minimum of 250 words. Feel free to bring in additional references to these reply posts. Using economic principles and models, explain how De Beers are able to set high prices for their diamonds? In recent times, rival firms in Canada, Australia, and Russia have found huge deposits of precious stones. What would happen to prices and supply of diamonds if De Beers allowed their competitors to enter the diamond market. Use economic principles and models to explain your answers. In 2004, De Beers was charged by the US Department of Justice for violating antitrust laws. What is the purpose of antitrust laws? What other kind of government policies exist in dealing with monopolies? Now that you have learned about De Beers and the diamond market, would you spend or expect your partner to spend two months of your/your partner's salary on an engagement ring? Explain your answer.
In: Economics
1. For the next few questions, consider a network formed by 500 students in a dorm as the nodes.
The edges in this network represent roommate relationships, i.e. two nodes are connected if they are currently roommates. In this form, the rooms are mostly double occupancy with a few triples and quads.
What is the mode (most frequent value) of the node degrees?
2. Consider the aforementioned roommate network. How many nodes are in the largest clique in the network?
3.Consider the aforementioned roommate network. Would an adjacency matrix of this graph contain mostly ones or zeros?
4.Consider the aforementioned roommate network. Among the following types of network representations, which would be more compact? Adjacency Matrix or Adjacency List?
5.Consider the aforementioned roommate network. Which of the following best describes the connectivity of this graph?
Not connected
Weakly connected
None of the above
Strongly connected
In: Computer Science
As the cost accounting manager at Cambria Chemicals (CC), you are responsible for compiling and reporting various performance measures to the senior managers. The company instituted many efficiency improvement programs recently, and the CFO has asked you to measure and report total factor productivity measures based on the three inputs (material, labor, and overhead). Data for the last two years follow:
Year 2 | Year 1 | |||||
Gallons input (thousands) | 10,600 | 9,600 | ||||
Labor-hours (thousands) | 8,900 | 6,500 | ||||
Gallons of output (thousands) | 12,400 | 10,400 | ||||
From the accounting records, you also gather the following information for the two years:
Year 2 | Year 1 | ||||||
Cost of inputs (per gallon) | $ | 79 | $ | 79 | |||
Wage rate (per hour) | $ | 25 | $ | 16 | |||
Total manufacturing overhead | $ | 1,360,000 | $ | 1,210,000 | |||
Selling price of output (per gallon) | $ | 380 | $ | 385 | |||
Required:
a. Compute the total factor productivity measures for year 1 and year 2 based on the three inputs (material, labor, and overhead).
|
In: Accounting
Write a VHDL code for a 8x8 bit multiplier. use structural approach. write the design code and testbench. Use for-generate if possible
In: Electrical Engineering
Que: Technology has changed our lives in many ways. Think of a development in technology, such as the widespread use of cellular phones or the availability of the Internet. Write an essay in which you explain the causes and effects of this development on our lives.
(Answered need to be in soft copy only)
In: Psychology
Code in Golang:
Write a boolean function called share with one integer parameter which determines whether the sum of the digits in the inputted integer and the inputted integer share a factor other than one. If so, return true, otherwise return false. Examples: 121 sum is 4, so the function returns false 242 sum is 8, so the function returns true
In: Computer Science
Why is it important for an accountant to understand their business and industry as well as managements informational needs in addition to knowing how to generate financial statements? Note: You may use S&S as the context while answering this question. However, please present your own examples.
In: Accounting
By using Python code:
1. list1 = ['smith', 'john', 'andy']
list2 = ['kim', 'mary', 'paul']
Write a python program which does the following:
a. add items in list2 to list1
b. Remove mary from list1
c. Insert sam at 5th position
d. Sort the elements of list1 in ascending order
2. Write a python program that asks the user to enter a sentence and creates a list of words in that sentence.
3. friends =
('sam','andy','mary','andy','john','andy','mary')
Write a python program which does the following:
a. for the above string calculate the number of times "andy" appears in the tuple
b. change sam with smith
c. print index of john
In: Computer Science
Many reputable theorists believe DID does not exist.What do you think? Support your thoughts.
In: Psychology