A. Resolution
B. Colors
C. Dots per inch
D. Refresh rate
第1题:
A. followed,followed
B. followed,following
C. following,followed
D. following,following
第2题:
从哪个菜单配置AP?
A、Configure>APs
B、Configure>Controllers>APs
C、Configure>Access Points
D、不配置AP,只配置控制器。AP会自动与控制器配置同步
A.
B.
C.
D.
第3题:
A.Configure2CFFhcombinationfibrechannel/gigabitEthernetadapters
B.Configure1CFFh2-portfibrechanneladapterand1CIOv2-portgigabitEthernetadapter
C.Configure1CIOv2-portfibrechanneladapterand1CFFhcombinationfibrechannel/gigabitEthernet adapter
D.Configure1CIOv2-portgigabitEthernetadapterand1CFFhcombinationfibrechannel/gigabitEthernet adapter
第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();}}
第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);
}
}
}
第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