单选题You established access to menu modules using roles. You have allowed the sales role to access the menu module, but prevented access to the Update menu item. Which item property would you alter to gray out the menu option for the role?()A Item Roles. B

题目
单选题
You established access to menu modules using roles. You have allowed the sales role to access the menu module, but prevented access to the Update menu item. Which item property would you alter to gray out the menu option for the role?()
A

Item Roles. 

B

Menu Item Roles. 

C

Display without Privilege. 

D

Use Security. 

E

Command Type.


相似考题
更多“单选题You established access to menu modules using roles. You have allowed the sales role to access the menu module, but prevented access to the Update menu item. Which item property would you alter to gray out the menu option for the role?()A Item Roles. B ”相关问题
  • 第1题:

    On the Junos Pulse Access Control Service, you have created a role called Secret that you only want to provide to users who present a certificate.Using the admin GUI, which two features would you configure to satisfy this requirement?()

    • A、Sign-in Policy
    • B、Role Mapping Rule
    • C、Role Restrictions
    • D、Trusted Server CA

    正确答案:B,C

  • 第2题:

    You created a custom menu for the Order Entry application. The shipping administrator has requested an additional submenu containing four items to invoke various reports. Which command type must you use to identify the parent menu item as a submenu? ()

    • A、Menu 
    • B、Plus 
    • C、Macro
    • D、PL/SQL

    正确答案:A

  • 第3题:

    You need to allow the user to toggle between automatic query and no automatic query using a pop-up menu. Which built-in would you use in the menu item command to obtain the relationship name? ()

    • A、GET_RELATION_PROPERTY 
    • B、SET_RELATION_PROPERTY 
    • C、GET_BLOCK_PROPERTY 
    • D、GET_FORM_PROPERTY

    正确答案:C

  • 第4题:

    The telesales force requested additional ways to terminate the automated polling questionnaire. In addition to the default functionality, you provide a menu item and a button for this purpose. Adhering to efficient coding practices, which PL/SQL code do you use for the menu item and the button?()

    • A、EXIT 
    • B、EXIT_FORM 
    • C、DO_KEY('Key-Exit') 
    • D、DO_KEY('EXIT_FORM')

    正确答案:D

  • 第5题:

    You need to add a pop-up menu to the CV_EMP canvas to display when a user right-clicks the mouse within the canvas. How could you create the pop-up menu?()

    • A、Use the Layout Editor to create a pop-up menu, assign commands to the menu in the Menu Editor, and attack the menu items to the canvas. 
    • B、Use the Report Wizard to create a pop-up menu and attack the menu items to the canvas.  
    • C、Alter the pop-up Menu Property value in the Property Palette of the canvas. 
    • D、Use the Object Navigator to create a pop-up menu, assign commands to the menu items, and attack the menu to items or canvases.

    正确答案:D

  • 第6题:

    How would you default the layout of a parameter form? ()

    • A、Use the default layout tool in the parameter form editor. 
    • B、Select menu item tool->parameter form builder. 
    • C、Open the parameter form editor and select menu items tool->default layout. 
    • D、You cannot default the layout of the parameters.

    正确答案:B

  • 第7题:

    单选题
    You need to allow the user to toggle between automatic query and no automatic query using a pop-up menu. Which built-in would you use in the menu item command to obtain the relationship name? ()
    A

    GET_RELATION_PROPERTY 

    B

    SET_RELATION_PROPERTY 

    C

    GET_BLOCK_PROPERTY 

    D

    GET_FORM_PROPERTY


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

  • 第8题:

    单选题
    You need to add a pop-up menu to the CV_EMP canvas to display when a user right-clicks the mouse within the canvas. How could you create the pop-up menu?()
    A

    Use the Layout Editor to create a pop-up menu, assign commands to the menu in the Menu Editor, and attack the menu items to the canvas. 

    B

    Use the Report Wizard to create a pop-up menu and attack the menu items to the canvas.  

    C

    Alter the pop-up Menu Property value in the Property Palette of the canvas. 

    D

    Use the Object Navigator to create a pop-up menu, assign commands to the menu items, and attack the menu to items or canvases.


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

  • 第9题:

    单选题
    You have configured Junos Pulse on your Windows desktop and want to verify that the IPsec configuration policy is being pushed down to your workstation upon network authentication and login.Which utility program do you use to see this configuration and where do you find it?()
    A

    the Pulse Diagnostics Tool in the File > Tools menu option in the Pulse GUI

    B

    the Pulse Diagnostics Tool in the Start > All Programs > Juniper Networks > Junos Pulse menu folder next to the Junos Pulse application

    C

    the Pulse Diagnostics Viewer, which you access by simultaneously pressing Ctrl and F2

    D

    the Pulse Diagnostics Viewer in the File > Tools menu option in the Pulse GUI


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

  • 第10题:

    单选题
    You created a custom menu for the Order Entry application. The shipping administrator has requested an additional submenu containing four items to invoke various reports. Which command type must you use to identify the parent menu item as a submenu? ()
    A

    Menu 

    B

    Plus 

    C

    Macro

    D

    PL/SQL


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

  • 第11题:

    单选题
    The telesales force requested additional ways to terminate the automated polling questionnaire. In addition to the default functionality, you provide a menu item and a button for this purpose. Adhering to efficient coding practices, which PL/SQL code do you use for the menu item and the button?()
    A

    EXIT 

    B

    EXIT_FORM 

    C

    DO_KEY('Key-Exit') 

    D

    DO_KEY('EXIT_FORM')


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

  • 第12题:

    单选题
    You created a custom menu for the Order Entry application. Which step do you perform before attaching the menu module to the form module?()
    A

    Select file-->Administration-->Convert 

    B

    Select file-->Administration-->Execute 

    C

    Select file-->Administration-->Compile File

    D

    No further step is necessary. 


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

  • 第13题:

    You are building JSP pages that have a set of menus that are visible based on a user’s security role. Thesemenus are hand-crafted by your web design team; for example, the SalesManager role has a menu in thefile /WEB-INF/html/sales-mgr-menu.html. Which JSP code snippet should be used to make this menuvisible to the user?()

    • A、<% if ( request.isUserInRole("SalesManager") ) { %> <%@ include file=’/WEB-INF/html/sales-mgr-menu.html’ %> <% } %>
    • B、<jsp:if test=’request.isUserInRole("SalesManager")’> <%@ include file=’/WEB-INF/html/sales-mgr-menu.html’ %> </jsp:if>
    • C、<% if ( request.isUserInRole("SalesManager") ) { %> . <jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ /> . <% } %>
    • D、<jsp:if test=’request.isUserInRole("SalesManager")’> <jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ /> </jsp:if>

    正确答案:A

  • 第14题:

    You have written a custom menu for a Forms application. You saved the menu module to the file custmenu.mmb. In the Property Palette for the form, you set the Menu Module property to custmenu. When you run the form, the custom menu does not appear. What can you do to fix this problem?()

    • A、Generate the menu module executable. 
    • B、Save the menu module as custmenu.mmx. 
    • C、In the Property Sheet for the form, set the Starting Menu property to custmenu. 
    • D、In the Property Sheet for the form, set the Menu Module property to custmenu.mmb.

    正确答案:A

  • 第15题:

    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.

    正确答案:B

  • 第16题:

    You established access to menu modules using roles. You have allowed the sales role to access the menu module, but prevented access to the Update menu item. Which item property would you alter to gray out the menu option for the role?()

    • A、Item Roles. 
    • B、Menu Item Roles. 
    • C、Display without Privilege. 
    • D、Use Security. 
    • E、Command Type.

    正确答案:C

  • 第17题:

    You have a computer that runs Windows 7. You open Windows Internet Explorer and access a Web site asshown in the exhibit. (Click the Exhibit button.) You click the Suggested Sites button, but the suggestions failto display. You need to obtain suggested sites.  What should you do?()

    • A、From the Page menu, enable Caret Browsing.
    • B、From the Safety menu, disable the SmartScreen Filter.
    • C、From the Start menu, open a new Internet Explorer window.
    • D、From the Microsoft Corporation Web site, refresh the Suggested Sites Web Slice.

    正确答案:C

  • 第18题:

    多选题
    Which three menu item types are valid in a menu module?()
    A

    Magic

    B

    Plain

    C

    Check

    D

    List item

    E

    Divider


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

  • 第19题:

    单选题
    You have written a custom menu for a Forms application. You saved the menu module to the file custmenu.mmb. In the Property Palette for the form, you set the Menu Module property to custmenu. When you run the form, the custom menu does not appear. What can you do to fix this problem?()
    A

    Generate the menu module executable. 

    B

    Save the menu module as custmenu.mmx. 

    C

    In the Property Sheet for the form, set the Starting Menu property to custmenu. 

    D

    In the Property Sheet for the form, set the Menu Module property to custmenu.mmb.


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

  • 第20题:

    单选题
    You established access to menu modules using roles. While testing the application, you need access to all the menus in the SALES form module for all the roles. Which method will override the Menu Module Roles property to allow you to access all the menu items?()
    A

    Disable the values for the Menu Module Roles property. 

    B

    Set the Use Security value in the form module Property Palette to 'True'. 

    C

    Set the Use Security value in the form module Property Palette to 'False'. 

    D

    Set the Use Security value in the menu module Property Palette to 'True'. 

    E

    Set the Use Security value in the menu module Property Palette to 'False'. 


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

  • 第21题:

    单选题
    You are building JSP pages that have a set of menus that are visible based on a user’s security role. Thesemenus are hand-crafted by your web design team; for example, the SalesManager role has a menu in thefile /WEB-INF/html/sales-mgr-menu.html. Which JSP code snippet should be used to make this menuvisible to the user?()
    A

    <% if ( request.isUserInRole(SalesManager) ) { %> <%@ include file=’/WEB-INF/html/sales-mgr-menu.html’ %> <% } %>

    B

    <jsp:if test=’request.isUserInRole(SalesManager)’> <%@ include file=’/WEB-INF/html/sales-mgr-menu.html’ %> </jsp:if>

    C

    <% if ( request.isUserInRole(SalesManager) ) { %> . <jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ /> . <% } %>

    D

    <jsp:if test=’request.isUserInRole(SalesManager)’> <jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ /> </jsp:if>


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

  • 第22题:

    单选题
    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.


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

  • 第23题:

    单选题
    You have a computer that runs Windows 7. You open Windows Internet Explorer and access a Web site asshown in the exhibit. (Click the Exhibit button.) You click the Suggested Sites button, but the suggestions failto display. You need to obtain suggested sites.  What should you do?()
    A

    From the Page menu, enable Caret Browsing.

    B

    From the Safety menu, disable the SmartScreen Filter.

    C

    From the Start menu, open a new Internet Explorer window.

    D

    From the Microsoft Corporation Web site, refresh the Suggested Sites Web Slice.


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