Our website is made possible by displaying online advertisements to our visitors. Please consider supporting us by whitelisting our website.

Cpp Programming

Cpp Programming Quiz 181 – Which of the following statement is correct?

Question: Which of the following statement is correct?
[A]. The default value for an argument cannot be function call.
[B]. C++ allows the redefinition of a default parameter.[C]. Both A and B.
[D]. C++ does not allow the redefinition of a default parameter.

Answer: Option D

 

Cpp Programming Quiz 181 – Which of the following statement is correct? Read More »

Cpp Programming, Functions

Cpp Programming Quiz 182 – Which of the following function prototype is perfectly acceptable?

Question: Which of the following function prototype is perfectly acceptable?
[A]. int Function(int Tmp = Show());
[B]. float Function(int Tmp = Show(int, float));[C]. Both A and B.
[D]. float = Show(int, float) Function(Tmp);

Answer: Option A

 

Cpp Programming Quiz 182 – Which of the following function prototype is perfectly acceptable? Read More »

Cpp Programming, Functions

Cpp Programming Quiz 183 – Which of the following statement is incorrect?

Question: Which of the following statement is incorrect?
[A]. The default value for an argument can be a global constant.
[B]. The default arguments are given in the function prototype.[C]. Compiler uses the prototype information to build a call, not the function definition.
[D]. The default arguments are given in the function prototype and should be repeated in the function definition.

Answer: Option D

Cpp Programming Quiz 183 – Which of the following statement is incorrect? Read More »

Cpp Programming, Functions

Cpp Programming Quiz 185 – What will be the output of the following program?

Question: What will be the output of the following program?

#include
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; }

[A].65 65 65
[B].65 66 67
[C].A A A
[D].A B C

Answer: Option A

Cpp Programming Quiz 185 – What will be the output of the following program? Read More »

Cpp Programming, Functions

Cpp Programming Quiz 186 – Which of the following statement is correct about the program given below?

Question: Which of the following statement is correct about the program given below?

#include
void Tester(float xx, float yy = 5.0);
class IndiaBix
{
float x;
float y;
public:
void Tester(float xx, float yy = 5.0)
{
x = xx;
y = yy;
cout<< ++x % --y; } }; int main() { IndiaBix objBix; objBix.Tester(5.0, 5.0); return 0; }

[A].The program will print the output 0.
[B].The program will print the output 1.
[C].The program will print the output 2.
[D].The program will print the output garbage value. 

Answer: Option E

Cpp Programming Quiz 186 – Which of the following statement is correct about the program given below? Read More »

Cpp Programming, Functions

Cpp Programming Quiz 187 – What will be the output of the following program?

Question: What will be the output of the following program?

#include
class Bix
{
int x, y;
public:
void show(void);
void main(void);
};
void Bix::show(void)
{
Bix b;
b.x = 2;
b.y = 4;
cout<< x << " " << y; } void Bix::main(void) { Bix b; b.x = 6; b.y = 8; b.show(); } int main(int argc, char *argv[]) { Bix run; run.main(); return 0; }

[A].2 4
[B].6 8
[C].The program will report error on Compilation.
[D].The program will report error on Linking. 

Answer: Option B

Cpp Programming Quiz 187 – What will be the output of the following program? Read More »

Cpp Programming, Functions

Cpp Programming Quiz 188 – What will be the output of the following program?

Question: What will be the output of the following program?

#include
struct IndiaBix
{
int arr[5];
public:
void BixFunction(void);
void Display(void);
};
void IndiaBix::Display(void)
{
for(int i = 0; i < 5; i++) cout<< arr[i] << " " ; } void IndiaBix::BixFunction(void) { static int i = 0, j = 4; int tmp = arr[i]; arr[i] = arr[j]; arr[j] = tmp ; i++; j--; if(j != i) BixFunction(); } int main() { IndiaBix objBix = {{ 5, 6, 3, 9, 0 }}; objBix.BixFunction(); objBix.Display(); return 0; }

[A].0 9 3 6 5
[B].9 3 6 5 0
[C].5 6 3 9 0
[D].5 9 3 6 0 

Answer: Option A

Cpp Programming Quiz 188 – What will be the output of the following program? Read More »

Cpp Programming, Functions

Cpp Programming Quiz 189 – What will be the output of the following program?

Question: What will be the output of the following program?

#include
#include
class IndiaBix
{
char txtMsg[50];
public:
IndiaBix(char *str = NULL)
{
if(str != NULL)
strcpy(txtMsg, str);
}
int BixFunction(char ch);
};
int IndiaBix::BixFunction(char ch)
{
static int i = 0;
if(txtMsg[i++] == ch)
return strlen((txtMsg + i)) - i;
else
return BixFunction(ch);
}
int main()
{
IndiaBix objBix("Welcome to IndiaBix.com!");
cout<< objBix.BixFunction('t'); return 0; }

[A].6
[B].8
[C].9
[D].15 

Answer: Option A

Cpp Programming Quiz 189 – What will be the output of the following program? Read More »

Cpp Programming, Functions

Cpp Programming Quiz 190 – What will be the output of the following program?

Question: What will be the output of the following program?

#include
class IndiaBix
{
int Num;
public:
IndiaBix(int x)
{
Num = x;
}
int BixFunction(void);
};
int IndiaBix::BixFunction(void)
{
static int Sum = 0;
int Dec;
Dec = Num % 10;
Num = Num / 10;
if((Num / 100)) BixFunction();
Sum = Sum * 10 + Dec;
return Sum;
}
int main()
{
IndiaBix objBix(12345);
cout<< objBix.BixFunction(); return 0; }

[A].123
[B].321
[C].345
[D].12345 

Answer: Option C

Cpp Programming Quiz 190 – What will be the output of the following program? Read More »

Cpp Programming, Functions