1. What will be the final values of x and y? void main ()int x = 1, y = 1; clrscrf); do while (x<=7){x++, y++;}while (y<=5);printff\n x=%dy = %d', x, y);





Write Comment

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

Comments

Show Similar Question And Answers
QA->Idiom of Null and void....
QA->A minor’s contract was held to be void in the case:....
QA->American writer and philosopher who was the author of the philosophical novels Zen and the Art of Motorcycle Maintenance: An Inquiry into Values (1974) and Lila: An Inquiry into Morals (1991), passed away on April 24, 2107?....
QA->A well known German philosopher who argued that God is dead and therefore people were free to create their own values is?....
QA->Who was named recipient of the 2014 Waislitz Global Citizen Award for his "exemplified values of a Global Citizen" through his work in founding Humanure Power (HP) in Bihar in 2011 that builds community sanitation facilities in rural India?....
MCQ->What will be the output of the program? #include<stdio.h> #include<stdarg.h> void fun1(char, int, int , float , char ); void fun2(char ch, ...); void (p1)(char, int, int , float , char ); void (p2)(char ch, ...); int main() { char ch='A'; int i=10; float f=3.14; char p="Hello"; p1=fun1; p2=fun2; (p1)(ch, i, &i, &f, p); (p2)(ch, i, &i, &f, p); return 0; } void fun1(char ch, int i, int pi, float pf, char p) { printf("%c %d %d %f %s \n", ch, i, pi, pf, p); } void fun2(char ch, ...) { int i, pi; float pf; char p; va_list list; printf("%c ", ch); va_start(list, ch); i = va_arg(list, int); printf("%d ", i); pi = va_arg(list, int); printf("%d ", pi); pf = va_arg(list, float); printf("%f ", pf); p = va_arg(list, char ); printf("%s", p); }....
MCQ->Which of the following statement is correct about the program given below? #include<iostream.h> static int Result; class India { public: void Change(int x = 10, int y = 20, int z = 30) { cout<< x + y + z; } void Display(int x = 40, float y = 50.00) { Result = x % x; cout<< Result; } }; class Bix { int x, y; public: void Change(int x, int y = 50) { cout<< x + y; } }; class IndiaBix: public India, public Bix { public: void Display(int x = 10, int xx = 100, int xxx = 1000) { Result = x + xx % x x; cout<< Result ; } }; int main() { IndiaBix objBix; objBix.India::Display(10, 20.00); return 0; }....
MCQ->What will be the final values of x and y? void main () { int x = 1, y = 1; clrscr(); do while (x<=7) { x++. y++; } while (y<=5); printf(’\n x = %d y = %d', x, y); } (A) x = 6 y = 6 (B)x=8y=6 (C ) x = 8y = 8 (D)none of the above 50. What will be the output of the following program? void main() { char x = ‘d’; clrscr( ); switch (x) { case 'b’ puts( “01001”); break; default: puts (“321'); break; case 'R’: puts ('l II II'); } What will be the final values of x and y? void main () { int x = 1, y = 1; clrscr(); do while (x<=7) { x++. y++; } while (y<=5); printf(’\n x = %d y = %d', x, y); } (A) x = 6 y = 6 (B)x=8y=6 (C ) x = 8y = 8 (D)none of the above 50. What will be the output of the following program? void main() { char x = ‘d’; clrscr( ); switch (x) { case 'b’ puts( “01001”); break; default: puts (“321'); break; case 'R’: puts ('l II II'); } }....
MCQ->What will be the output of the program? #include<stdio.h> int fun(int, int); typedef int (pf) (int, int); int proc(pf, int, int); int main() { printf("%d\n", proc(fun, 6, 6)); return 0; } int fun(int a, int b) { return (a==b); } int proc(pf p, int a, int b) { return ((p)(a, b)); }....
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
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions