多选题Which two statements are true about mouse button variables?()ASYSTEM.MOUSE_BUTTON_PRESSED returns a string.BSYSTEM.MOUSE_BUTTON_PRESSED returns a numeric value. 1Z0-132 World Leaders In Certifications Material - Test-king.comCA possible value for SYSTE

题目
多选题
Which two statements are true about mouse button variables?()
A

SYSTEM.MOUSE_BUTTON_PRESSED returns a string.

B

SYSTEM.MOUSE_BUTTON_PRESSED returns a numeric value. 1Z0-132 World Leaders In Certifications Material - Test-king.com

C

A possible value for SYSTEM.MOUSE_BUTTON_MODIFIERS is Control+Alt+Delete.

D

SYSTEM.MOUSE_BUTTON_MODIFIERS can only be references in form-level triggers.

E

SYSTEM.MOUSE_BUTTON_MODIFIERS identifies which special key was pressed in conjunction with the usual mouse button action.


相似考题
参考答案和解析
正确答案: A,E
解析: 暂无解析
更多“多选题Which two statements are true about mouse button variables?()ASYSTEM.MOUSE_BUTTON_PRESSED returns a string.BSYSTEM.MOUSE_BUTTON_PRESSED returns a numeric value. 1Z0-132 World Leaders In Certifications Material - Test-king.comCA possible value for SYSTE”相关问题
  • 第1题:

    Given that b and c refer to instances of wrapper classes, which two statements are true?()

    • A、 b.equals(b) returns true.
    • B、 b.equals(c) returns the same result as b == c.
    • C、 b.eqials(c) can return false even if c.equals(b) returns true.
    • D、 b.equals(c) throws an exception if b and c are different wrapper types.
    • E、 b.equals(c) returns false if the type of wrapper objects being compared are different.

    正确答案:B,C

  • 第2题:

    Which two statements are true about mouse button variables?()

    • A、SYSTEM.MOUSE_BUTTON_PRESSED returns a string. 
    • B、SYSTEM.MOUSE_BUTTON_PRESSED returns a numeric value. 1Z0-132 World Leaders In Certifications Material - Test-king.com 
    • C、A possible value for SYSTEM.MOUSE_BUTTON_MODIFIERS is Control+Alt+Delete. 
    • D、SYSTEM.MOUSE_BUTTON_MODIFIERS can only be references in form-level triggers. 
    • E、SYSTEM.MOUSE_BUTTON_MODIFIERS identifies which special key was pressed in conjunction with the usual mouse button action. 

    正确答案:B,E

  • 第3题:

    Which two statements are true regarding partitioning in Mysql?()

    • A、Tables with BLOB and TEXT columns cannot be partitioned
    • B、Partitioning allows easier management of smaller data sets for certain queries
    • C、Partitioning allows different columns to be stored in separate files
    • D、The partitioning expression is an integer or function that returns an integer value or NULL value
    • E、Partitioning is only available for those storage engines that implements it natively

    正确答案:B,E

  • 第4题:

    Which statement is true about mouse events? ()

    • A、The cursor style can be set to CAUTION. 
    • B、Double-clicking a mouse button can potentially fire six mouse event triggers. 
    • C、The values for the SYSTEM.MOUSE_BUTTON_PRESSED system variable can only be 1 or 2. 
    • D、Click and double-click button actions can only detect if the mouse is positioned in an item.

    正确答案:B

  • 第5题:

    TestKing.com has a SQL Server 2005 computer. You have been assigned the task of retrieving information about a user who is currently logged in. You need to create a function that returns scalar information about the activity time for a particular user. What are two possible ways to achieve this goal?()

    • A、Create a function that returns a list of values that represent the login times for the given user.
    • B、Create a function that returns a list of values that represent the people who have logged more hours than the current user has logged.
    • C、Create a function that returns a numeric value that represents the number of hours that a user has logged for the current day.
    • D、Create a function that returns a numeric value that represents the number of hours that a user has logged for the current month.

    正确答案:C,D

  • 第6题:

    单选题
    Which statement is true about mouse events? ()
    A

    The cursor style can be set to CAUTION. 

    B

    Double-clicking a mouse button can potentially fire six mouse event triggers. 

    C

    The values for the SYSTEM.MOUSE_BUTTON_PRESSED system variable can only be 1 or 2. 

    D

    Click and double-click button actions can only detect if the mouse is positioned in an item.


    正确答案: B
    解析: 暂无解析

  • 第7题:

    多选题
    Which statements concerning the value of a member variable are true, when no explicit assignments have been made?()
    A

    The value of an int is undetermined.

    B

    The value of all numeric types is zero.

    C

    The compiler may issue an error if the variable is used before it is initialized.

    D

    The value of a String variable is  (empty string).

    E

    The value of all object variables is null.


    正确答案: B,E
    解析: 暂无解析

  • 第8题:

    多选题
    Which four statements correctly describe functions that are available in SQL? ()
    A

    INSTR returns the numeric position of a named character.

    B

    NVL2 returns the first non-null expression in the expression list.

    C

    TRUNCATE rounds the column, expression, or value to n decimal places.

    D

    DECODE translates an expression after comparing it to each search value.

    E

    TRIM trims the heading or trailing characters (or both) from a character string.

    F

    NVL compares two expressions and returns null if they are equal, or the first expression if they are not equal.

    G

    NULLIF compares two expressions and returns null if they are equal, or the first expression if they are not equal.


    正确答案: F,D
    解析: 暂无解析

  • 第9题:

    多选题
    Identify the two situations in which you use the alert log file in your database to check the details.()
    A

    Running a query on a table returns ORA-600: Internal Error.

    B

    Inserting a value in a table returns ORA-01722: invalid number.

    C

    Creating a table returns ORA-00955: name is already used by an existing object.

    D

    Inserting a value in a table returns ORA-00001: unique constraint (SYS.PK_TECHP) violated.

    E

    Inserting a row in a table returns ORA-00060: deadlock detected while waiting for resource.


    正确答案: D,C
    解析: 暂无解析

  • 第10题:

    多选题
    Which of the following statements about variables and their scopes are true? ()
    A

    Instance variables are member variables of a class.

    B

    Instance variables are declared with the static keyword.

    C

    Local variables defined inside a method are created when the method is executed.

    D

    Local variables must be initialized before they are used.


    正确答案: B,D
    解析: 类中有几种变量,分别是:局部变量(英文可以为:local/automatic/temporary/stack variable)是定义在方法里的变量;实例变量(英文为:instance variable)是在方法外而在类声明内定义的变量,有时也叫成员变量;类变量(英文为:class variable)是用关键字static声明的实例变量,他们的生存期分别是:局部变量在定义该变量的方法被调用时被创建,而在该方法退出后被撤销;实例变量在使用new Xxxx()创建该类的实例时被创建,而其生存期和该类的实例对象的生存期相同;类变量在该类被加载时被创建,不一定要用new Xxxx()创建,所有该类的实例对象共享该类变量,其生存期是类的生存期。任何变量在使用前都必须初始化,但是需要指出的是局部变量必须显式初始化,而实例变量不必,原始类型的实例变量在该类的构造方法被调用时为它分配的缺省的值,整型是0,布尔型是false,而浮点型是0.0f,引用类型(类类型)的实例变量的缺省值是null(没有进行实际的初始化,对它的使用将引起NullPointException),类变量的规则和实例变量一样,不同的是类变量的初始化是在类被加载时。

  • 第11题:

    多选题
    TestKing.com has a SQL Server 2005 computer. You have been assigned the task of retrieving information about a user who is currently logged in. You need to create a function that returns scalar information about the activity time for a particular user. What are two possible ways to achieve this goal?()
    A

    Create a function that returns a list of values that represent the login times for the given user.

    B

    Create a function that returns a list of values that represent the people who have logged more hours than the current user has logged.

    C

    Create a function that returns a numeric value that represents the number of hours that a user has logged for the current day.

    D

    Create a function that returns a numeric value that represents the number of hours that a user has logged for the current month.


    正确答案: D,A
    解析: 暂无解析

  • 第12题:

    单选题
    Evaluate these two SQL statements: What is true about them?()
    A

    The two statements produce identical results.

    B

    The second statement returns a syntax error.

    C

    There is no need to specify DESC because the results are sorted in descending order by default.

    D

    The two statements can be made to produce identical results by adding a column alias for the salary column in the second SQL statement.


    正确答案: D
    解析: 暂无解析

  • 第13题:

    Which of the following statements are true?() 

    • A、 The equals() method determines if reference values refer to the same object.
    • B、 The == operator determines if the contents and type of two separate objects match.
    • C、 The equals() method returns true only when the contents of two objects match.
    • D、 The class File overrides equals() to return true if the contents and type of two separate objects        match.

    正确答案:A,D

  • 第14题:

    Which four statements correctly describe functions that are available in SQL? ()

    • A、INSTR returns the numeric position of a named character.
    • B、NVL2 returns the first non-null expression in the expression list.
    • C、TRUNCATE rounds the column, expression, or value to n decimal places.
    • D、DECODE translates an expression after comparing it to each search value.
    • E、TRIM trims the heading of trailing characters (or both) from a character string.
    • F、NVL compares two expressions and returns null if they are equal, or the first expression of they are not equal.
    • G、NULLIF compares twp expressions and returns null if they are equal, or the first expression if they are not equal.

    正确答案:A,D,E,G

  • 第15题:

    Identify the two situations in which you use the alert log file in your database to check the details.()

    • A、Running a query on a table returns "ORA-600: Internal Error."
    • B、Inserting a value in a table returns "ORA-01722: invalid number."
    • C、Creating a table returns "ORA-00955: name is already used by an existing object."
    • D、Inserting a value in a table returns "ORA-00001: unique constraint (SYS.PK_TECHP) violated." 
    • E、Inserting a row in a table returns "ORA-00060: deadlock detected while waiting for resource."

    正确答案:A,E

  • 第16题:

    Which four statements correctly describe functions that are available in SQL? ()

    • A、INSTR returns the numeric position of a named character.
    • B、NVL2 returns the first non-null expression in the expression list.
    • C、TRUNCATE rounds the column, expression, or value to n decimal places.
    • D、DECODE translates an expression after comparing it to each search value.
    • E、TRIM trims the heading or trailing characters (or both) from a character string.
    • F、NVL compares two expressions and returns null if they are equal, or the first expression if they are not equal.
    • G、NULLIF compares two expressions and returns null if they are equal, or the first expression if they are not equal.

    正确答案:A,D,E,G

  • 第17题:

    多选题
    Which of the following statements are true?()
    A

    The equals() method determines if reference values refer to the same object.

    B

    The == operator determines if the contents and type of two separate objects match.

    C

    The equals() method returns true only when the contents of two objects match.

    D

    The class File overrides equals() to return true if the contents and type of two separate objects        match.


    正确答案: A,D
    解析: 严格来说这个问题的答案是不确定的,因为equals()方法是可以被重载的,但是按照java语言的本意来说:如果没有重写(override)新类的equals(),则该方法和 == 操作符一样在两个变量指向同一对象时返回真,但是java推荐的是使用equals()方法来判断两个对象的内容是否一样,就像String类的equals()方法所做的那样:判定两个String对象的内容是否相同,而==操作符返回true的唯一条件是两个变量指向同一对象。从这个意义上来说选择给定的答案。从更严格的意义来说正确答案应该只有D。

  • 第18题:

    多选题
    Which four statements correctly describe functions that are available in SQL? ()
    A

    INSTR returns the numeric position of a named character.

    B

    NVL2 returns the first non-null expression in the expression list.

    C

    TRUNCATE rounds the column, expression, or value to n decimal places.

    D

    DECODE translates an expression after comparing it to each search value.

    E

    TRIM trims the heading of trailing characters (or both) from a character string.

    F

    NVL compares two expressions and returns null if they are equal, or the first expression of they are not equal.

    G

    NULLIF compares twp expressions and returns null if they are equal, or the first expression if they are not equal.


    正确答案: E,D
    解析: 暂无解析

  • 第19题:

    多选题
    Identify the two situations in which the alert log file is updated with details. ()
    A

    Running a query on a table returns ORA-600: Internal Error.

    B

    Inserting a value in a table returns ORA-01722: invalid number.

    C

    Creating a table returns ORA-00955: name is already used by an existing object.

    D

    Inserting a value in a table returns ORA-00001: unique constraint (SYS.PK_TECHP) violated.

    E

    Rebuilding an index using ALTER INDEX ...REBUILD fails with an error ORA-01578: ORACLE data block corrupted (file # 14, block # 50).


    正确答案: B,C
    解析: 暂无解析

  • 第20题:

    多选题
    Which two statements are true regarding partitioning in Mysql?()
    A

    Tables with BLOB and TEXT columns cannot be partitioned

    B

    Partitioning allows easier management of smaller data sets for certain queries

    C

    Partitioning allows different columns to be stored in separate files

    D

    The partitioning expression is an integer or function that returns an integer value or NULL value

    E

    Partitioning is only available for those storage engines that implements it natively


    正确答案: B,E
    解析: 暂无解析

  • 第21题:

    多选题
    Which of these statements about penultimate hop popping are true?()
    A

    It is used only for directly connected subnets or aggregate routes

    B

    It can only be used with LDP.

    C

    It is only used when two or more labels are stacked.

    D

    It enables the Edge LSR to request a label pop operation from Its upstream neighbors

    E

    It is requested through TDP using a special label value that is also called the implicit-null value.

    F

    It is requested through LDP using a special label value that is also called the implicit-null value.


    正确答案: E,A
    解析: 暂无解析

  • 第22题:

    多选题
    Given: Which two statements are true about the result if the default locale is Locale.US?()
    A

    The value of b is 2.

    B

    The value of a is 3.14.

    C

    The value of b is 2.00.

    D

    The value of a is 3.141.

    E

    The value of a is 3.1415.

    F

    The value of a is 3.1416.

    G

    The value of b is 2.0000.


    正确答案: G,D
    解析: 暂无解析

  • 第23题:

    多选题
    Which two statements are true about mouse button variables?()
    A

    SYSTEM.MOUSE_BUTTON_PRESSED returns a string.

    B

    SYSTEM.MOUSE_BUTTON_PRESSED returns a numeric value. 1Z0-132 World Leaders In Certifications Material - Test-king.com

    C

    A possible value for SYSTEM.MOUSE_BUTTON_MODIFIERS is Control+Alt+Delete.

    D

    SYSTEM.MOUSE_BUTTON_MODIFIERS can only be references in form-level triggers.

    E

    SYSTEM.MOUSE_BUTTON_MODIFIERS identifies which special key was pressed in conjunction with the usual mouse button action.


    正确答案: D,B
    解析: 暂无解析

  • 第24题:

    多选题
    Given that b and c refer to instances of wrapper classes, which two statements are true?()
    A

    b.equals(b) returns true.

    B

    b.equals(c) returns the same result as b == c.

    C

    b.eqials(c) can return false even if c.equals(b) returns true.

    D

    b.equals(c) throws an exception if b and c are different wrapper types.

    E

    b.equals(c) returns false if the type of wrapper objects being compared are different.


    正确答案: D,C
    解析: 暂无解析