Answer the following statements true (T) or false (F)

1) A database table is an example of a PL/SQL composite data type.
2) A PL/SQL record can be set to a NULL value with an assignment, in which case all
its fields are set to NULL.
3) A record that contains another record as a field is called the enclosing record.
4) A PL/SQL table has a specified number of rows, which cannot be changed, at
declaration time.
5) A PL/SQL table has two columns, a primary key column and a data column.

1) F
2) T
3) T
4) F
5) T

Computer Science & Information Technology

You might also like to view...

If a blogger posts an entry about a current event, a ________ might post a comment with a claim of new information about that event by posting a link to a malicious website designed to take advantage of users who do not have updated security

A) scammer B) blog owner C) spammer D) spimmer

Computer Science & Information Technology

When you define a C++ class so that the result is an ADT, which of the following remarks about whether to make a member variable or function public or private are correct?

a) Make them all public. It simplifies life and makes things more efficient to be able access members anywhere. b) Don’t make member variables public. c) Make all member functions public. d) There are some member functions that shouldn’t be public, but most should be public.

Computer Science & Information Technology