What are some ways that you can apply at least three of the advanced functions in...

What are some ways that you can apply at least three of the advanced functions in excel that you learnedl in excel class. How would you use them at home, work or school? Please be specific. 250 word min

In: Finance

20. Suppose we run program P in a computer system using the Linux operating system. We...

20. Suppose we run program P in a computer system using the Linux operating system. We use the Linux time command
to collect some time measurements while P is running. The output from time is,

real.       53m27 .589s
user      24m41 .850s
system 1m3 .337s

a. What was the execution time of P?
b. What was the user CPU time of P?
c. What was the system CPU time of P?
d. How much time during the execution of P did the system spend not executing the instructions of P nor OS in-
structions on behalf of P?
e. List and describe one factor or component of the time from exercise d, i.e., name one thing the system might have
been doing during this time period

In: Computer Science

1. What mass of water is produced from the complete combustion of 3.10×10−3 g of methane?...

1. What mass of water is produced from the complete combustion of 3.10×10−3 g of methane?

2. What mass of oxygen is needed for the complete combustion of 3.10×10−3 g of methane?

3. Set up two algebraic equations, one expressing the mass of carbon dioxide produced in terms of each reagent and the other expressing the mass of sample burned in terms of each reagent.

What is the mass of methyl alcohol (CH3OH) in the sample?

In: Chemistry

1. The FOCM has set the target Fed Funds rate at a range of 0% to...

1. The FOCM has set the target Fed Funds rate at a range of 0% to .25% in reaction to the economic contraction caused by the COVID-19 health/economic crisis. In order to achieve this target, the Federal Reserve Bank of New York must be actively engaged in buying money market securities.

True

False

2. This would be a sensible monetary policy:

In reaction to the COVID-19 health/economic crisis of the FOMC has decided to expand only the asset side of the Federal Reserve balance sheet.

True

False

3. The following statement makes sense:

In reaction to the COVID-19 crisis, the FOMC has made a commitment to reduce the SOMA of the Federal Reserve in order to pump more money into the financial system.

True

False

4. The actions the Federal Reserve has taken in response to the COVID-19 pandemic is inconsistent with the Federal Reserve mandate of maximum employment and price stability.

True

False

5. When the prices of Treasury securities increase the yield on these securities will decline.

True

False

In: Economics

In a pool game, the cue ball, which has an initial speed of 7.0 m/s, make...

In a pool game, the cue ball, which has an initial speed of 7.0 m/s, make an elastic collision with the eight ball, which is initially at rest. After the collision, the eight ball moves at an angle of 25° to the original direction of the cue ball.

(a) Find the direction of motion of the cue ball after the collision (______) I got the 60° which is right.

(b) Find the speed of each ball. Assume that the balls have equal mass.

(_____m/s)

(_____m/s)

In: Physics

A consignment of 12 car engines contains 1 engine that is faulty. Two engines are chosen...

A consignment of 12 car engines contains 1 engine that is faulty. Two engines are chosen randomly from this consignment for testing. How many different combinations of 2 engines can be chosen?

In: Math

DRAW A K-MAP FOR THIS SIX VARIABLE . THE OUTPUT VALUES ARE,6,7,8,16,17,19,20,22,23,24,25,26,29,30,31,32,33,35,38,39,40,42,45,48,50,51,52,54,55,57,58,59,60,62,63) DRAW K-MAP LAYOUT OF...

DRAW A K-MAP FOR THIS SIX VARIABLE .

THE OUTPUT VALUES ARE,6,7,8,16,17,19,20,22,23,24,25,26,29,30,31,32,33,35,38,39,40,42,45,48,50,51,52,54,55,57,58,59,60,62,63)

DRAW K-MAP

LAYOUT OF K -MAP

SOP THANKYOU

In: Computer Science

A cylindrical specimen of a brass alloy 8.3 mm (0.33 in.) in diameter and 76.7 mm...

A cylindrical specimen of a brass alloy 8.3 mm (0.33 in.) in diameter and 76.7 mm (3.02 in.) long is pulled in tension with a force of 7360 N (1655 lbf); the force is subsequently released.
(a) Compute the final length of the specimen at this time. The tensile stress-strain behavior for this alloy is shown in Animated Figure 7.12.
(b) Compute the final specimen length when the load is increased to 20300 N (4563 lbf) and then released.

In: Physics

Why wont my java program print out anything past "please enter a group of at least...

Why wont my java program print out anything past "please enter a group of at least 5 integers"?

import java.util.Scanner;

public class MyStatistics {

   public static void main(String[] args) {
       // TODO Auto-generated method stub

       Scanner sc=new Scanner(System.in);
       System.out.println("Please enter a group of at least 5 integers.");
      

       String count_val = sc.nextLine();
       int[] int_array = new int[5];
       int sum_val = 0;
       int mean_val = 0;
       System.out.println("Your input has " + count_val.split(" ").length + " numbers");
      
       //Input 5 Numbers
       for(int x = 0; x < 10; x++){
       int_array[x] = sc.nextInt();
       }
      
      
       //Find the sum
       for(int x = 0; x < 10; x++){
       sum_val = sum_val + int_array[x];
       }

      

       //Find the average
       for(int x = 0; x < 5; x++){
       mean_val = sum_val + int_array[x];
       }
      
      
       System.out.println("The sum is: " + sum_val);
       System.out.println("The mean is: " + sum_val / 5);
      
      
   }
      
  
}

In: Computer Science

The company publishes one regional magazine each in Upper North island (UN), Lower North island (LN),...

The company publishes one regional magazine each in Upper North island (UN), Lower North island (LN), Upper South island (US), and Lower South island (LS). The company has 300,000 customers (subscribers) distributed throughout the four regions. On the first of each month, an annual subscription INVOICE is printed and sent to each customer whose subscription is due for renewal. The INVOICE entity contains a REGION attribute to indicate the customer’s region of residence (UN, LN, US, LS):

CUSTOMER (CUS_NUM, CUS_NAME, CUS_ADDRESS, CUS_CITY, CUS_REGION, CUS_SUBSDATE)

INVOICE (INV_NUM, INV_REGION, CUS_NUM, INV_DATE, INV_TOTAL)

The company is aware of the problems associated with centralized management and has decided that it is time to decentralize the management of the subscriptions in its four regional subsidiaries. Each subscription site will handle its own customer and invoice data. The management at company headquarters, however, will have access to customer and invoice data to generate annual reports and to issue ad hoc queries, such as:

•           List all current customers by region.

•           List all new customers by region.

•           Report all invoices by customer and by region.

Given these requirements, how must you partition the database? How many fragments will you create? Design the database fragments for the INVOICE table and show two rows of sample data for each fragment.

In: Computer Science

matching Document or do not document A)indicate whether or not you need to document in the...

matching Document or do not document A)indicate whether or not you need to document in the following situation:you change a lot of the wording of a paragraph.B)indicate whether or not you need to document in the following situation: you list the birthplace of George Washington.C)indicate whether or not you need to document in the following situation: you use a sentence from a speech you got from an audio web site.D) indicate whether or not you need to document in the following situation: you're not sure whether you should document a source or not.

In: Computer Science

The SN2 Reaction can be described as chemospecicific; define the terms "chemoselectivity" and "chemospecificity", and explain...

The SN2 Reaction can be described as chemospecicific; define the terms "chemoselectivity" and "chemospecificity", and explain the origin of the observed chemospecifity in the williamson ether synthesis

In: Chemistry

Suppose today S&P 500 index is 1800 and the continuously compounded annual dividend yield on the...

Suppose today S&P 500 index is 1800 and the continuously compounded annual dividend yield on the index is 2%.

Assume that it is possible to lend at 4 % and borrow at 7 %, annually continuously compounded.

a) Above what futures price is there arbitrage?

b) Below what futures price is there arbitrage?

Please show the cash flows, which make each type of arbitrage and explain what you would

do at each relevant date. Consider time to maturity of 6 months

.

In: Finance

Q2 You have been asked by the management of Mok Ltd to assist with the preparation...

Q2

You have been asked by the management of Mok Ltd to assist with the preparation of the income tax entries for the year ended 30 June 2018. The company reported a profit before tax for the year to 30 June 2018 of $900 000. The company’s statements of financial position include assets and liabilities as follows:

2018

2017

Accounts receivable

$ 245 000

$ 200 000

Allowance for doubtful debts

(20 000)

(10 000)

Plant – at cost

600 000

600 000

Accumulated depreciation

(190 000)

(120 000)

Development asset – at cost

360 000

200 000

Accumulated amortisation

(130 000)

(80 000)

Interest receivable

10 000

20 000

Provision for long-service leave

48 000

62 000

Deferred tax asset

?

21 600

Deferred tax liability

?

60 000

(a) The company is entitled to claim a tax deduction of 125% on development costs when incurred.

(b) Interest revenue of $10 000 is included in the profit for the year to 30 June 2018.

(c) Expenses included in profit for the year to 30 June 2018 are as follows:

   parking and other fines $10 000

   depreciation expense for plant $70 000

   doubtful debts expense $25 000

   amortisation of development asset $50 000

   long-service leave expense $36 000.

(d) Accumulated depreciation on plant for tax purposes is $280 000 on 30 June 2018 and $180 000 on 30 June 2017. There have been no acquisitions or disposals of plant during the current year.

(e) The corporate tax rate is 30%.

Required

Complete the current tax and deferred tax worksheets of Mok Ltd and prepare the tax entries for 30 June 2018.

In: Accounting

Hi it's the java stack to convert from infix to postfix If I want to fix...

Hi it's the java stack to convert from infix to postfix

If I want to fix this code to calculate each numbers not just displaying the numbers what should I do?

Would you help me to fix the result?

import java.util.Stack;
import java.util.Scanner;
class Main
{
//Function to return precedence
static int Prec(char ch)
{
switch (ch)
{
case '+':
case '-':
return 1;

case '*':
case '/':
return 2;

case '^':
return 3;
}
return -1;
}
static String infixToPostfix(String exp)
{
// initializing empty String for result
String result = new String("");
Stack<Character> stack = new Stack<>();
int i=0;
int len=exp.length();
for ( i = 0; i<len; ++i)
{
char c = exp.charAt(i);
if (Character.isLetterOrDigit(c))
result =result+ c;
else if (c == '(')
stack.push(c);
else if (c == ')')
{
while (!stack.isEmpty() && stack.peek() != '(')
result =result+ stack.pop();
if (!stack.isEmpty() && stack.peek() != '(')
return "Invalid Expression";   
else
stack.pop();
}
else
{
//for operators
while (!stack.isEmpty() && Prec(c) <= Prec(stack.peek()))
result =result+ stack.pop();
stack.push(c);
}
}
while (!stack.isEmpty())
result =result+ stack.pop();

return result;
}
public static void main(String[] args)
{
String exp = "(5+8)*(7-3)";
String exp2="6+7*(3+9)/2";
System.out.println("Infix "+exp);
System.out.println("Postfix "+infixToPostfix(exp));
System.out.println("Infix "+exp2);
System.out.println("Postfix "+infixToPostfix(exp2));
}
}

In: Computer Science