Find the Potential Energy of a charge with 96 μC with a potential difference of 14 V
Two-point charges reacted with each other to produce 4.32 x 10⁻⁴ J. the magnitude of q is 30 nC with a distance from the point charge of 19 cm. Find the magnitude of the point charge
Find the electric flux through a cylinder with a distance of 22 cm and a height of 35 cm with a charge of 5.42 μC. ( use the general formula of flux and the area of cylinder is 2𝜋rh + 2𝜋r²)
Find the electric flux in a sphere of radius 0.48 cm from a charge of 60 nC
A manufacturer of light bulbs produces bulbs that last a mean of 950 hours with a standard deviation of 120
hours. What is the probability that the mean lifetime of a random sample of 10 of these bulbs is less than 900
hours?
What is the concentration of the original solution if 450 mL, a certain solution is diluted in 750 mL water to form 2.0 L of 1.50 M HCl?
Instruction:
Create a Java Program that will accept two values.
Determine if the two argument lists are identical or not.
Sample IO #1:
Sample Input:
Name1: Jose
Birthday: 1-1-2000
Name2: Jose
Birthday: 1-1-2000
Output:
IDENTICAL
Name: Jose
BirthDate: 1-1-2000
Name: Jose
BirthDate: 1-1-2000
Sample IO #2:
Sample Input:
Name1: Jose
Birthday: 1-1-2000
Name2: Jose
Birthday: 6-7-2012
Output:
NOT IDENTICAL
Name: Jose
BirthDate: 7-6-2000
Name: Jose
BirthDate: 6-7-2012
MyDate Class
Attribute/s: private int day, month, year;
Constructor/s:
public MyDate(int month, int day, int year)
Method/s:
Setters and getters, public boolean equals(Object o);
public int hashCode(); and
public String toString()
Person Class
Attribute/s: private String name; private MyDate dob;
Constructor/s:
public Person(String name, MyDate dob)
Method/s: Setters and getters,
public boolean equals(Object o);
public int hashCode(); and
public String toString()
Your Test class named TestPerson
Friend and Enemy
A group of F friends went to a haunted house.Each member was given a shirt with a number on it ranging from 1 to F. As they entered the haunted house, one of them was kidnapped and an enemy joined them.But unfortunately, the enemy didn't wear the shirt with the same number as the kidnapped one, instead wore the same as some other person.Find the numbers on the shirts of the enemy and the kidnapped person.
Input
The input is a single line containing space-separated positive integers from 1 to F.
Output
The output should be a single line containing the shirt numbers of the enemy and kidnapped person separated by a space.
Explanation
The given array is 3 1 5 2 1.
In the range from 1 to 5, the number 1 has occured twice and 4 is the missing number. So, 1 belongs to the enemy's shirt, and 4 belongs to kidnapped.Hence, the output should be 1 4.
Sample Input1
3 1 5 2 1
Sample Output1
1 4
Sample Input2
1 2 2 4
Sample Output2
2 3
Repeated Numbers
Eren wants to decode a number.After lots of trial and error, he finally figured out that the number is a count of repeated single-digit integers.
Write a program to help Eren print the decoded number given a string of integers N.
Input
The first line contains a string of integers N.
Output
The output contains a single integer representing count of repeated numbers in the input.
Explanation
For N = 212311 ,
1 and 2 are repeated.Therefore, the output is 2.
Sample Input1
212311
Sample Output1
2
Sample Input2
111
Sample Output2
1
One mole nitrogen oxide, NO reacts with oxygen gas to produce a brown gas,NO2.
a. Write the thermochemical equation.
b. Is the reaction exothermic or endothermic. Show your solution