Which of the following is not normally a pseudocode statement?

a) assigning a value to a variable
b) declaring a variable
c) setting an object’s property
d) using control structures

b) declaring a variable

Computer Science & Information Technology

You might also like to view...

Which of the following provides advice about the implementation of sound controls and control objectives for InfoSec, and was created by ISACA and the IT Governance Institute?

A. COBIT B. COSO C. NIST D. ISO

Computer Science & Information Technology

Indicate the contents of these variables after each of the following input operations is performed. Assume the file accessed by indata consists of the data shown and that each lettered group of operations occurs at the beginning of a program before any other data have been taken from the file.

int	a;
double	b;
char	c;
string name;

55 45.36SmithJones.....

A.
indata >> a >> b >> name;
B.
indata >> b >> a >> name;
C.
indata >> a >> name >> c;
D.
indata >> a;
getline ( indata, name );

Computer Science & Information Technology