What will be in str1?

```
char str1[30] = “C++”;
char str2[30] = “is fun!”;
strcat(str1, str2);

```

A. C++ is fun!
B. C++is fun!
C. is fun!C++
D. fun! isC++


B. C++is fun!

Computer Science & Information Technology

You might also like to view...

I have an algorithm that runs in O(N 2 ), where n is the size of the problem. For N = 100, the time the algorithm runs is 1 minute. How long does the algorithm take for N=1000?

a) Same time b) 10 minutes c) 100 minutes d) 1000 minutes e) You haven’t given enough information. I can’t tell.

Computer Science & Information Technology

Each of these tools is bundled with the McAfee Internet Security software suite, EXCEPT ________

A) virus scan B) firewall C) parental control D) disk defragmenter

Computer Science & Information Technology

____________________ are limiting conditions you set in the query design grid.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Which operator do you use when either of the conditions you combine can be met in order for a row to be included in a result set?

a. OR b. AND c. NOT d. ANY e. ALL

Computer Science & Information Technology