3 Cu + 8HNO3 --> 3 Cu(NO3)2 + 2 NO + 4 H2O
In the above equation, how many moles of water can be made when 40 moles of HNO3 are consumed?
A pump has an overall efficiency of 88% and volumetric efficiency of 92% while consuming 8HP. Determine the mechanical efficiency and the horsepower loss due to friction.
S + 6 HNO3 --> H2SO4 + 6 NO2 + 2 H2O
In the above equation, how many moles of H2SO4 can be made when 89 moles of HNO3 are consumed?
Sodium chlorate decomposes into sodium chloride and oxygen gas as seen in the equation below.
2NaClO3 --> 2NaCl +3O2
How many moles of NaClO3 were needed to produce 4 moles of O2? Round your answer to the nearest whole number.
2 NH3 + 3 CuO g 3 Cu + N2 + 3 H2O
In the above equation, how many moles of water can be made when 32 moles of NH3 are consumed?
how to make plagiarism detection software in c++.(i want code)
3. A 150X 100 X 15 mm mild steel angle is to be welded to a mild steel plate by fillet
weld along the edge of 150mm leg. A tensile load of 200kN acts through the gravity
axis of the angle. Determine weld lengths if the centre of gravity is at distance of
50mm from end B as shown in the figure below. The allowable shear stress in weld
material is 73N/mm2�
b.
c. d.
1 2 3 4 5 6 7 8 9 10 11
Fill the array with random numbers between 10 and 90 Calculate and print out the sum of the elements in such manner:
- If the element is even divided by 2
- If the element is odd multiply it with 2
Display the array elements in reverse order 4 numbers on each line Create another array B of 12 integer numbers
Then copy the elements of A to B in such manner:
Write the odd numbers first then the even ones
A
13
25
75
35
79
50
60
90
80
40
10
90
An integer number is said to be a perfect number if its factors, including 1 (but not the number itself), sum to the number. For example, 6 is a perfect number, because 6 = 1 + 2 + 3. Write a method perfect that determines whether parameter number is a perfect number. Use this method in an application that determines and displays all the perfect numbers between 1 and 1000. Display the factors of each perfect number to confirm that the number is indeed perfect.
Write a method multiple() that determines, for a pair of integers, whether the second integer is a multiple of the first. The method should take two integer arguments and return true if the second is a multiple of the first and false otherwise. [Hint: Use the remainder operator “Modulo”.] Incorporate this method into an application main() that inputs a series of pairs of integers (one pair at a time) and determines whether the second value in each pair is a multiple of the first.