Programming In C++ (3330702) MCQs

MCQs of Functions in C++ and Working with objects

Showing 41 to 40 out of 50 Questions
41.

Which operator can be used to free the memory allocated for an object in C++?

(C++ માં object માટે આપેલ મેમરીને free કરવા કયા operator નો ઉપયોગ કરી શકાય છે?)

(a)

Free()

(b)

delete

(c)

Unallocate

(d)

Collect

Answer:

Option (b)

42.

Can we allocate memory for the objects dynamically in CPP?

(શું આપણે CPP માં dynamically રીતે object માટે મેમરી allocate કરી શકીએ?)

(a)

Yes

(b)

No

Answer:

Option (a)

43.

In CPP, dynamic memory allocation is done using ______________ operator.

(CPP માં, dynamic memory allocation ______________ ઓપરેટરનો ઉપયોગ કરીને કરવામાં આવે છે.)

(a)

calloc()

(b)

malloc()

(c)

allocate

(d)

New

Answer:

Option (d)

44.

How many independent objects can be returned at same time from a function?

(ફંક્શનમાંથી એક જ સમયે કેટલા independent objects return આવી શકે છે?)

(a)

1

(b)

2

(c)

3

(d)

4

Answer:

Option (a)

45.

Which among the following is correct definition for static member functions?

(static member functions માટે નીચેનીમાંથી કઈ સાચી વ્યાખ્યા છે?)

(a)

Functions created to allocate constant values to each object

(દરેક object માટે constant values આપવા માટે બનાવેલ Functions )

(b)

Functions made to maintain single copy of member functions for all objects

(બધા objects માટે member functions ની એક single copy maintain કરવા માટે કરવામાં આવેલ Functions )

(c)

Functions created to define the static members

(static members ને define કરવા માટે બનાવેલ Functions)

(d)

Functions made to manipulate static programs

(static programs માં manipulate માટે કરવામાં આવેલ Functions )

Answer:

Option (b)

46.

The static member functions __________________

(Static member functions __________________ કરે છે)

(a)

Have access to all the members of a class

(class ના તમામ સભ્યોને એક્સેસ કરે છે)

(b)

Have access to only constant members of a class

(class ના constant members ને જ એક્સેસ કરે છે)

(c)

Have access to only the static members of a class

(class ના static members ને જ એક્સેસ કરે છે)

(d)

Have direct access to all other class members also

(અન્ય તમામ class ના members ની પણ direct access આપે છે)

Answer:

Option (c)

47.

The static member functions ____________________

(Static member functions __________________ કરે છે)

(a)

Can be called using class name

(class ના નામ નો ઉપયોગ કરી ને call થાય છે)

(b)

Can be called using program name

(program ના નામ નો ઉપયોગ કરી ને call થાય છે)

(c)

Can be called directly

(directly call થાય)

(d)

Can’t be called outside the function

(function ની બહાર call ના કરાવી શકો)

Answer:

Option (a)

48.

Which keyword should be used to declare the static member functions?

(static member functions ને declare કરવા માટે કયા કીવર્ડ નો ઉપયોગ કરવો જોઈએ?)

(a)

static

(b)

stat

(c)

const

(d)

common

Answer:

Option (a)

49.

We can use the static member functions and static data member __________________

(static member functions અને static data member નો ઉપયોગ __________________ એ કરી શકીએ છીએ )

(a)

Even if class object is not created

(class નો object બનાવવામાં ન આવે તો પણ)

(b)

Even if class is not defined

(class નો defined  કરવામાં ન આવે તો પણ)

(c)

Even if class doesn’t contain any static member

(class માં કોઈ static member આવેલા ના હોઈ તો પણ)

(d)

Even if class doesn’t have complete definition

(class માં કોઈ omplete definition આવેલા ના હોઈ તો પણ)

Answer:

Option (a)

50.

What is a friend function in C++?

(C++ માં  friend function શું છે?)

(a)

A function which can access all the private and public members of a class

(એક function જે class ના તમામ private અને public મેમ્બર ને access કરી શકે છે)

(b)

A function which is not allowed to access any member of any class

(એક function જે કોઈપણ class ના કોઈપણ મેમ્બર ને access કરવાની મંજૂરી નથી આપતું)

(c)

A function which is allowed to access public and protected members of a class

(એક function જે class ના public અને protected સભ્યોને access કરવાની મંજૂરી આપે છે)

(d)

A function which is allowed to access only public members of a class

(એક class જે ફક્ત class ના public members ને એક્સેસ કરવાની મંજૂરી છે)

Answer:

Option (a)

Showing 41 to 40 out of 50 Questions