What training should programmers who do custom programming have?

A. Programmers need to be trained in secure programming both in general and for their particular language and application.
B. Programmers don't need any security training.
C. Programmers need to be trained in general networking security .
D. Programmers need to be trained in secure programming for their particular language and application only.

A. Programmers need to be trained in secure programming both in general and for their particular language and application.

Computer Science & Information Technology

You might also like to view...

The requirement that when one process is in a critical section that accesses shared resources, no other process may be in a critical section that accesses any of those shared resources is ________

A) critical section B) livelock C) mutual exclusion D) atomic operation

Computer Science & Information Technology

What is the output of the following code?

``` string s("abcdefg"); s.insert(1, 3, 'w'); cout << s << endl; ``` A. awwwbcdefg B. abcdefg C. aweldefg D. awelbcdefg

Computer Science & Information Technology