【OCP 071】最新OCP 12c题库考试原题(071-66题)
最新学讯:近期OCP认证正在报名中,因考试人员较多请尽快报名获取最近考试时间,报名费用请联系在线老师,甲骨文官方认证,报名从速!
我要咨询2018年OCP 11g考试原题解析已经讲解30多次课,500多道考试原题,最终达到98%以上的考题覆盖度及95%以上的考试通过率。
2019年OCP 11g将升级到12c,OCP 12c考试解析免费公开课也已经开始了,欢迎大家收看!
OCP解析公开课时间:【每周五晚8点】
OCP解析公开课地址:http://ke.qq.com/course/326223
OCP解析群资料分享:1015267481 验证:ocp
另外,除了OCP公开课,OCM题库直播也同步进行中,OCM最新题库大爆料-【每周四晚8点】,【微信群直播】,可以联系咨询老师进群参与
-------------------------------------------------------
66、(22-19)choose two
Examine the structure proposed for the TRANSACTIONS table:
Which two statements are true regarding the creation and storage of data in the above table structure?
A) The TRANS_DATE column would be able to store day, month, century, year, hour, minutes, seconds,
and fractions of seconds.
B) The CUST_STATUS column would store exactly one character.
C) The TRANS_VALIDITY column would have a maximum size of one character.
D) The TRANS_VALIDITY column would give an error.
E) The CUST_STATUS column would give an error.
F) The CUST_CREDIT LIMIT column would not be able to store decimal values.
Answer:BD
(解析:定义列的数据类型时,char 的可以省略位数,默认是 1,但是 varchar2 不能省略位数,否则报错。
注意 date 和 timestamp 的格式区别:
date 类型存储数据的格式为年月日时分秒,可以精确到秒
timestamp 类型存储数据的格式为年月日时分秒,可以精确到纳秒(9 位)
)