|
The Jimenez Corporation's forecasted 2020 financial statements follow, along with some industry average ratios. Jimenez Corporation: Forecasted Balance Sheet as of December 31, 2020
Calculate Jimenez's 2020 forecasted ratios, compare them with the industry average data, and comment briefly on Jimenez's projected strengths and weaknesses. Assume that there are no changes from the prior period to any of the operating balance sheet accounts. Do not round intermediate calculation. Round your answers to two decimal places.
So, the firm appears to be -Select-badlywellItem 27 managed. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
In: Finance
Edgerron Company is able to produce two products, G and B, with
the same machine in its factory. The following information is
available.
| Product G | Product B | ||||||||||
| Selling price per unit | $ | 132 | $ | 160 | |||||||
| Variable costs per unit | 50 | 96 | |||||||||
| Contribution margin per unit | $ | 82 | $ | 64 | |||||||
| Machine hours to produce 1 unit | 0.4 | hours | 1.0 | hours | |||||||
| Maximum unit sales per month | 600 | units | 150 | units | |||||||
The company presently operates the machine for a single eight-hour
shift for 22 working days each month. Management is thinking about
operating the machine for two shifts, which will increase its
productivity by another eight hours per day for 22 days per month.
This change would require $8,000 additional fixed costs per month.
(Round hours per unit answers to 1 decimal place. Enter
operating losses, if any, as negative values.)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
In: Accounting
I am working on creating a Broadcast Receiver. I am extremely new to Android development and Java. I added my code at the bottom. Whenever I press the button the app crashes. I'm assuming something is wrong with connecting the broadcastIntent() function. I appreciate any help :)
Here are the directions from my professor:
public void broadcastIntent(View view){
Intent intent =
new Intent();
intent.setAction("my.CUSTOM_INTENT");
sendBroadcast(intent);
}
Toast.makeText(context, "Intent Detected.", Toast.LENGTH_LONG).show();
<intent-filter>
<action android:name="my.CUSTOM_INTENT"></action>
</intent-filter>
MY CODE:
<main activity>
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
private Button mybutton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button mybutton = (Button) findViewById(R.id.mybutton);
broadcastIntent( );
}
private void broadcastIntent() {
Intent intent = new Intent();
intent.setAction("my.CUSTOM_INTENT");
sendBroadcast(intent);
}
}
<activity xml>
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/mybutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="235dp"
android:layout_marginEnd="146dp"
android:layout_marginRight="146dp"
android:onClick="broadcastIntent"
android:text="Button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ica4_broadcast">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.ICA4Broadcast">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".MyReceiver" android:exported="true">
<intent-filter>
<action android:name="my.CUSTOM_INTENT"/>
</intent-filter>
</receiver>
</application>
</manifest>
<my receiver>
package com.example.ica4_broadcast;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "Intent Detected" + intent.getAction(), Toast.LENGTH_LONG).show();
}
}In: Computer Science
7.26 LAB: Nutritional information (classes/constructors)
Given main(), complete the FoodItem class (in files FoodItem.h and FoodItem.cpp) with constructors to initialize each food item. The default constructor should initialize the name to "None" and all other fields to 0.0. The second constructor should have four parameters (food name, grams of fat, grams of carbohydrates, and grams of protein) and should assign each private field with the appropriate parameter value.
Ex: If the input is:
M&M's 10.0 34.0 2.0 1.0
where M&M's is the food name, 10.0 is the grams of fat, 34.0 is the grams of carbohydrates, 2.0 is the grams of protein, and 1.0 is the number of servings, the output is:
Nutritional information per serving of None: Fat: 0.00 g Carbohydrates: 0.00 g Protein: 0.00 g Number of calories for 1.00 serving(s): 0.00 Nutritional information per serving of M&M's: Fat: 10.00 g Carbohydrates: 34.00 g Protein: 2.00 g Number of calories for 1.00 serving(s): 234.00
The first FoodItem above is initialized using the default constructor
__________________________________________________________
Given Code:
main.cpp
#include "FoodItem.h"
#include <stdio.h>
#include <iostream>
using namespace std;
int main(int argc, char* argv[]) {
FoodItem FoodItem1;
string itemName;
double amountFat, amountCarbs, amountProtein;
cin >> itemName;
cin >> amountFat;
cin >> amountCarbs;
cin >> amountProtein;
FoodItem FoodItem2 = FoodItem(itemName, amountFat, amountCarbs, amountProtein);
double numServings;
cin >> numServings;
FoodItem1.PrintInfo();
printf("Number of calories for %.2f serving(s): %.2f\n",
numServings,
FoodItem1.GetCalories(numServings));
cout << endl << endl;
FoodItem2.PrintInfo();
printf("Number of calories for %.2f serving(s): %.2f\n",
numServings,
FoodItem2.GetCalories(numServings));
return 0;
}
______________________________________________________________
FoodItem.h
#ifndef FOODITEMH
#define FOODITEMH
#include <string>
using namespace std;
class FoodItem {
public:
// TODO: Declare default constructor
// TODO: Declare second constructor with arguments
// to initialize private data members
string GetName();
double GetFat();
double GetCarbs();
double GetProtein();
double GetCalories(double numServings);
void PrintInfo();
private:
string name;
double fat;
double carbs;
double protein;
};
#endif
_____________________________________________________________
FoodItem.cpp
#include "FoodItem.h"
#include <stdio.h>
// Define default constructor
// Define second constructor with arguments
// to initialize private data members
string FoodItem::GetName() {
return name;
}
double FoodItem::GetFat() {
return fat;
}
double FoodItem::GetCarbs() {
return carbs;
}
double FoodItem::GetProtein() {
return protein;
}
double FoodItem::GetCalories(double numServings) {
// Calorie formula
double calories = ((fat * 9) + (carbs * 4) + (protein * 4)) *
numServings;
return calories;
}
void FoodItem::PrintInfo() {
printf("Nutritional information per serving of %s:\n",
name.c_str());
printf(" Fat: %.2f g\n", fat);
printf(" Carbohydrates: %.2f g\n", carbs);
printf(" Protein: %.2f g\n", protein);
}
In: Computer Science
|
Comprehensive Ratio Analysis The Jimenez Corporation's forecasted 2020 financial statements follow, along with some industry average ratios. Jimenez Corporation: Forecasted Balance Sheet as of December 31, 2020
Calculate Jimenez's 2020 forecasted ratios, compare them with the industry average data, and comment briefly on Jimenez's projected strengths and weaknesses. Assume that there are no changes from the prior period to any of the operating balance sheet accounts. Do not round intermediate calculation. Round your answers to two decimal places.
So, the firm appears to be -Select-badlywellItem 27 managed. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
In: Finance
In: Math
|
Comprehensive Ratio Analysis The Jimenez Corporation's forecasted 2020 financial statements follow, along with some industry average ratios. Jimenez Corporation: Forecasted Balance Sheet as of December 31, 2020
Calculate Jimenez's 2020 forecasted ratios, compare them with the industry average data, and comment briefly on Jimenez's projected strengths and weaknesses. Assume that there are no changes from the prior period to any of the operating balance sheet accounts. Do not round intermediate calculation. Round your answers to two decimal places.
So, the firm appears to be -Select-badlywellItem 27 managed. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Continue without saving |
In: Finance
The Jimenez Corporation's forecasted 2020 financial statements follow, along with some industry average ratios.
Jimenez Corporation: Forecasted Balance Sheet as of December 31, 2020
| Assets | |
| Cash | $ 73,000 |
| Accounts receivable | 439,000 |
| Inventories | 893,000 |
| Total current assets | $1,405,000 |
| Fixed assets | 431,000 |
| Total assets | $1,836,000 |
| Liabilities and Equity | |
| Accounts payable | $ 332,000 |
| Notes payable | 120,000 |
| Accruals | 150,000 |
| Total current liabilities | $ 602,000 |
| Long-term debt | 403,700 |
| Common stock | 575,590 |
| Retained earnings | 254,710 |
| Total liabilities and equity | $1,836,000 |
| Jimenez Corporation: Forecasted Income Statement for 2020 | ||
| Sales | $4,290,000 | |
| Cost of goods sold | 3,701,000 | |
| Selling, general, and administrative expenses | 397,456 | |
| Earnings before interest and taxes (EBIT) | $ 191,544 | |
| Interest expense | 50,000 | |
| Earnings before taxes (EBT) | $ 141,544 | |
| Taxes (25%) | 35,386 | |
| Net income | $ 106,158 | |
| Jimenez Corporation: Per Share Data for 2020 | ||
| EPS | $ 4.62 | |
| Cash dividends per share | $ 0.95 | |
| P/E ratio | 5.0 | |
| Market price (average) | $23.08 | |
| Number of shares outstanding | 23,000 | |
Industry Ratiosa |
||
| Quick ratio | 1.0 | |
| Current ratio | 2.7 | |
| Inventory turnoverb | 7.0 | |
| Days sales outstandingc | 32.0 | days |
| Fixed assets turnoverb | 13.0 | |
| Total assets turnoverb | 2.6 | |
| Return on assets | 9.1 | % |
| Return on equity | 18.2 | % |
| Profit margin on sales | 3.5 | % |
| Debt-to-assets ratio | 21.0 | % |
| Liabilities-to-assets ratio | 50.0 | % |
| P/E ratio | 6.0 | |
| Market/Book ratio | 3.5 | |
| Notes: | ||
| aIndustry average ratios have been stable for the past 4 years. | ||
| bBased on year-end balance sheet figures. | ||
| cCalculation is based on a 365-day year. | ||
Calculate Jimenez's 2020 forecasted ratios, compare them with the industry average data, and comment briefly on Jimenez's projected strengths and weaknesses. Assume that there are no changes from the prior period to any of the operating balance sheet accounts. Do not round intermediate calculation. Round your answers to two decimal places.
| Ratios | Firm | Industry | Comment |
| Quick ratio | 1.0 | -Select-StrongWeakItem 2 | |
| Current ratio | 2.7 | -Select-StrongWeakItem 4 | |
| Inventory turnover | 7.0 | -Select-PoorHighItem 6 | |
| Days sales outstanding | days | 32 days | -Select-PoorHighItem 8 |
| Fixed assets turnover | 13.0 | -Select-PoorHighItem 10 | |
| Total assets turnover | 2.6 | -Select-PoorHighItem 12 | |
| Return on assets | % | 9.1% | -Select-BadGoodItem 14 |
| Return on equity | % | 18.2% | -Select-BadGoodItem 16 |
| Profit margin on sales | % | 3.5% | -Select-BadGoodItem 18 |
| Debt-to-assets ratio | % | 21.0% | -Select-LowHighItem 20 |
| Liabilities-to-assets ratio | % | 50.0% | -Select-LowHighItem 22 |
| P/E ratio | 6.0 | -Select-PoorHighItem 24 | |
| Market/Book ratio | 3.5 | -Select-PoorHighItem 26 |
So, the firm appears to be -Select-badlywellItem 27 managed.
In: Finance
|
Comprehensive Ratio Analysis The Jimenez Corporation's forecasted 2020 financial statements follow, along with some industry average ratios. Jimenez Corporation: Forecasted Balance Sheet as of December 31, 2020
Calculate Jimenez's 2020 forecasted ratios, compare them with the industry average data, and comment briefly on Jimenez's projected strengths and weaknesses. Assume that there are no changes from the prior period to any of the operating balance sheet accounts. Do not round intermediate calculation. Round your answers to two decimal places.
So, the firm appears to be -Select-badlywellItem 27 managed. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Continue without saving |
In: Finance
What is the molar solubility of Fe(OH)3 in a solution
buffered at pH = 4.52? (See the appendix.)
M
What is the molar solubility at pH = 8.16?
M
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
In: Chemistry