After a technician installs a video card, which of the following should the technician configure NEXT?()A. ResolutionB. ColorsC. Dots per inchD. Refresh rate

题目
After a technician installs a video card, which of the following should the technician configure NEXT?()

A. Resolution

B. Colors

C. Dots per inch

D. Refresh rate


相似考题

2.请完成下列Java程序:用一个边框布局来安排一个工具栏和一个卡片布局。工具栏可浮动,包括两个按钮,一个向前一个向后控制卡片的显示;卡片布局包括3张卡片,分别标识为card1、card2、card3。注意;请勿改动main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。源程序代码文件清单如下:import java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.border.LineBorder;public class ex20_2{private static CardLayout cl=new CardLayout();private static JPanel cp=new JPanel();public static void main(String args[]){JFrame. jf=new JFrame();jf.setTitle("ex20_2");Container c=jf.getContentPane();JToolBar jtb=new JToolBar();JButton btnNext=new JButton(new Imagelcon("next.gif"));JButton btnPre=new JButton(new ImageIcon("back.gif"));jtb.add(btnPre);jtb.add(btnNext);cp.setLayout(c1);Dimension dim=new Dimension(150,80);cp.setPreferredSize(dim);cp.setBorder(new LineBorder(Color.BLACK));cp.add(new JLabel("card1",JLabel.CENTER),"card1");cp.add(new JLabel("card2",JLabel.CENTER),"card2");cp.add(new JLabel("card3",JLabel.CENTER),"card3");c.add(jtb,BorderLayout.NORTH);c.add(cp,BorderLayout.CENTER);ActionListener al=new ActionResponse();______;______;if.addWindowListener(new WindowAdapter(){public void windowClosing(WindowEvent we){System.exit(0);}});jf.pack();jf.setVisible(true);}static class ActionResponse implements ActionListener{public void actionPerformed(ActionEvent ae){if(ae.getActionCommand().equals("next"))c1.next(cp);elsec1.previous(cp);}}}

更多“After a technician installs a video card, which of the following should the technician configure NEXT?() ”相关问题
  • 第1题:

    You’re going to have a quiz ( )by another two in the ( )month.

    A. followed,followed

    B. followed,following

    C. following,followed

    D. following,following


    参考答案:B

  • 第2题:

    从哪个菜单配置AP?

    A、Configure>APs

    B、Configure>Controllers>APs

    C、Configure>Access Points

    D、不配置AP,只配置控制器。AP会自动与控制器配置同步

    A.

    B.

    C.

    D.


    正确答案:C

  • 第3题:

    AcustomerisdeployinganewdatabaseonaPS701BladeinaBladeCenterH,andrequiresredundant networkandSANadapters.Whichconfigurationsupportsthecustomerrequirement?()

    A.Configure2CFFhcombinationfibrechannel/gigabitEthernetadapters

    B.Configure1CFFh2-portfibrechanneladapterand1CIOv2-portgigabitEthernetadapter

    C.Configure1CIOv2-portfibrechanneladapterand1CFFhcombinationfibrechannel/gigabitEthernet adapter

    D.Configure1CIOv2-portgigabitEthernetadapterand1CFFhcombinationfibrechannel/gigabitEthernet adapter


    参考答案:C

  • 第4题:

    YouareimplementinganASP.NETWebsite.Thesiteusesacomponentthatmustbedynamicallyconfiguredbeforeitcanbeusedwithinsitepages.YoucreateastaticmethodnamedSiteHelper.Configurethatconfiguresthecomponent.YouneedtoaddacodesegmenttotheGlobal.asaxfilethatinvokestheSiteHelper.Configuremethodthefirsttime,andonlythefirsttime,thatanypageinthesiteisrequested.Whichcodesegmentshouldyouuse?()

    A.voidApplication_Start(objectsender,EventArgse){SiteHelper.Configure();}

    B.voidApplication_Init(objectsender,EventArgse){SiteHelper.Configure();}

    C.voidApplication_BeginRequest(objectsender,EventArgse){SiteHelper.Configure();}

    D.ObjectlockObject=newObject();voidApplication_BeginRequest(objectsender,EventArgse){lock(lockObject()){SiteHelper.Configure();}}


    参考答案:A

  • 第5题:

    请完成下列Java程序:用一个边框布局来安排一个工具栏和一个卡片布局。工具栏可浮动,包括2个按钮,一个向前一个向后控制卡片的显示;卡片布局包括3张卡片,分别标识为card1,card2,card3。

    注意;请勿改动main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。

    程序运行结果如下:

    import java.awt.*;

    import java.awt.event.*;

    import javax.swing.*;

    import javax.swing.border. LineBorder;

    public class ex24_2{

    private static CardLayout cl=new CardLayout();

    private static JPanel cp=new JPanel();

    public static void main(String[] args){

    JFrame. if=new JFrame();

    jf.setTitle("ex24_2");

    Container c=jf.getContentPane();

    JToolBar jtb=new JToolBar();

    JButton btnNext=new JButton(new ImageIcon("next.gif"));

    JButton btnPre=new JButton(new ImageIcon("back.gif"));

    jtb.add(btnPre);

    jtb.add(btnNext);

    cp.setLayout(cl);

    Dimension dim=new Dimension(150,80);

    cp.setPreferredSize(dim);

    cp.setBorder(new LineBorder(Color. BLACK));

    cp.add(new JLabel("cardl",JLabel.CENTER),"card1");

    cp.add(new JLabel("card2",JLabel.CENTER),"card2");

    cp.add(new JLabel("card3",JLabel.CENTER),"card3");

    c.add(jtb,BorderLayout.NORTH);

    c.add(cp,BorderLayout.CENTER);

    ActionListener al=new ActionResponse();

    ____________________________________;

    ____________________________________;

    jf.addWindowListener(new WindowAdapter(){

    public void windowClosing(WindowEvent we){

    System.exit(0);

    }

    });

    jf.pack();

    jf.setVisible(true);

    }

    static class ActionResponse implements ActionListener{

    public void actionPerformed(ActionEvent ae){

    if(ae.getActionCommand().equals("next"))

    cl.next(cp);

    else

    cl.previous(cp);

    }

    }

    }


    正确答案:btnNext.addActionListener(al) btnPre.addActionListener(al)
    btnNext.addActionListener(al) btnPre.addActionListener(al) 解析:本题主要考查工具栏和卡片布局的基本使用。解题关键是熟悉工具栏的设计和卡片布局的管理,熟悉事件处理机制,会制作图像按钮,会制作自己的事件监听器类。本题中,第1个空和第2个空都是需要填入注册监听器的语句,这里向前和向后2个按钮共用一个监听器,此监听器对象负责判断和处理相应的操作。

  • 第6题:

    ______ it rain tomorrow moring, the loading ______.

    A.Should / will be postponed

    B.If / shall be postponed

    C.Should / would be postponed

    D.If / has to be postponed


    正确答案:C
    一旦明天早上下雨,装货将被延迟。