Programming In C++ (3330702) MCQs

MCQs of Principles of Object Oriented Programming

Showing 31 to 30 out of 40 Questions
31.

Which of the following is not related to OOPS?

(નીચેનામાંથી કયા OOPS સાથે સંબંધિત નથી?)

(a)

Class and Object

(b)

Constructor and Destructor

(c)

Structure and Union

(d)

Inheritance and Polymorphism

Answer:

Option (c)

32.

What happens if the following program is executed in C and C++?

#include<stdio.h> 

int main() 
{ 
   foo();
}  

int foo() 
{ 
   printf("Hello"); 
   return 0;  
}

જો નીચેનો પ્રોગ્રામ C અને C ++ માં execute કરવામાં આવે તો શું થાય ?

#include<stdio.h> 

int main() 
{ 
   foo();
}  

int foo() 
{ 
   printf("Hello"); 
   return 0;  
}
(a)

Error in both C and C++

C અને C++ બંનેમાં Error 

(b)

Warning in both C and C++

C અને C++ બંનેમાં warning

(c)

Error in C++ but Warning in C

C++  માં Error પરંતુ C માં Warning

(d)

Error in C but Warning in C++

C  માં Error પરંતુ C++ માં Warning

Answer:

Option (c)

33.

Which of the following feature is not provided by C?

(નીચેનામાંથી કયુ feature C દ્વારા આપવામાં આવતું નથી?)

(a)

Pointers

(b)

Structures

(c)

References

(d)

Functions

Answer:

Option (c)

34.

Which of the following is C++ equivalent for scanf( )?

(નીચેનામાંથી કયુ c++ માં scanf( ) જેવું જ છે?)

(a)

cin

(b)

cout

(c)

print

(d)

input

Answer:

Option (a)

35.

Which of the following is the scope resolution operator?

(scope resolution operator નીચેનામાંથી કયુ છે?)

(a)

.

(b)

*

(c)

::

(d)

@

Answer:

Option (c)

36.

What will be the output of the following C++ code?

int x = 1;
int main()
{
    int x = 2;
    {
        int x = 3;
        cout << ::x << endl;
    }
    return 0;
}

નીચેના C++ કોડનું આઉટપુટ શું હશે?

int x = 1;
int main()
{
    int x = 2;
    {
        int x = 3;
        cout << ::x << endl;
    }
    return 0;
}
(a)

1

(b)

2

(c)

3

(d)

123

Answer:

Option (a)

37.

What is std in C++?

C++ માં std શું છે?

(a)

std is a standard class in C++ 

std એ C++ માં standard class છે

(b)

std is a standard namespace in C++

std એ C++ માં standard namespace છે

(c)

std is a standard header file in C++

std એ C++ માં standard header file છે

(d)

std is a standard file reading header in C++

std એ  C++ માં એક standard file રીડિંગ હેડર છે

Answer:

Option (b)

38.

Which of the following will not return a value?

(નીચેનામાંથી કયુ value return નહીં કરે?)

(a)

null

(b)

void

(c)

empty

(d)

free

Answer:

Option (b)

39.

In which direction does the assignment operation will take place?

(assignment operation કયા direction  માં work કરશે?)

(a)

left to right 

(b)

right to left

(c)

top to bottom

(d)

bottom to top

Answer:

Option (b)

40.

What is the name of | operator?

(આ | ઓપરેટર નું નામ શું છે?)

(a)

sizeof

(b)

or

(c)

and

(d)

modulus

Answer:

Option (b)

Showing 31 to 30 out of 40 Questions