| t (s) |
[A] (M) |
ln[A] | 1/[A] |
| 0.00 | 0.500 | −0.693 | 2.00 |
| 20.0 | 0.389 | −0.944 | 2.57 |
| 40.0 | 0.303 | −1.19 | 3.30 |
| 60.0 | 0.236 | −1.44 | 4.24 |
| 80.0 | 0.184 | −1.69 | 5.43 |
Now that we know it os first order
What is the value of the rate constant for this reaction?
In: Chemistry
10)A famous example of illustrating the importance of
looking beyond the mean (or average) of a data set to understand
the data is ______ .
A) Exploratory data analysis
B) Anscombe's quartet
C) Infographics
D) Visualization of Napoleon's march on
Moscow
please provide the reason why you are choosing an option to be right. its for my understanding . and also why other options are not right
expecting an early response.will rate your answer.
thankyou
In: Computer Science
Car class Question
Design a class named car that has the following fields: YearModel: The yearModel field is an integer that holds the car's year model. Make: The make field references a string that holds the make of the car. Speed: The speed field is an integer that holds the car's current speed. In addition, the class should have the following constructor and other methods: Constructor: The constructor should accept the. car's year model and make as arguments. The values should be assigned to the object's yearModel and make fields. The constructor should also assign 0 to the speed field. Accessors: Design appropriate accessor methods to get the values stored in an object's yearModel, make, and speed fields. Accelerate: The accelerate method should add 5 to the speed field each time it is called. Brake: The brake method should subtract 5 from the speed field each time it is called. Next, design a program that creates a car object, and then cals the accelerate method fibe times. After each call to the accelerate method, get the current speed of the car and display it. Then call the brake method 5 times. After each call to the brake method, get the current speed of the car and display it..........
Thanks for the help guys pseudocode and flowchart please
In: Computer Science
c++
1. write a c++ function that received two doubles that represent the sides of a triangle and an integer that represents the number of triangles of that size. calculate the area of all these triangles. remember area of a triangle is ahalf base times width. and return this value as a double.
In: Computer Science
Write a Java program to convert octal (integer) numbers into their decimal number equivalents (exactly the opposite of what you have done in Assignment 4). Make sure that you create a new Project and Java class file for this assignment. Your file should be named “Main.java”. You can read about octal-to-decimal number conversions on wikepedia
Assignment 4 is at the bottom
Objective
Your program should prompt the user to enter a number of no greater than 8 digits. If the user enters a number greater than 8 digits or a value less than 0, it should re-prompt the user to enter a number again*. You do not need to check if the digits are valid octal numbers (0-7), as this is guaranteed.
Instructions
main(){
int oct = user input;
conversion(oct);
}
void conversion(int o){
// logic goes here.
print(decimal);
}
Goals
Sample Runs
Sample Program Run (user input is underlined)
Enter up to an 8-digit octal number and I will convert it for you: 77777777
16777215
Sample Program Run (user input is underlined)
Enter up to an 8-digit octal number and I will convert it for you: 775002
260610
Sample Program Run (user input is underlined)
Enter up to an 8-digit octal number and I will convert it for you: 0
0
Sample Program Run (user input is underlined)
Enter up to an 8-digit octal number and I will convert it for you: 55
45
Sample Program Run (user input is underlined)
Enter up to an 8-digit octal number and I will convert it for you: 777777777
Enter up to an 8-digit octal number and I will convert it for you: 777777777
Enter up to an 8-digit octal number and I will convert it for you: 700000000
Enter up to an 8-digit octal number and I will convert it for you: 77
63
Assignment 4:
// Main.java : Java program to convert decimal number to octal
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
int inputNum, convertedNum;
Scanner scan = new Scanner(System.in);
// Input of integer number in decimal
System.out.print("Please enter a number between 0 and 2097151 to convert: ");
inputNum = scan.nextInt();
// validate the number
if(inputNum < 0 || inputNum > 2097151)
System.out.println("UNABLE TO CONVERT");
else
{
int weight=0; // weight of the digit, used for converting to octal
convertedNum = 0; // variable to store the number in octal
int temp = inputNum;
int digit;
// loop that continues till we convert the entire number to octal
while(temp > 0)
{
digit = (temp%8); // get the remainder when the number is divided by 8
// multiply the digit with its weight and add it to convertedNum
convertedNum += digit*Math.pow(10, weight);
temp = temp/8; // remove the last digit from the number
weight++; // increment the weight
}
// display the integer in octal
System.out.printf("Your integer number " + inputNum + " is %07d in octal",convertedNum);
}
scan.close();
}
}
In: Computer Science
A barrel contains a 0.259m layer of oil of density 659kg/m3 floating on water that is 0.331m deep.
a) What is the gauge pressure at the oil-water interface?
b) What is the gauge pressure at the bottom of the barrel?
c) At what depth below the oil surface is the gauge pressure 2630.6738Pa ?
In: Physics
Q1, The total entropy change of a system and its surrounding is (a) in a(n) (b) process.
Q2, Standard enthalpy change (ΔH°) of a process involving gases is the enthalpy change of process at
Q3, The following values are noticed on the phase diagram of
CO2: at its triple point:
T3 =216.8 K and P3 =5.11 atm;
at its critical point: Tc =304.2 K and
Pc =72.9 atm.
Which of the statements below about CO2 is correct?
Q4, For a pure substance:
In: Chemistry
malware is often embedded in links or documents transmitted to intended victims and activated when links are followed or documents opened . what guidelines do you recommend following to prevent from being a victim of such an attack?
In: Computer Science
MgSO4•7H2O is an example of hydrate, a substance that has fixed mass percent of water in the compound. Calculate the mass percent (%) composition of water in MgSO4•7H2O. (show your work.)
In: Chemistry
Read the Haas and Whited (2017) review paper on limb regeneration and answer one of the three following questions. A good answer to this question might require you to look up papers cited in this review. You can search for articles on scholar.google.com, and a great number can be downloaded on campus. If you do use another paper, please provide a citation.
1. Describe what you feel is the critical step in
the morphological development of the regenerated limb. Why is it
the critical one?
2. Choose one of the genes mentioned and explain what
it does to aid in limb regeneration.
3. Choose one of the techniques used to determine
candidate genes and describe how it works and why it is useful.
Choices are RNASeq, Transcriptomics, Expressed Sequence
Tags/Microarray.
Answer each part in 3-5 sentences.
In: Anatomy and Physiology
How did the major commercial centers in the Afro-Eurasian world foster commercial exchange and establish a new commercial class?
In: Economics
You are a studen in Organic Chemsitry lab and you are tasked with the job to make 202 ppm solution of Rhodamine B (MM = 479.02 g/mol). How many moles of dye do you need to add to a 250 mL beaker of water to prepare this solution?
In: Chemistry
A proud deep-sea fisherman hangs a 61.0-kg fish from an ideal spring having negligible mass. The fish stretches the spring 0.130 m.
(a) Find the force constant of the spring.
N/m
The fish is now pulled down 4.90 cm and released.
(b) What is the period of oscillation of the fish?
s
(c) What is the maximum speed it will reach?
m/s
In: Physics
The automobile fuel called E85 consists of 85 % ethanol and 15 % gasoline. E85 can be used in so-called "flex-fuel" vehicles (FFVs), which can use gasoline, ethanol, or a mix as fuels. Assume that gasoline consists of a mixture of octanes (different isomers of C8H18), that the average heat of combustion of C8H18(l) is 5400 kJ/mol, and that gasoline has an average density of 0.70 g/mL. The density of ethanol is 0.79 g/mL.
For Part A, start with the given L of gasoline and use the density of the gasoline as well as the molar mass of C8H18 to determine the moles of gasoline. Once you have found the moles of gasoline you will use the provided heat of combustion to determine the energy produced. You do not need to use Appendix C because you are using the provided heat of combustion.
For Part B, do the same with the ethanol. You will use the heat of combustion for ethanol from the extra credit homework problem 5.79. If you did not do the that homework problem, you will need to write the balanced equation for the combustion of ethanol paying attention to the phases. Use the phase of gas for the water. Then calculate the heat of the combustion reaction from the heats of formation in Table C.
For Part C, you will need to use a weighted average. This is the same formula we used to determine the average atomic mass.
For Part D, you are starting with the given gallons of gasoline and will need to use the heat of combustion produced for the given liters of gasoline as a conversion factor to determine the energy produced from the given gallons. The heat of combustion produced from the liters of gasoline is from Part A. Now take the energy produced from the gallons of gas and use that as the given. Using the heat of combustion produced for the liters of E85 from Part C, determine the gallons of E85 necessary to produce that much energy.
For Part E, you will use the gallons of gasoline
A)By using the information given as well as data in Appendix C, calculate the energy produced by combustion of 2.0 L of gasoline
B)By using the information given as well as data in Appendix C, compare the energy produced by combustion of 2.0 L of ethanol. Consider that water is in the gaseous state.
c)Assume that the density and heat of combustion of E85 can be obtained by using 85 % of the values for ethanol and 15 % of the values for gasoline. How much energy could be released by the combustion of 2.0 L of E85?
E)If gasoline costs $ 3.10 per gallon in the United States, what is the break-even price per gallon of E85 if the same amount of energy is to be delivered?
In: Chemistry
Devon Bishop, age 45, is single. He lives at 1507 Rose Lane, Albuquerque, NM 87131. His Social Security number is 111-11-1112. Devon does not want $3 to go to the Presidential Election Campaign Fund.
Devon's wife, Ariane, passed away in 2014. Devon's son, Tom, who is age 18, resides with Devon. Tom's Social Security number is 123-45-6788.
Devon owns a sole proprietorship for which he uses the accrual method of accounting and maintains no inventory. His revenues and expenses for 2018 are as follows:
|
Sales revenue |
$740,000 |
|
Cost of goods sold (based on purchases for the year) |
405,000 |
|
Salary expense |
88,000 |
|
Rent expense |
30,000 |
|
Utilities |
8,000 |
|
Telephone |
6,500 |
|
Advertising |
4,000 |
|
Bad debts |
5,000 |
|
Depreciation* |
21,000 |
|
Health insurance** |
26,000 |
|
Accounting and legal fees |
7,000 |
|
Supplies |
1,000 |
*New office equipment ($21,000); Devon uses the immediate expense election.
** $18,000 for employees and $8,000 for Devon.
Other income received by Devon includes the following:
|
Dividend income (qualified dividends): |
|
|
Swan, Inc. |
$10,000 |
|
Wren, Inc. |
2,000 |
|
Interest income: |
|
|
First National Bank |
11,000 |
|
Second City Bank |
2,500 |
|
County of Santa Fe, NM bonds |
17,000 |
During the year, Devon and his sole proprietorship had the following property transactions:
Devon's potential itemized deductions, exclusive of the aforementioned information, are as follows:
|
Medical expenses (before the 7.5% floor) |
$9,500 |
|
Property taxes on residence |
5,800 |
|
State income taxes |
4,000 |
|
Charitable contributions |
10,000 |
|
Mortgage interest on residence (First National Bank) |
9,900 |
|
Sales taxes paid |
5,000 |
During the year, Devon makes estimated Federal income tax payments of $35,000.
Required:
Compute Devon's lowest net tax payable or refund due for 2018 by providing the information requested for Forms 1040, 4562, 8824, and 8949 as well as Schedules A, B, D, SE. Assume that he makes any available elections that will reduce the tax.
When computing the tax liability, do not round your immediate calculations. If required round your final answers to the nearest dollar.
In: Accounting