Answer the following statements true (T) or false (F)
1. A test using the isupper function will return false if the argument is an uppercase character.
2. The isdigit function will return true if the argument is a digit between 0 and 9.
3. When using the strcat function you must be careful not to overwrite the bounds of an array.
4. The itoa function is similar to atoi but it works in reverse.
5. The C++ compiler performs strict array bounds checking when it encounters an array of characters.
1. F
2. T
3. T
4. T
5. F
You might also like to view...
What is the difference in the execution of the Do Until Loop (first example) and the Do Loop Until (second example)?
``` ' First Example sngPayAmount = 200 Do Until sngPayAmount > 150 sngPayAmount = sngPayAmount – 50 Loop 'Second Example sngPayAmount = 200 Do sngPayAmount = sngPayAmount – 50 Loop Until sngPayAmount > 150 ``` a. Both loops are executed in an identical manner. b. The first loop will never be executed while the second loop will execute once. c. The first loop will execute one more time than the second loop. d. The first loop will never be executed while the second is an infinite loop.
It is NOT possible to assign your own name to an item that you add to the Quick Part Gallery, since Word assigns its own, unique name
Indicate whether the statement is true or false
_________ is a technique that sweeps the current area for Wi-Fi access points and cross-references the information, including the strength of each signal, with a database of locations to determine the location of a computer in range of those access points
a. Wi-Fi Triangulation b. Wi-Fi c. Access Point Search d. None of the above
What query or queries would you use to find all repeat customers, change their shipping costs to zero, and then three months from now track their purchases to see if they purchased more over the last three months than the three months before the shipping costs were changed?
A. Update, then crosstab B. Update, then find duplicates, then crosstab C. Find duplicates, then crosstab D. Find duplicates, then update, then crosstab