Consider the following reaction:
CO(g)+H2O(g)⇌CO2(g)+H2(g)
Kp=0.0611 at 2000 K
A reaction mixture initially contains a CO partial pressure of 1390 torr and a H2O partial pressure of 1710 torr at 2000 K.
Calculate the equilibrium partial pressure of CO2.
In: Chemistry
PLEASE DONT COPY FROM INTERNET PLAGIRISM IS PROHIBITED
WRITE 2000 WORDS ON THE TOPIC.
TOPIC: INTERNATIONAL TRADE AND DYNAMIC OF UAE (REQUIRE 2000 WORDS)
1. Introduction of the topic
2. Review of literature
3. Data, methodology
4. Analysis & Findings of the study
5. Conclusion
6. Reference
In: Economics
Consider the following reaction: CO(g)+H2O(g)⇌CO2(g)+H2(g) Kp=0.0611 at 2000 K A reaction mixture initially contains a CO partial pressure of 1390 torr and a H2O partial pressure of 1770 torr at 2000 K.
A) Calculate the equilibrium partial pressure of CO2.
In: Chemistry
You just celebrated your 25th birthday today. You plan to invest $2000 annually, with the first $2000 invested on your 26th birthday and the last invested on your 60th birthday.
What is the value of this investment on your 61st birthday if all invested funds earn 6 percent annually?
In: Finance
Nomenclatures undergo periodic evaluation and update. Investigate how the Diagnostic and Statistical Manual of Mental Disorders, 5th Edition (DSM-5) impacted coding for hoarding in 2017. As part of your investigation, determine if the DSM-5 and the code set are fully aligned with this code and support your opinion.
In: Nursing
In December 2012, the FASB issued a proposed Accounting Standai·ds Update (i.e., an Exposure Draft), Financial Instruments-Credit Losses (Subtopic 825-15) and solicited constituent feedback. Locate this proposed standard.
1. Read the summary section of this proposed standard. What change in accounting does this exposure draft propose?
2. Look for comment letters related to this exposure draft. From fasb.org, navigate to Projects, then Comment Letters. Under "Accounting for Financial Instrnments," locate this topic, then click on the link to view comment letters. Next:
a. Locate a comment letter that looks interesting to you. What company or individual wrote the letter, and what is their perspective in writing this letter (i.e., are they writing from the perspective of a financial statement user, preparer, etc.)?
b. What aspects of the proposed standard does the commenter support?
c. What concerns does the commenter raise regai·ding the proposed standard?
. How would you expect a company (preparer) might react to this proposed standard compared to how a banker (investor) might react? Explain.
In: Accounting
Q2. Update the given code 2 to implement the following problem:
Code 2:
class triangle {
int base;
int height;
/* Write your code here
*/
};
int main(){
/*write your code here
}
In: Computer Science
A C PROGRAM
*Edit/Update I do not need the file loading script, but I am not against it being included in the answer*
I must read off of an excel file (comma separated) to input five different things for a book, all comma separated, there are 360 books in the file. The book title, author, ISBN number, number of pages, and finally the year it was published. Now some of the ISBN or Pg numbers may be missing and will be read as N/A in the file.
a structure named book is with the following inputs to be used
a. char title[255];
b. char author_name[50];
c. char ISBN[10];
d. int pages;
e. int year_published;
Create a function called print_book ( ) that takes a book as a parameter. The function should neatly print the contents of that book’s structure to the terminal window. Remember: some records might have null parameters, make sure to handle that in your output.
Finally
Create a function called search_title ( ) that takes a book array, the number of books in that book array, and a character string title as parameters. This search function should loop through all of the books in the array in search of a title that matches with the passed character string, printing to the terminal any books that fulfill this (there could be more than 1 match).
In: Computer Science
A company produces circuit boards used to update outdated computer equipment. The fixed cost is RM 39,000 per month, and variable cost is RM 55 per circuit board. The selling price per unit is p = RM160 – 0.03D. a) Determine the demand of circuit boards/month. b) Determine the profit or loss c) Find the volume at which breakeven occurs and the range (domain) of profitable demand. d) What the range (domain) of profitable demand if the fixed cost are reduced to 10%
In: Accounting
I need to update this java program to take input about each employee from a file and write their information and salary/pay information to a file. use input file
payroll.txt
Kevin
Yang
60
20
Trey
Adams
30
15
Rick
Johnson
45
10
Cynthia
Wheeler
55
11.50
Sarah
Davis
24
10
Muhammad
Rabish
66
12
Dale
Allen
11
18
Andrew
Jimenez
80
15
import java.util.Scanner;
public class SalaryCalcLoop
{
double Rpay = 0, Opay = 0;
void calPay(double hours, double rate) {
if (hours <= 40)
{
Rpay = hours * rate;
Opay = 0;
}
else
{
double Rhr, Ohr;
Rhr = 40;
Ohr = hours - Rhr;
Rpay = Rhr * rate;
Opay = Ohr * (1.5 * rate);
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String name;
int shift = 0;
Double rate, hours;
System.out.println("Pay Calculator");
String ch = "";
do
{
System.out.println("Enter Your Name");
name = sc.next();
System.out.println("Enter Your Shift, Enter 0 for Day, Enterv1 for
Night");
System.out.println("0=Day, 1= Night");
shift=sc.nextInt();
System.out.println("Enter Number of Hours Worked");
hours = sc.nextDouble();
System.out.println("Enter Hourly Pay");
rate = sc.nextDouble();
SalaryCalc c = new SalaryCalc();
c.calPay(hours, rate);
Double Tpay = c.Rpay + c.Opay;
System.out.println();
System.out.println("Calculate Pay");
System.out.println("Employee Name: " + name);
System.out.println("Employee Regular Pay: " + c.Rpay);
System.out.println("Employee Overtime Pay: " + c.Opay);
System.out.println("Employee Total Pay: " + Tpay);
if (shift == 0)
{
System.out.println("Employee PayPeriod is Friday");
}
else
{
System.out.println("Employee PayPeriod is Saturday");
}
System.out.println("Press Y to continue. Press any other key to
exit ");
ch=sc.next();
}
while(ch.equalsIgnoreCase("y"));
}
}
Saturday"); } System.out.println("Press Y to continue. Press any other key to exit "); ch=sc.next(); } while(ch.equalsIgnoreCase("y")); } }
In: Computer Science