Question Set

1. Among the following fibre, which is most troubled fibre by static changes during the process ?





Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->The process in which a liquid changes into its vapour from its surface at a temperature below its boiling point is called?....
QA->Which among the following is the most important characteristcis of Noble Metals?....
QA->During last five years, which of the following Institutions have extended the largest amount of fresh credit for agriculture in India among all the institutions given in the list ?....
QA->The electric charge built upon a material as a static mode?....
QA->What is the opposite of a static website?....
MCQ->Among the following fibre, which is most troubled fibre by static changes during the process ?....
MCQ->Which of the following statements are correct about static functions? Static functions can access only static data. Static functions cannot call instance functions. It is necessary to initialize static data. Instance functions can call static functions and access static data. this reference is passed to static functions.....
MCQ->A man had two blacksmiths for his neighbours.Their names were Pengu and Shengu.The man was greatly troubled by the noise of their hammers.He decided to talk to them.The next day he called both of them and offered Rs100 each,if they found new huts for themselves.They took the money and agreed to find new huts for themselves.The next morning,he got up again to the sound of their hammers.He went out to see why the blacksmiths hadn't found new huts and he discovered that Pengu and Shengu had kept their promise.They had exchanged their huts. The man was troubled because....
MCQ->Which of the following statement is correct about the program given below? #include<iostream.h> static double gDouble; static float gFloat; static double gChar; static double gSum = 0; class BaseOne { public: void Display(double x = 0.0, float y = 0.0, char z = 'A') { gDouble = x; gFloat = y; gChar = int(z); gSum = gDouble + gFloat + gChar; cout << gSum; } }; class BaseTwo { public: void Display(int x = 1, float y = 0.0, char z = 'A') { gDouble = x; gFloat = y; gChar = int(z); gSum = gDouble + gFloat + gChar; cout << gSum; } }; class Derived : public BaseOne, BaseTwo { void Show() { cout << gSum; } }; int main() { Derived objDev; objDev.BaseTwo::Display(10, 20, 'Z'); return 0; }....
MCQ->What will be the output of the following program? #include<iostream.h> class IndiaBix { static int count; public: static void First(void) { count = 10; } static void Second(int x) { count = count + x; } static void Display(void) { cout<< count << endl; } }; int IndiaBix::count = 0; int main() { IndiaBix :: First(); IndiaBix :: Second(5); IndiaBix :: Display(); 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