If 1 more of O2 react with 1 mole of N2 - how many moles of NO2 can be formed?
Write a program with three functions that calculates the final purchase price after various promotions and sales tax are applied. All functions will use Pass by Reference to manipulate the total purchase price. The functions are described below:
Function #1 = Take 20% off the price
Function #2 = Take an addition $10 off ONLY if the current total is at least $50 (after function #1)
Function #3 = Apply 7% sales tax to the total after function #2
Output:
Enter the total price of your purchases: [user types: 100]
The final price of your purchase including all promotions and tax is: $74.90
Write a program with three functions that all use the same global constant. The global constant is the name of a video game: "Fun With Math 2". Each of the functions should output a message that contains this global constant. There is one intro message, one game-exit message, and one game completion message.
Output:
Welcome to Fun With Math 2
This program aims to improve your math skills via interactive games.
Thank you for playing Fun With Math 2
Remember to practice daily!
You have successfully completed all of the activities in Fun With Math 2
Be sure to look out for the 3rd edition of this game (Coming in Summer 2049)!
A womans height is 5 feet, 8 inches, and her weight is 150 pounds. Express her height in inches and her weight in kilograms.
An owner of an auto repair shop wishes to organize his team of mechanics at the beginning of the day. To make the distribution of work equal, he organizes cars with an even amount of faults into bay 1 and cars with an odd amount of faults into bay 2. There are nine cars in total Write the pseudocode for the problem, then write a Java program to separate the even and odd number of car faults. Have all even numbers displayed first, then odd numbers at the end. The repairs required for each car are as follows. 18, 14, 12, 6, 4, 21, 19, 9, 3 Hint: WHILE LOOPS and IF.
Solve the differential equation (x +4) dy/dx = x(y-3), given that y=4 when x= -3.
Show whether the following equation are exact and hence solve the equation.
a) 2x(ye^x² -1)dx + e^x²dy= 0
b) ( 6x⁵y³ + 4x³y⁵) dx + (2x⁶y² - 5x⁴y⁴) dy =0
A, B & C form the vertices of a triangle.
∠
CAB = 90°, ∠
ABC = 36° and AC = 8.8.
Calculate the length of AB rounded to 3 SF.
A 300 uF capacitor separated by a distance of 4.0 mm was charged to a potential difference of 250 V. What is the energy density in its region in terms of Joules/m³?
Assign your name to the variable name.
Assign your age (real or fake) to the variable age.
Assign a boolean value to the variable has_android_phone.
Create a dictionary person with keys "Name", "Age", "HasAndroidPhone" and values using the variables defined above.
Use a for loop to display the type of each value stored against each key in person.