<<= Back Next =>>
You Are On Multi Choice Question Bank SET 1027

51351. You install Windows NT Server on a computer, making the computer a backup domain controller in an existing domain. After installation, you discover that you used the wrong domain name. What should you do?





51352. In your company, 2 Ethernet Networks are connected with a router. All network connections run TCP/IP. Your new client computer can access only the computers on your side of the router. All other computers are able to access one another. What is the most likely cause of the problem?






51353. Which of the following is a clayey soil that has never been subjected to an effective pressure greater than existing overburden pressure and which is also completely consolidated by the existing overburden pressure?





51354. By Which simple equation the hydrologic cycle may be expressed?





51355. Which among the following is a functional relation connecting the value of specific gravi voids ratio.water content and degree of saturation?





51356. What is an impermeable formation which contain water but are not capable of transmitting or supplying a sufficient quantity?





51357. Coefficient of permeability is inversely proportional to which of the following?





51358. Which constructor function is designed to copy objects of the same class type?





51359. If an auditorium has a total surface area of plaster,floor,curtains and seats equal to 16 and volume of Auditorium is 5000 m3,what is time of reverberation in seconds accordii Sabin’s equation?





51360. According to Indian Standards,specific gravity of soil is the ratio of unit weight of solids to that of water at a temperature of:





51361. When are the Global objects destroyed?





51362. Copy constructor must receive its arguments by __________ .





51363. A function with the same name as the class, but preceded with a tilde character (~) is called __________ of that class.





51364. A union that has no constructor can be initialized with another union of __________ type.





51365. Which of the following gets called when an object goes out of scope?





51366. What is the term used for the degree of disturbance of undisturbed clay sample due to remoulding expressed as ratio of unconfined compression strength in undisturbed state to that in remoulded state,without change in water content?





51367. __________ used to make a copy of one class object from another class object of the same class type.





51368. Constructors __________ to allow different approaches of object construction.





51369. Which among the following is also known as rolled steel joist?





51370. Which of the following cannot be declared as virtual?





51371. If the copy constructor receives its arguments by value, the copy constructor would





51372. Which of the following are NOT provided by the compiler by default?





51373. It is a __________ error to pass arguments to a destructor.





51374. If the programmer does not explicitly provide a destructor, then which of the following creates an empty destructor?





51375. A __________ is a constructor that either has no parameters, or if it has parameters, all the parameters have default values.





51376. How many default constructors per class are possible?





51377. Which of the following statement is correct about destructors?





51378. For shallow foundations if P is the load,y is the unit weight of soil and is the angle if repose,which of the following is equal to total depth of foundation according to Rankine’s formula?





51379. Which of the following implicitly creates a default constructor when the programmer does not explicitly define at least one constructor for a class?





51380. A destructor takes __________ arguments.





51381. Destructor calls are made in which order of the corresponding constructor calls?





51382. Which of the following never requires any arguments?





51383. A class's __________ is called when an object is destroyed.





51384. Destructors __________ for automatic objects if the program terminates with a call to function exit or function abort.





51385. Name the level surface to which the elevations are reffered:





51386. Which of the following statements are correct?





51387. How many times a constructor is called in the life-time of an object?





51388. Which of the following gets called when an object is being created?





51389. To ensure that every object in the array receives a destructor call, always delete memory allocated as an array with operator __________ .






51390. Which of the following statement is correct about constructors?





51391. Which of the following statement is correct whenever an object goes out of scope?





51392. What will be the output of the following program? #include<iostream.h> class IndiaBix { int x; public: IndiaBix(int xx, float yy) { cout<< char(yy); } }; int main() { IndiaBix p = new IndiaBix(35, 99.50f); return 0; }





51393. Which of the following statement is correct about the program given below? #include<iostream.h> class IndiaBix { public: IndiaBix() { cout<< "India"; } ~IndiaBix() { cout<< "Bix"; } }; int main() { IndiaBix objBix; return 0; }





51394. Which of the following statement is correct about the program given below? #include<iostream.h> class Bix { int x; public: Bix(); ~Bix(); void Show() const; }; Bix::Bix() { x = 25; } void Bix::Show() const { cout<< x; } int main() { Bix objB; objB.Show(); return 0; }





51395. Which of the following statement is correct about the program given below? #include<iostream.h> class Bix { int x; public: Bix(); void Show() const; ~Bix(){} }; Bix::Bix() { x = 5; } void Bix::Show() const { cout<< x; } int main() { Bix objB; objB.Show(); return 0; }





51396. What will be the output of the following program? #include<iostream.h> int val = 0; class IndiaBix { public: IndiaBix() { cout<< ++val; } ~IndiaBix() { cout<< val--; } }; int main() { IndiaBix objBix1, objBix2, objBix3; { IndiaBix objBix4; } return 0; }






51397. Which of the following statement is correct about the program given below? #include<iostream.h> class IndiaBix { int p; public: IndiaBix(int xx, char ch) { p = new int(); p = xx + int(ch); cout<< p; } ~IndiaBix() { delete p; } }; int main() { IndiaBix objBix(10, 'B'); return 0; }





51398. Which of the following constructor is used in the program given below? #include<iostream.h> class IndiaBix { int x, y; public: IndiaBix(int xx = 10, int yy = 20 ) { x = xx; y = yy; } void Display() { cout<< x << " " << y << endl; } ~IndiaBix() { } }; int main() { IndiaBix objBix; objBix.Display(); return 0; }





51399. What will be the output of the following program? #include<iostream.h> class BixBase { public: BixBase() { cout<< "Base OK. "; } }; class BixDerived: public BixBase { public: BixDerived() { cout<< "Derived OK. "; } ~BixDerived() { cout<< "Derived DEL. "; } }; int main() { BixBase objB; BixDerived objD; objD.~BixDerived(); return 0; }






51400. What will be the output of the following program? #include<iostream.h> class IndiaBix { int x, y; public: IndiaBix(int xx) { x = ++xx; } ~IndiaBix() { cout<< x - 1 << " "; } void Display() { cout<< --x + 1 << " "; } }; int main() { IndiaBix objBix(5); objBix.Display(); int p = (int) &objBix; p = 40; objBix.Display(); return 0; }






<<= Back Next =>>
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
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions