C Question 51 4 Points C Makes Copy Object Question 51 Options Makes General Copy Object M Q37139467

(C++) Question 51 (4 points)

when C++ makes a copy of an object, it

Question 51 options:

makes a general copy of all the object

makes a bit wise copy of the data

makes a bit wise copy of the data and member functions

makes a copy of the member functions and then a general copy ofthe private data items

Spring2016Part

Question 52 (3 points)

given a function named func01
has no parameters
returns nothing

what is the function header

Question 52 options:

int func01()

func01()

void func01()

void func01(int m)

Question 53 (3 points)

given a function named func01
has no parameters
returns nothing

what is the function prototype

Question 53 options:

void func01();

func01();

int func01(int v);

void func01(char c);

Question 54 (3 points)

given a function

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.