Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

_________ Can be used as pointers. Punctuation marks Array names C++ string obje

ID: 3575111 • Letter: #

Question

_________ Can be used as pointers. Punctuation marks Array names C++ string objects Class objects C++ requires that a copy constructor's parameter be a(n) _. reference to an object pointer variable integer data type floating-point data type When you derive a class from an existing class, you _. can add new functions, but cannot add new data must add both new data and new functions can add new data, but cannot add new functions can add both new data and new functions to locate a value in an ordered array of 50 items, binary search must examine at most _ values. 6 10 25 50 When searching for a particular object in an array of objects, it is necessary to compare the _ to the value in each examined object's _. key field, public member data key field, search key search key, private member data search key, key field the _ also known as the address operator, returns the memory address of a variable. ampersand (&) percent sign (%) exclamation point (!) asterisk(*) _ allows us to create new classes based on existing classes. Polymorphism The copy constructor Function Overloading Inheritance We can estimate the _ of an algorithm by counting the number of steps it requires to solve a problem. efficiency result number of lines of code run time to dereference a structure pointer and simultaneously access a member of the structure, the appropriate operator to use is _. the dereference operator,

Explanation / Answer

32.b

ArrayNames are useful to covert into pointers.

33.A

it is useful to reference of object for multiple instances creation.

34.D

its is useful to import previous data and functions.

35.c

its exmaine the middle item.

36.D

must search id,name.

37.A

& returns memory Address of a variable.

a=10

&a=6065 etc.

38.D

Inhertance acquire the one class properties into another.

39.D

runtime depends on number lines of sonving problem

40.B

Struct student

{

int a;

char name;

};

struct student s;

s->a

41.c

Array initlization

42.A

access array elements based on name etc.