Which of the following is not a primitive data type?

a. short
b. long
c. float
d. string

d. string

Computer Science & Information Technology

You might also like to view...

5. What is displayed by the following program after the call to execl?

#include #include int main() { if (fork() == 0) execl("prog.exe", "prog.exe", NULL); cout << "After execl" << endl; return 0; } a. The parent process will display "After execl" b. The child process will display "After execl" c. Neither the parent process nor the child process will display "After execl" d. The program does not create a child process e. Both the parent process and child process will display "After execl"

Computer Science & Information Technology

The application in the accompanying figure is a(n) ____.

A. Usenet feed reader B. client feed reader C. IRC feed reader D. Web-based feed reader

Computer Science & Information Technology