网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
Which datatype is returned by the FIND_MENU_ITEM built-in function?()
A

number 

B

Boolean 

C

menuitem 

D

VARCHAR2 


参考答案

参考解析
解析: 暂无解析
更多 “单选题Which datatype is returned by the FIND_MENU_ITEM built-in function?()A number B Boolean C menuitem D VARCHAR2 ” 相关考题
考题 YoucreateaWebpagethatcontainsthespanshowninthefollowinglineofcode.TextYouneedreplacethecontentsofthespanwithHTMLthatyoudownloadfromaURLspecifiedbyaglobalvariablenamedlocalURL.Whichcodesegmentshouldyouuse?()A.$.ajax({type:GET,url:localURL, dataType:jsonp,success:function(htmlText {$(#span1).text(htmlText);}});B.$.ajax( localURL,{}, function(htmlText){$(#span1).html(htmlText);},html);C.$.ajax({ type:GET,url:localURL,dataType:html,success:function(htmlText){$(#span1).innerHTML=htmlText;}});D.$.ajax({ type:GET,url:localURL, success:function(htmlText){$(#span1).html(htmlText);}});

考题 When setting arguments for a job, which procedure do you use for types that cannot be implicitly converted to and from a VARCHAR2 datatype?() A. SET_JOB_ARGUMENT_VALUEB. SET_JOB_VALUE_ANYDATAC. SET_JOB_ANYDATA_VALUED. SET_SPECIAL_JOB_VALUEE. SET_JOB_ANYTYPE_VALUE

考题 lisa is writing a formula to determine the number of elements in a list. she wants to ensure that a value is returned, even if the value her function is evaluating turns out to be a null string . which one of the following can she so to accomplish this ?()A、use a defaule formula of 1 B、use @elements and add 1 to the total C、use the @count function instead of @elements D、use @texttotime to ensure that all strings arte converted to date-time values 

考题 The CUSTOMERS table has these columns: CUSTOMER_ID NUMBER(4) NOT NULL CUSTOMER_NAME VARCHAR2(100) NOT NULL STREET_ADDRESS VARCHAR2(150) CITY_ADDRESS VARCHAR2(50) STATE_ADDRESS VARCHAR2(50) PROVINCE_ADDRESS VARCHAR2(50) COUNTRY_ADDRESS VARCHAR2(50) POSTAL_CODE VARCHAR2(12) CUSTOMER_PHONE VARCHAR2(20) The CUSTOMER_ID column is the primary key for the table. Which two statements find the number of customers? () A、SELECT TOTAL(*) FROM customer;B、SELECT COUNT(*) FROM customer;C、SELECT TOTAL(customer_id) FROM customer;D、SELECT COUNT(customer_id) FROM customer;E、SELECT COUNT(customers) FROM customer;F、SELECT TOTAL(customer_name) FROM customer;

考题 Which of the following datatypes are used in situations where you want an ordered set of data elements, where every element is the same datatype, and where you predefine the number of elements that appear in the set?()A、REF B、TABLE C、CLOB D、VARRAY

考题 Which three statements describe the functionality of the DO_KEY built-in?()A、It accepts both a built-in and a key name as argument. B、If no key trigger is defined, the specified built-in executes. C、Its parameter must be specified in upper case, enclosed in single quotation marks. D、It performs the same task as if you pressed the function key associated with the specified argument. E、It executes the key trigger that corresponds to the built-in specified as its parameter. 

考题 以下的PL/SQL声明哪个是正确的?()A、v_id NUMBER(4);B、v_x, v_y, v_z VARCHAR2(10);C、v_birthdate DATE NOT NULL;D、v_in_stock BOOLEAN := 1;

考题 When setting arguments for a job, which procedure do you use for types that cannot be implicitly converted to and from a VARCHAR2 datatype?()A、SET_JOB_ARGUMENT_VALUEB、SET_JOB_VALUE_ANYDATAC、SET_JOB_ANYDATA_VALUED、SET_SPECIAL_JOB_VALUEE、SET_JOB_ANYTYPE_VALUE

考题 Which datatype is returned by the FIND_MENU_ITEM built-in function?()A、number B、Boolean C、menuitem D、VARCHAR2 

考题 What is the data type returned by the CREATE_TIMER built-in?()A、longB、timerC、numberD、varchar2

考题 Which SQL statement defines a FOREIGN KEY constraint on the DEPTNO column of the EMP table?()A、CREATE TABLE EMP (empno NUMBER(4), ename VARCHAR2(35), deptno NUMBER(7,2) NOT NULL, CONSTRAINT emp_deptno_fk FOREIGN KEY deptno REFERENCES dept deptno);B、CREATE TABLE EMP (empno NUMBER(4), ename VARCHAR2(35), deptno NUMBER(7,2) CONSTRAINT emp_deptno_fk REFERENCES dept (deptno));C、CREATE TABLE EMP (empno NUMBER(4), ename VARCHAR2(35), deptno NUMBER(7,2) NOT NULL, CONSTRAINT emp_deptno_fk REFERENCES dept (deptno) FOREIGN KEY (deptno));D、CREATE TABLE EMP (empno NUMBER(4), ename VARCHAR2(35), deptno NUMBER(7,2) FOREIGN KEY CONSTRAINT emp_deptno_fk REFERENCES dept (deptno));

考题 What does the FIND_MENU_ITEM built-in function return?()A、The internal ID of a menu. B、The internal ID of a menu item. C、The internal ID of a menu module. D、The internal ID of form module to which the menu is attached.

考题 Which value is valid for the iterate parameter in the CREATE_TIMER built-in function?()A、CYCLE B、ITERATEC、NO_REPEAT D、REUSE

考题 Which built-in returns a BOOLEAN value that indicated whether an objects internal ID is available?()A、GET_ID B、ID_NULL C、ID_FIND D、FIND_ID

考题 You create a Web page that contains the span shown in the following line of code. TextYou need replace the contents of the span with HTML that you download from a URL specified by a global variable named localURL. Which code segment should you use?()A、$.ajax({ type: "GET", url: localURL, dataType: "jsonp", success: function(htmlText { $("#span1").text(htmlText); } }); B、$.ajax( localURL, {}, function(htmlText) { $("#span1").html(htmlText); },"html" ); C、$.ajax({ type: "GET", url: localURL, dataType: "html",success: function(htmlText) { $("#span1").innerHTML = htmlText; }}); D、$.ajax({ type: "GET", url: localURL, success: function(htmlText) { $("#span1").html(htmlText); } });

考题 单选题Which built-in returns a BOOLEAN value that indicated whether an objects internal ID is available?()A GET_ID B ID_NULL C ID_FIND D FIND_ID

考题 多选题Which three statements describe the functionality of the DO_KEY built-in?()AIt accepts both a built-in and a key name as argument.BIf no key trigger is defined, the specified built-in executes.CIts parameter must be specified in upper case, enclosed in single quotation marks.DIt performs the same task as if you pressed the function key associated with the specified argument.EIt executes the key trigger that corresponds to the built-in specified as its parameter.

考题 单选题Which value is valid for the iterate parameter in the CREATE_TIMER built-in function?()A CYCLE B ITERATEC NO_REPEAT D REUSE

考题 单选题When setting arguments for a job, which procedure do you use for types that cannot be implicitly converted to and from a VARCHAR2 datatype?()A SET_JOB_ARGUMENT_VALUEB SET_JOB_VALUE_ANYDATAC SET_JOB_ANYDATA_VALUED SET_SPECIAL_JOB_VALUEE SET_JOB_ANYTYPE_VALUE

考题 单选题When setting arguments for a job, which procedure do you use for types that cannot be implicitly converted to and from a VARCHAR2 datatype?()A  SET_JOB_ARGUMENT_VALUEB  SET_JOB_VALUE_ANYDATAC  SET_JOB_ANYDATA_VALUED  SET_SPECIAL_JOB_VALUEE  SET_JOB_ANYTYPE_VALUE

考题 单选题What is the data type returned by the CREATE_TIMER built-in?()A longB timerC numberD varchar2

考题 单选题Which datatype is returned by the FIND_MENU_ITEM built-in function?()A number B Boolean C menuitem D VARCHAR2 

考题 单选题Which SQL statement defines a FOREIGN KEY constraint on the DEPTNO column of the EMP table?()A CREATE TABLE EMP (empno NUMBER(4), ename VARCHAR2(35), deptno NUMBER(7,2) NOT NULL, CONSTRAINT emp_deptno_fk FOREIGN KEY deptno REFERENCES dept deptno);B CREATE TABLE EMP (empno NUMBER(4), ename VARCHAR2(35), deptno NUMBER(7,2) CONSTRAINT emp_deptno_fk REFERENCES dept (deptno));C CREATE TABLE EMP (empno NUMBER(4), ename VARCHAR2(35), deptno NUMBER(7,2) NOT NULL, CONSTRAINT emp_deptno_fk REFERENCES dept (deptno) FOREIGN KEY (deptno));D CREATE TABLE EMP (empno NUMBER(4), ename VARCHAR2(35), deptno NUMBER(7,2) FOREIGN KEY CONSTRAINT emp_deptno_fk REFERENCES dept (deptno));

考题 单选题You create a Web page that contains the span shown in the following line of code. TextYou need replace the contents of the span with HTML that you download from a URL specified by a global variable named localURL. Which code segment should you use?()A $.ajax({ type: GET, url: localURL, dataType: jsonp, success: function(htmlText { $(#span1).text(htmlText); } }); B $.ajax( localURL, {}, function(htmlText) { $(#span1).html(htmlText); },html ); C $.ajax({ type: GET, url: localURL, dataType: html,success: function(htmlText) { $(#span1).innerHTML = htmlText; }}); D $.ajax({ type: GET, url: localURL, success: function(htmlText) { $(#span1).html(htmlText); } });

考题 单选题Which of the following datatypes are used in situations where you want an ordered set of data elements, where every element is the same datatype, and where you predefine the number of elements that appear in the set?()A REF B TABLE C CLOB D VARRAY

考题 单选题以下的PL/SQL声明哪个是正确的?()A v_id NUMBER(4);B v_x, v_y, v_z VARCHAR2(10);C v_birthdate DATE NOT NULL;D v_in_stock BOOLEAN := 1;

考题 单选题What does the FIND_MENU_ITEM built-in function return?()A The internal ID of a menu. B The internal ID of a menu item. C The internal ID of a menu module. D The internal ID of form module to which the menu is attached.

考题 单选题lisa is writing a formula to determine the number of elements in a list. she wants to ensure that a value is returned, even if the value her function is evaluating turns out to be a null string . which one of the following can she so to accomplish this ?()A use a defaule formula of 1 B use @elements and add 1 to the total C use the @count function instead of @elements D use @texttotime to ensure that all strings arte converted to date-time values