C-style strings are terminated with a(n) ________.
newline character \n
nullptr
null character \0
a blank space
The function we can use to copy one C-style string to another is ________.?
strlen
strcpy
strcat
copy_string
In order to use C-style string functions we must #include ________.
"cstring"
<ctype>
<string>
<cstring>
To convert a char to its upper case equivalent we can use the ________ function.
uppercase
makeupper
toupper
isupper
The C-style string name[6] can ________.
contain the name “Curly”
contain the name “Buster”
be assigned with name = “Larry”;
grow in size as needed
In order to use a C++ string object, we must #include ________.
The + operator allows us to ________ two C++ strings.
add
capitalize
concatenate
superscipt
In order to find the index of a substring within a C++ string, we can use the ________ method.
locate
find
inspect
substring
We can compare two C++ strings using the ________.
strcmp function
is_equal_to function
test
== operator
Which of the following are true about C++ strings?
C++ strings are objects
C++ strings have a rich set of member methods
C++ strings are preferred over C-style strings
C++ strings can change in size dynamically
All of the above