Question Set

1. Modify operation is likely to be done after





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 operation was the continuation of operation Desert storm?....
QA->A man started to walk East. After moving a distance he turned to his right. After moving a distance he turned to his right again. After moving a little he turned in the end of his left. In which direction he going is now?....
QA->From which one among the following water sources; the water is likely to be contaminated with fluoride?....
QA->When is a volcanic eruption most likely to be violent?....
QA->Which nutrients are most likely to be affected by food processing and storage?....
MCQ->What will be the output of the following program? #include<iostream.h> class Number { int Num; public: Number(int x = 0) { Num = x; } void Display(void) { cout<< Num; } void Modify(); }; void Number::Modify() { int Dec; Dec = Num % 13; Num = Num / 13; if(Num > 0 ) Modify() ; if(Dec == 10) cout<< "A" ; else if(Dec == 11) cout<< "B" ; else if(Dec == 12) cout<< "C" ; else if(Dec == 13) cout<< "D" ; else cout<< Dec ; } int main() { Number objNum(130); objNum.Modify(); return 0; }....
MCQ->Point out the error in the program? #include<stdio.h> #include<string.h> void modify(struct emp); struct emp { char name[20]; int age; }; int main() { struct emp e = {"Sanjay", 35}; modify(&e); printf("%s %d", e.name, e.age); return 0; } void modify(struct emp p) { p ->age=p->age+2; }....
MCQ->The modify operation is likely to be done after....
MCQ->Modify operation is likely to be done after....
MCQ->Consider the following statements : 1. Pumps in series operation allow the head to increase. 2. Pumps in series operation increase the flow rate. 3. Pumps ill parallel operation increase the flow rate. 4. Pumps in parallel operation allow the head to increase. Which of these statements are correct ?....
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