Which of the following statements is true?
a. Ranges of characters can be represented by placing a ~ between two characters.
b. [^Z] is the same as [A~Y].
c. Both “A*” and “A+” will match “AAA”, but only “A*” will match an empty string.
d. All of above.
c. Both “A*” and “A+” will match “AAA”, but only “A*” will match an empty string.
You might also like to view...
The computer startup sequence is referred to as the start process.
Answer the following statement true (T) or false (F)
Share permissions are configured on a shared folder and apply to all files and subfolders of the shared folder.
Answer the following statement true (T) or false (F)
The ________ query is a good alternative to the Find and Replace tool.
Fill in the blank(s) with the appropriate word(s).
The expression std::multimap< int, double, std::less< int > >::value_type( 15, 2.7 ):
a. Creates an empty multimap object. b. Creates a multimap object containing one key/value pair. c. Returns the number of times the key/value pair ( 15, 2.7 ) appears in the multimap. d. Creates a pair object in which first is 15 (type int) and second is 2.7 (type double).