Question Set

1. Right solid is a soild whose axis is ---------to its base





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 is the planet its length of its day and the tilt of its axis are almost identical to those of the earth?....
QA->What is a graph is plotted taking °C along the Y-axis and of K along the X-axis?....
QA->If a graph is plotted taking the temperature in Fahrenheit along the Y-axis and the corresponding temperature in Celsius along X- axis it will be the straight line?....
QA->If a rotating body spins on its axis, its motion is called?....
QA->John started from his home and walked 12 km.Then he took a right turn and walked 4 km.Then again,he took a right turn and walked 8 km and finally took another right turn and walked 1 km.How far is he from his home now?....
MCQ->Right solid is a soild whose axis is ---------to its base....
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->The centre of gravity of a right circular solid cone is at a distance of __________ from its base, measured along the vertical axis.(where h = Height of a right circular solid cone.)....
MCQ->According to parallel axis theorem, the moment of inertia of a section about an axis parallel to the axis through centre of gravity (i.e. IP) is given by(where, A = Area of the section, IG = Moment of inertia of the section about an axis passing through its C.G., and h = Distance between C.G. and the parallel axis.)....
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