An employee obtained a loan of P100,000 at the rate of 6% compounded in order to build a house. How much must he pay monthly to amortize the loan within a period of 10 years?
Acetone, C3H6, is the main ingredient of nail polish remover. A solution is made up
by adding 35.OmL of acetone (d=0.790g/mL) to 50.0mL of ethyl alcohol, C2H60
(d=0.789g/mL). Assuming volumes are additive, calculate (a) the mass percent of
acetone in the solution. (b) the volume percent of ethyl alcohol in the solution. (c) the
mole fraction of acetone in the solution.
Create a program that will calculate a student's total payment fee after a scholarship has been applied. Scholarship.java will contain two methods: setGrade() and getScholarship(). The setGrade() will process the scholarship application, and will set new amount to be paid, while getScholarship() will only return the new amount after being called.
GPAs ranging from 1.76 to 5.00 will not be eligible for a scholarship and must pay the full tuition. GPAs ranging from 1.46 to 1.75 will receive a partial scholarship. GPAs ranging from 1.00 to 1.45 will receive a full scholarship. Out-of-range GPAs are invalid.
In the main class (SurnameScholarship.java), the user will be asked to enter his/her GPA, tuition fee, and miscellaneous fee.
C. Find the probabilities on a standard normal curve.
1. P(-3.0 ˂ z < -1.68)
2. P(-2.76 < z < 2)
3. P(1.53 < z < 2)
A child is dragging a small crate across the horizontal floor as shown in the figure above. She is dragging the crate using a string such that the tension force in the string is 20 N.
If the crate has a mass of 9.2 kg and is accelerating at a rate of 0.55 m s−2 then what is the magnitude of the friction force on the crate from the floor? (to 2 s.f)
Create a java program which allows the user to enter two values (Using JOptionPane) to be divided. The program catches an exception if either of the entered values is not an integer.
Declare three integers—two to be input by the user and a third to hold the result after dividing the first two. The numerator and denominator variables must be assigned starting values because their values will be entered within a try block. Also declare an input String to hold the return value of the JOptionPane showInputDialog() method.int numerator = 0, denominator = 0, result; String display;
Add a try block that prompts the user for two values, converts each entered String to an integer, and divides the values, producing result(Cast the result to a double).
Add a catch block that catches an Arithmetic Exception object if division by 0 is attempted. If this block executes, display an error message, and force result to 0.
Radiation with a frequency of 7.52 × 1014 Hz illuminates a photoelectric surface in a photoelectric cell. If the work function of this surface is 2.20 eV, what is the maximum kinetic energy of the emitted electrons, and what stopping voltage would be required to reduce the current through this cell to zero?
CSS Border Properties
The goal of this coding exam is to quickly get you off the ground with the CSS Border Properties.
Use the below reference image.
y using if-else statement write a C++ program to input marks of five subjects
Physics, Chemistry, Biology, Mathematics, and Computer. Calculate the percentage
and grade according to the following rules:
Percentage >= 90%: Grade A
Percentage >= 80%: Grade B
Percentage >= 70%: Grade C
Percentage >= 60%: Grade D
Percentage >= 40%: Grade E
Percentage < 40%: Grade F
The program shall:
• generate a random number from 1 to 50 for a player to guess;
• display a message that indicates whether the player's guess is correct, too low, or too high; • prompt the user to keep on guessing until the correct value is entered
4. Create a try-catch structure that will handle two (2) exceptions. These are when the user inputs the following:
• a number that is out of range (1 - 50) a letter or any non-numeric character
5. Prompt the user so that he can guess again if an exception is thrown.
6. Display the number of total guesses.
Note: An invalid input (when an exception is thrown) is not considered a valid guess or attempt.