Question Set

1. A static fluid can not have





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 of transfer of heat from one point of a fluid to another part of a fluid by the movement of fluid itself is called?....
QA->‘I have been touring different parts of the world. During these travels, I have had the good fortune to come into contact with several saints and maharshis. But I have frankly to admit that I have never come across one who is spiritually greater than Swami Sree Narayana Guru of Kerala” Whose words are these?....
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->“During my travels throughout the world, I have had the good fortune to come in contact with several saints and maharishis... But I have frankly to admit that I have never come across one who is spiritually greater than Swami Narayana Guru or a person who is at par with him in spiritual attainment.” Who paid tribute in the above words after visiting Sree Narayana Guru?....
QA->The electric charge built upon a material as a static mode?....
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->Bernoulli's equation for fluid flow is derived following certain assumptions. Out of the assumptions listed below, which set of assumptions is used in derivation of Bernoulli's equation ? A. Fluid flow is frictionless & irrotational. B. Fluid flow is steady. C. Fluid flow is uniform & turbulent. D. Fluid is compressible. E. Fluid is incompressible.....
MCQ->What will be the output of the program ? #include<stdio.h> int check(static int, static int); int main() { int c; c = check(10, 20); printf("%d\n", c); return 0; } int check(static int i, static int j) { int p, q; p = &i; q = &j; if(i >= 45) return (p); else return (q); }....
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