33.The not null constraint
can be defined in table level?
- true
- false
ans :B
34.which constraint will not allow null value?
- check
- unique
- primary
- not null
ans:C,D
35.which is not supported in select clause in a view definition?
- having
- cube
- group by
- order by
- none of the above
ans:E (for update not supported)
36.Rownum is not stored in the database
- true
- false
ans :A(it is assigned as each record is fetched)
37.what are the special chars allowed in table name?
- %
- #
- $
- @
- &
ans:B,C
38.A view can be create before the creation of its base table
- true
- false
ans:A (with force option in create view statement)
39.what is the default value for maxvalue in decreasing sequence?
- -1
- 0
- 1
- nomaxvalue
ans:A
40.Before referencing currval nextval should be referenced
- true
- false
ans:A