1. In cases of emergency, the gas actuator can be used to move a 75-kg block B by exploding a charge C near a pressurized cylinder of negligible mass. As a result of the explosion, the cylinder fractures and the released gas forces the front part ofthe cylinder, A, to move B and the floor is = 0.5, determine the impulse that the actuator must impart to B.





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->Five equal forces of 10 N each are applied at one point and all are lying in one plane. If angles between them are equal, the resultant of these forces wil be?....
QA->The ratio of bases of a cylinder and a cone are in the ratio 3: Volume of cylinder and cone are in the ratio 9: then their heights are in the ratio?....
QA->P can do a work in the same time in which Q and R together can do it. If P and Q work together, the work can be completed in 10 days. R alone needs 50 days to complete the same work. then Q alone can do it in....
QA->In an atomic explosion, enormous energy is released which is due to?....
QA->The ratio between the radius of the base and the height of a cylinder is 2 : If its volume is 1617 cm3, the total surface area of the cylinder is—....
MCQ->In cases of emergency, the gas actuator can be used to move a 75-kg block B by exploding a charge C near a pressurized cylinder of negligible mass. As a result of the explosion, the cylinder fractures and the released gas forces the front part ofthe cylinder, A, to move B and the floor is = 0.5, determine the impulse that the actuator must impart to B.....
MCQ->A five storey building (consisting of a ground floor and four floors on top of it such that the ground floor is numbered 1, the floor above it, numbered 2and so on till the topmost floor above it, numbered 2 and so on till the topmost floor is numbered 5) houses different people viz. H,I,J,K and L. Who lives on the lowermost floor (i.e. floor numbered 1) ? J lives on floor numbered 3. K lives immediately below L. K lives on an even numbered floor. Only two people live between L and H. L lives above H. J lives immediately before K. J lives on an odd numbered floor.....
MCQ->What will be the output of the program? public class WrapTest { public static void main(String [] args) { int result = 0; short s = 42; Long x = new Long("42"); Long y = new Long(42); Short z = new Short("42"); Short x2 = new Short(s); Integer y2 = new Integer("42"); Integer z2 = new Integer(42); if (x == y) / Line 13 / result = 1; if (x.equals(y) ) / Line 15 / result = result + 10; if (x.equals(z) ) / Line 17 / result = result + 100; if (x.equals(x2) ) / Line 19 / result = result + 1000; if (x.equals(z2) ) / Line 21 / result = result + 10000; System.out.println("result = " + result); } }....
MCQ->What will be the output of the program? public class BoolTest { public static void main(String [] args) { int result = 0; Boolean b1 = new Boolean("TRUE"); Boolean b2 = new Boolean("true"); Boolean b3 = new Boolean("tRuE"); Boolean b4 = new Boolean("false"); if (b1 == b2) / Line 10 / result = 1; if (b1.equals(b2) ) / Line 12 / result = result + 10; if (b2 == b4) / Line 14 / result = result + 100; if (b2.equals(b4) ) / Line 16 / result = result + 1000; if (b2.equals(b3) ) / Line 18 / result = result + 10000; System.out.println("result = " + result); } }....
MCQ->What will be the output of the program? public class ObjComp { public static void main(String [] args ) { int result = 0; ObjComp oc = new ObjComp(); Object o = oc; if (o == oc) result = 1; if (o != oc) result = result + 10; if (o.equals(oc) ) result = result + 100; if (oc.equals(o) ) result = result + 1000; System.out.println("result = " + result); } }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution