判断题 一般来说,确定“金牌”客户的基本方法是估算客户带来的利益。
问答题 本题将一个整形变量opl的二进制的低3位全部变成1。 public class javal{ public static void main(String[]args){ opl=21; int op2=7: res; ; System.out.println(res); } }
问答题 下面程序中,在主窗口单击鼠标后,就会生成一个新 窗口。 import java.awt.*; import java.awt.event.*; public class java3 extends Frame{ java3(){ super("java3"); addNotify(); addWindowListener(new WindowAdapter(){ public void windowClosing(WindowEvent e){ System.exit(0); } }); Insets insets=getInsets(); setSize(insets.left+insets.right+150, insets.top+insets.bottom+150); this.addMouseListener(MouseEventHandler()); } class MouseEventHandler implements MouseAda- pter{ public void mousePresse(MouseEvent evt){ Rectangle bounds=getBounds(); int x=evt.getX()+bounds.x; int y=evt.getY()十bounds.y; java3 m=newjava3(); m.setLocation(x,y); m.show(); } } static public void main(String[]args){ (new java3()).show(); } }
判断题 银行可以通过建立客户档案的形式来实现对客户信息的收集与整理。
判断题 银行产品设计的技术主要是指银行产品的定价、利费率的设定。
问答题 本题是判断一个字符串“Tom”是否在另外一个字符串 “I am Tom,I am from China”中出现。 public class javal{ public static void main(String[]args){; strl="I am Tom,I am from China."; str2="Tom"; int i= ; if( ) System.out.println("\"+str2+"\"is in the string:\""+strl+"\""); else System.out.println("\""+str2+"\"is not in the string:\""+strl+"\""); } }
判断题 互联网保险要遵循安全性、内控性和稳定性原则,加强风险管理,完善内控系统,确保交易安全,信息安全和资金安全。( )
判断题 自愿原则是指公民、法人或者其他组织有权根据自己的意愿决定参不参加民事活动,参加何种民事活动,根据自己的意愿依法处分自己的财产和权利。( )
问答题 本题的功能是用按钮来控制文字的颜色。窗口中有三个按钮“Yellow”、“Blue”和“Red”,它们分别对应文字标签中文本的颜色为黄色、蓝色和红色,单击任意一个按钮,文字标签中的文本就变成按钮对应的颜色。 import java.awt.*; import java.awt.event.*; import javflx.swing.*; class ButtonPanel extends JPanel implements ActionL- istener{ public ButtonPanel(){ yellowButton=new J Button("Yellow"); blueButton=new JButton("Blue"); redButton=new JButton("Red"); j1=new JLabel("I am from China!"); add(yellowButton); add(blueButton); add(redButton); add(j1); yellowButtofl.addActionListener(this); blueButton.addActionListener(this); redButton.addActionListener(this); } public void actionPerformed(ActionEvent evt){ 0bject source=evt.getSource(); Color color=getForeground(); if(source= =yellowButton)color=Color. yellow; else if(source= =blueButton)color=Color. blue; else if(source= =redButton)color= Color.red; ; ; } private JButton yellowButton; private JButton blueButton; private JButton redButton; private JLabel jl; } class ButtonFrame extends JFrame{ public ButtonFrame(){ setTitle("exam l6"); setSize(300,200); addWindowListener(new WindowAdapter(){ public void windowClosing(WindowEvent e){ System.exit(O); } }); Container contentPane=getContentPane(); contentPane.add(new ButtonPanel()); } } public class java2{ public static void main(String[]args){ JFrame frame=new ButtonFrame(); frame.show(); } }
判断题 如果一个人的智商为100,则可以认为他的智力水平非常优秀。( )