1. Consider the following steps : 1. Driving sheet piles surrounding a vibration-receiving structure. 2. Digging a trench around a source of vibration. 3. Placing rubber mountings between a machine causing vibration and its base. Active isolation of vibration can be achieved by





Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->Which country removed India from its currency monitoring list of major trading partners after certain developments and steps were taken by India to avert concerns surrounding foreign exchange irregularities?....
QA->An uncontrolled method of placing messages in the media and has news value and the source does not pay the media for placement is....
QA->For good vibration isolation....
QA->A, B, C, D, E and F are sitting in six chairs regularly placed around a round table. It is observed that A is between D and F, C is opposite to D, D and E are not on neighboring chairs. Which one of the following must be true ?....
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....
MCQ->Consider the following steps : 1. Driving sheet piles surrounding a vibration-receiving structure. 2. Digging a trench around a source of vibration. 3. Placing rubber mountings between a machine causing vibration and its base. Active isolation of vibration can be achieved by....
MCQ->The following steps are involved in laying a sewer in a trench : 1. Transferring the center line of the sewer to the bottom trench. 2. Setting sight rails over the trench. 3. Driving pegs to the level of the invert line of the sewer. 4. Placing the sewer of these steps is The correct sequence of these steps is....
MCQ->What will be the output of the following program? #include<iostream.h> class Base { int x, y; public: Base() { x = y = 0; } Base(int xx) { x = xx; } Base(int p, int q = 10) { x = p + q; y = q; } void Display(void) { cout<< x << " " << y << endl; } }objDefault(1, 1); class Derived: public Base { Base obj; public: Derived(int xx, int yy): Base(xx, xx + 1) { } Derived(Base objB = objDefault) { } }; int main() { Derived objD(5, 3); Derived ptrD = new Derived(objD); ptrD->Display(); delete ptrD; return 0; }....
MCQ->Consider the following features of 'structures' in C? The values of a structure variable can be assigned to another structure variable of the same type using the assignment operator.One structure can be nested within another structure.A variable structure can also be passed to a function. Which of the above are correct?....
MCQ->What will be the output of the following program? #include<iostream.h> class Base { public: int S, A, M; Base(int x, int y) { S = y - y; A = x + x; M = x x; } Base(int, int y = 'A', int z = 'B') { S = y; A = y + 1 - 1; M = z - 1; } void Display(void) { cout<< S << " " << A << " " << M << endl; } }; class Derived : public Base { int x, y, z; public: Derived(int xx = 65, int yy = 66, int zz = 67): Base(x) { x = xx; y = yy; z = zz; } void Display(int n) { if(n) Base::Display(); else cout<< x << " " << y << " " << z << endl; } }; int main() { Derived objDev; objDev.Display(-1); return 0; }....
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