Cobol paragraphs contain sentences. A sentence must end in a period and can contain multiple statements.
True
False
Sentences and statements must start on a new line.
When defining a file layout it is placed in the file section of the data division. Each record begins with an "01", a space, and the record name. Fields within a record traditionally began with 05? If you see a level 10 after the 05 what would this mean?
This is an alternate name for the 05 name.
This is a breakdown of the 05 field.
This is another format for the field.
All of the above
Condition names are names associated with a field that take on a true/false status depending on whether their value is equal to the field value. They are indicated by a level number of what?
05
66
77
88
If a field is defined as Pic s9(6)v99 comp-3, it uses 5 bytes of storage.
The idea of hiding data that are not needed for presentation is
Encapuslation
Abstraction
Information Hiding
Polymorphism
During Compilation, The function call is replaced by function code for which function?
Virtual functions
Inline functions
Static functions
Friend functions
__________ pointer is a type of pointer of any data type and generally takes a value as zero
Vptr
Void
Null
Zero
Types of Storage Class Variables
Automatic
Global
Static
External
A __________function is used for accessing the non-public members of a class.
Virtual
Friend