41. |
Which operator can be used to free the memory allocated for an object in C++? (C++ માં object માટે આપેલ મેમરીને free કરવા કયા operator નો ઉપયોગ કરી શકાય છે?)
|
||||||||
Answer:
Option (b) |
42. |
Can we allocate memory for the objects dynamically in CPP? (શું આપણે CPP માં dynamically રીતે object માટે મેમરી allocate કરી શકીએ?)
|
||||
Answer:
Option (a) |
43. |
In CPP, dynamic memory allocation is done using ______________ operator. (CPP માં, dynamic memory allocation ______________ ઓપરેટરનો ઉપયોગ કરીને કરવામાં આવે છે.)
|
||||||||
Answer:
Option (d) |
44. |
How many independent objects can be returned at same time from a function? (ફંક્શનમાંથી એક જ સમયે કેટલા independent objects return આવી શકે છે?)
|
||||||||
Answer:
Option (a) |
45. |
Which among the following is correct definition for static member functions? (static member functions માટે નીચેનીમાંથી કઈ સાચી વ્યાખ્યા છે?)
|
||||||||
Answer:
Option (b) |
46. |
The static member functions __________________ (Static member functions __________________ કરે છે)
|
||||||||
Answer:
Option (c) |
47. |
The static member functions ____________________ (Static member functions __________________ કરે છે)
|
||||||||
Answer:
Option (a) |
48. |
Which keyword should be used to declare the static member functions? (static member functions ને declare કરવા માટે કયા કીવર્ડ નો ઉપયોગ કરવો જોઈએ?)
|
||||||||
Answer:
Option (a) |
49. |
We can use the static member functions and static data member __________________ (static member functions અને static data member નો ઉપયોગ __________________ એ કરી શકીએ છીએ )
|
||||||||
Answer:
Option (a) |
50. |
What is a friend function in C++? (C++ માં friend function શું છે?)
|
||||||||
Answer:
Option (a) |