Questions
Is there any benchmark for surveying the performance of security architecture? Test or evaluate the performance.

Is there any benchmark for surveying the performance of security architecture?

Test or evaluate the performance.

In: Computer Science

A simple steam power cycle contains a turbine, condenser, pump and a boiler. If the turbine...

A simple steam power cycle contains a turbine, condenser, pump and a boiler. If the turbine inlet pressure is 14.5 MPa and 550 °C, and the Condenser Inlet Pressure is 19 kPa, calculate the following:

  1. Turbine Inlet Enthalpy (kJ/kg)
  2. Condenser Inlet Enthalpy (kJ/kg)
  3. Condenser Inlet Temperature (°C)
  4. Pump Inlet Enthalpy (kJ/kg)
  5. Boiler Inlet Enthalpy (kJ/kg)
  6. Boiler Inlet Temperature (°C)
  7. Turbine Work Output (kJ/kg)
  8. Boiler Heat Addition (kJ/kg)
  9. Net Work Output (kJ/kg)
  10. Efficiency of the Cycle (%)

Work as accurate as possible. For each correct answer you receive 1 Mark, thus 10 Maximum. Choose the most appropriate answer from the lists, and then continue with the chosen answer in order to have your calculations as accurate as possible.

In: Mechanical Engineering

Managing a business is stressful for both the leader and the employees. What time and stress...

Managing a business is stressful for both the leader and the employees. What time and stress management tactics would you implement?

In: Operations Management

PA4-2 Assigning Costs Using Traditional System, Assigning Costs Using Activity Proportions [LO 4-1, 4-3, 4-5, 4-6]...

PA4-2 Assigning Costs Using Traditional System, Assigning Costs Using Activity Proportions [LO 4-1, 4-3, 4-5, 4-6]

Carlise Corp., which manufactures ceiling fans, currently has two product lines, the Indoor and the Outdoor. Carlise has total overhead of $133,810.

Carlise has identified the following information about its overhead activity cost pools and the two product lines:

Activity Cost Pools Cost Driver Cost Assigned
to Pool
Quantity/Amount Consumed by Indoor Line Quantity/Amount Consumed by Outdoor Line
Materials handling Number of moves $ 17,010 630 moves 270 moves
Quality control Number of inspections $ 85,120 5,600 inspections 5,600 inspections
Machine maintenance Number of machine hours $ 31,680 20,000 machine hours 24,000 machine hours

Required:
1.
Suppose Carlise used a traditional costing system with machine hours as the cost driver. Determine the amount of overhead assigned to each product line. (Do not round intermediate calculations and round your final answers to the nearest whole dollar amount.)



2. Calculate the activity proportions for each cost pool in Carlise's ABC system. (Round your answers to 2 decimal places.)

  

3. Calculate the amount of overhead that Carlise will assign to the Indoor line if it uses an ABC system. (Round your intermediate calculations to 2 decimal places and round your final answers to the nearest whole dollar amount.)



4. Determine the amount of overhead Carlise will assign to the Outdoor line if it uses an ABC system. (Round your intermediate calculations to 2 decimal places and round your final answers to the nearest whole dollar amount.)

  

5. Compare the results for a traditional system with an ABC system. Which do you think is more accurate?

Traditional System
ABC System

In: Accounting

In the context of the “international debt crisis”, why were MNCs, international banks and national governments...

  1. In the context of the “international debt crisis”, why were MNCs, international banks and national governments of less developed countries eager to utilize debt-for-equity swaps?

In: Finance

Explain what a biased sample is and how random sampling reduces the potential of obtaining a...

Explain what a biased sample is and how random sampling reduces the potential of obtaining a sample that is biased. In inferential statistics, why is a biased sample a bad thing?

In: Math

Describe the difference between name equivalence and structure equivalence and describe the difference between their use...

Describe the difference between name equivalence and structure equivalence and describe the difference between their use in modern programming languages. In your answer, clearly define both types of equivalence and show an example in a programming language for each type of equivalence.

In: Computer Science

GM, Ford, and Tesla are automobile companies. Or are they? Explain how valuing Tesla and Ford...

GM, Ford, and Tesla are automobile companies. Or are they? Explain how valuing Tesla and Ford may differ from valuing GM? Which stock is the most expensive? How did you determine which company was the most expensive? Do you think intangible assets are a larger share of total company assets today than 3-4 decades ago? How has this change made the valuation of business more difficult or easier? How could or would you measure intangible assets of a publicly listed firm? What type of companies have a large share of their assets tied up in intangibles (e.g. manufacturing, retailers, etc.). Explain why this is likely the case.

In: Finance

Complete the following program. This program should do the following: 1. Creates a random integer in...

Complete the following program. This program should do the following:

1. Creates a random integer in the range 10 to 15 for variable: allThreads, to create a number of threads.

2. Creates a random integer for the size of an ArrayList: size.

3. Each thread obtains a smallest number of a segment of the array. To give qual sized segment to each thread we make the size of the array divisible by the number of threads: while(size%allThreads != 0)size++

4. The program gives random integers to the ArrayList: a.

5. To make sure the smallest number of the entire array is the same of your output, I made a method named: sequentialSmallest(a)

6. The program creates a number of threads. Each thread obtains the smallest number of a segment.

7. You need to complete the method: run() below.

Note: If your answer depends to a variable location that two or more threads are writing to it (changing its value), you must synchronize the variable.

import java.util.*;

public class Main {

public static void main(String[] args) {

  // This method is complete. Do not change it.

  new Main();

  }

  public Main() {

      Q1Threads();

}

private void Q1Threads(){

  // This method is complete. Do not change it.

    Random rand = new Random();

    int allThreads = rand.nextInt(5) + 10;

    int size = rand.nextInt(50) + 1;

    while(size%allThreads != 0)size++;

    ArrayList<Integer> a = new ArrayList<Integer>(size);

    for(int i = 0; i < size; i++)

      a.add(rand.nextInt(100) + 10);

    sequentialSmallest(a);

    MyThread[] thrds = new MyThread[allThreads];

    int segment = size/allThreads;

    for(int i = 0; i <allThreads ; i++) {

      int firstIndex = i * segment;

      int lastIndex = i * segment + segment -1;

      thrds[i] = new MyThread(a, firstIndex, lastIndex);

    }

   

    for(int i = 0; i < allThreads; i++)

      thrds[i].start();

   

    try{

      for(int i = 0; i < allThreads; i++)

        thrds[i].join();

    }catch(Exception e){

      System.out.println("Error: " + e);

      System.exit(0);

    }

    System.out.println("The smallest number is: " + Shared.result);

}

private static void sequentialSmallest(ArrayList<Integer> a) {

    // This method is complete. Do not change it.

    int smallest = a.get(0);

    for(int i = 0; i < a.size(); i++)

      if(a.get(i) < smallest)

        smallest = a.get(i);

   System.out.println("The list of random numbers is:");

    for(int i = 0; i < a.size(); i++)

      System.out.print(a.get(i) + ", ");

    System.out.println("\nThe smallest number from the sequential list is: " + smallest);

}

}

class MyThread extends Thread{

private ArrayList<Integer> a;

private int from, too;

public MyThread(ArrayList<Integer> a, int from, int too) {

    this.a = a;

    this.from = from;

    this.too = too;

}

public void run(){

    // Complete this method

}

}

Answer:

In: Computer Science

Cavo Corporation expects an EBIT of $27,000 every year forever. The company currently has no debt,...

Cavo Corporation expects an EBIT of $27,000 every year forever. The company currently has no debt, and its cost of equity is 14 percent. The corporate tax rate is 35 percent.

  

a.

What is the current value of the company? (Round your answer to 2 decimal places. (e.g., 32.16))

  

  Current value

$   

  

b-1

Suppose the company can borrow at 9 percent. What will the value of the firm be if the company takes on debt equal to 40 percent of its unlevered value? (Do not round intermediate calculations and round your final answer to 2 decimal places. (e.g., 32.16))

  

  Value of the firm

$   

  

b-2

Suppose the company can borrow at 9 percent. What will the value of the firm be if the company takes on debt equal to 100 percent of its unlevered value? (Do not round intermediate calculations and round your final answer to 2 decimal places. (e.g., 32.16))

  

  Levered value

$   

  

c-1

What will the value of the firm be if the company takes on debt equal to 40 percent of its levered value? (Do not round intermediate calculations and round your final answer to 2 decimal places. (e.g., 32.16))

  

  Value of the firm

$   

  

c-2

What will the value of the firm be if the company takes on debt equal to 100 percent of its levered value? (Do not round intermediate calculations and round your final answer to 2 decimal places. (e.g., 32.16))

  

  Levered value

$   

In: Finance

I'm having trouble with this program here's the problem: A milk carton can hold 3.78 liters...

I'm having trouble with this program

here's the problem:

A milk carton can hold 3.78 liters of milk.


Each morning, a dairy farm ships cartons of milk to a local grocery store.

The cost of producing one liter of milk is $0.38, and the profit of each carton of milk is $0.27.

Write a program that does the following:

  1. Prompts the user to enter the total amount of milk produced in liters.
  2. Outputs the number of milk cartons needed to hold milk. (Round your answer to the nearest integer.)
  3. Outputs the cost of producing the milk.
  4. Outputs the profit from producing the milk.

Here's the program:

#include <stdio.h>

int main(void){

const float cartoncapacity=3.78;

const float costperliter=0.38;

float profitpercarton=0.27;

float milkproduced, milkcost;

int cartonsneeded;

double profit;

printf("Enter, liters, the total quantity of milk produced:\n");

scanf("%f", &milkproduced);

cartonsneeded=((milkproduced+3.78)/cartoncapacity);

printf("Total number of cartons needed to hold:\n");

scanf("%d",&cartonsneeded);

milkcost=costperliter*milkproduced;

profit=profitpercarton*cartonsneeded;

  

printf("The cost of producing milk $ %f", &milkcost);

  

  

printf("Profit: $ %lf",&profit);

  

  

  

  

return (0);

}

In: Computer Science

Why is it important to be good manager of your time? How would this affect your...

Why is it important to be good manager of your time? How would this affect your ability to manage your time as a business owner?

In: Operations Management

Rounding in the calculation of monthly interest rates is discouraged. Such rounding can lead to answers...

Rounding in the calculation of monthly interest rates is discouraged. Such rounding can lead to answers different from those presented here. For long-term loans, the differences may be pronounced. Assume that you take out a $2000 loan for 30 months at 9.5% APR. What is the monthly payment? What is the first month interest?

In: Finance

The catering manager of LaVista​ Hotel, Lisa​ Ferguson, is disturbed by the amount of silverware she...

The catering manager of LaVista​ Hotel, Lisa​ Ferguson, is disturbed by the amount of silverware she is losing every week. Last Friday​ night, when her crew tried to set up for a banquet for 500​ people, they did not have enough knives. She decides she needs to order some more​ silverware, but wants to take advantage of any quantity discounts her vendor will offer.

follows≻For

a small order

​(2,000

pieces or​ less) her vendor quotes a price of

​$1.80/piece.

follows≻If

she orders

2,001

to

5,000

​pieces, the price drops to

​$1.60/piece.

follows > 5,001

to

10,000

pieces brings the price to

​$1.40/piece,

and

follows≻ 10,001

and above reduces the price to

​$1.25/piece.

​Lisa's order costs are

​$200

per​ order, her annual holding costs are

5%,

and the annual demand is

45,700

pieces. For the best option​ (the best option is the price level that results in an EOQ within the acceptable​ range):

​a) What is the optimum ordering​ quantity?

nothing

units ​(round your response to the nearest whole​ number).

B) What is the annual holding cost? ​(round your response to two decimal​ places).

C) What is the annual ordering cost? (round your response to two decimal​ places).

D) What are the annual cost of the silverware with an optimal order quantity? (round your response to two decimal​ places).

E) What is the total annual cost, including ordering, holding, and purchasing the silverware? ​(round your response to two decimal​ places).

In: Operations Management

When we think about the accessing insurance coverage for mental health and substance abuse issues, what...

When we think about the accessing insurance coverage for mental health and substance abuse issues, what are the implications of this process might have for a potential service provider, for clients, and for counselors?

In: Psychology