目前本站已有 十几万 份求职资料啦!


雅虎笔试大全含答案

10-16 00:00:09 来源:http://www.qz26.com 笔试题目   阅读:8600
导读:Question 34. (单选)在C#中利用Socket进行网络通信编程的一般步骤是:建立Socket侦听、( )、利用Socket接收和发送数据。——41. 建立Socket连接2. 获得端口号;3. 获得IP地址;4. 获得主机名;Question 35. (单选)如果设treeView1=new TreeView(),TreeNode node=new TreeNode("根结点" ),则treeView1.Nodes.Add(node)返回的是一个 ()类型的值。——21. TreeNode;2. int;3. string;4. TreeView;Question 36. (单选)声明一个委托public delegate int myCallBack(int x); 则用该委托产生的回调方法的原型应该是——21. void myCallBack(int x) 2. int receive(int num
雅虎笔试大全含答案,标签:银行笔试题目,企业笔试题目,http://www.qz26.com
Question 34. (单选)

  在C#中利用Socket进行网络通信编程的一般步骤是:建立Socket侦听、( )、利用Socket接收和发

送数据。——4

  1. 建立Socket连接  2. 获得端口号;
  3. 获得IP地址;  4. 获得主机名;

Question 35. (单选)

  如果设treeView1=new TreeView(),TreeNode node=new TreeNode("根结点" ),则

treeView1.Nodes.Add(node)返回的是一个 ()类型的值。——2

  1. TreeNode;  2. int;  3. string;  4. TreeView;

Question 36. (单选)

  声明一个委托public delegate int myCallBack(int x); 则用该委托产生的回调方法的原型应该是

——2

  1. void myCallBack(int x)   2. int receive(int num)
  3. string receive(int x)   4. 不确定的

Question 37. (单选)

  关于ASP.NET中的代码隐藏文件的描述正确的是——1

  1. Web窗体页的程序的逻辑由代码组成,这些代码的创建用于与窗体交互。编程逻辑唯一与用户界面不同的文件中。该文件称作为“代码隐藏”文件,如果用C#创建,该文件
  2. 项目中所有Web窗体页的代码隐藏文件都被编译成.EXE文件
  3. 项目中所有的Web窗体页的代码隐藏文件都被编译成项目动态链接库(.dll)文件
  4. 以上都不正确

Question 38. (单选)

  What compiler switch creates an xml file from the xml comments in the files in an

assembly?——2

  1. /text   2. /doc
  3. /xml   4. /help

Question 39. (单选) www.qz26.com

  下面的代码实现了设计模式中的什么模式——3

  public class A {
  private A instance;
  private A() {
  }

  public static A Instance {
  get
  {
  if ( A == null )
  A = new A();
  return instance;
  }
  }
  }
   1. Factory    2. Abstract Factory
   3. Singleton    4. Builder

Question 40. (单选)

class Class1
{
public static int Count = 0;
static Class1()
{
Count++;
}
public Class1()
{
Count++;
}
}
Class1 o1 = new Class1();
Class1 o2 = new Class1();

  请问,Class1.Count的值是多少?(3)

   1. 1    2. 2    3. 3    4. 4 Question 41. (单选)

abstract class BaseClass
{
public virtual void MethodA()
{
Console.WriteLine("BaseClass");
}
public virtual void MethodB()
{
}
}
class Class1: BaseClass
{
public void MethodA()
{
Console.WriteLine("Class1");
}
public override void MethodB()
{
}
}
class Class2: Class1
{
new public void MethodB()
{
}
}
class MainClass
{
public static void Main(string[] args)
{
Class2 o = new Class2();
o.MethodA();
}
}

  请问,此程序输出结果是:——3

   1. BaseClass    2. BassClass Class1
   3. Class1    4. Class1 BassClass

Question 42. (单选)——1
www.qz26.com
public static void Main(string[] args)
{
int i = 2000;
object o = i;
i = 2001;
int j =(int) o;
Console.WriteLine("i={0},o={1}, j={2}",i,o,j);
}

   1. i=2001,o=2000,j=2000    2. i=2001,o=2001,,j=2001
   3. i=2000,o=2001,,j=2000    4. i=2001,o=2000,j=2001

Question 43. (多选)

  您要创建ASP.NET应用程序用于运行AllWin公司内部的Web站点,这个应用程序包含了50个页面。您想

上一页  [1] [2] [3] [4]  下一页


Tag:笔试题目银行笔试题目,企业笔试题目求职笔试面试 - 笔试题目
【字号: 】 【打印】 【关闭
《雅虎笔试大全含答案》相关文章
最新更新
推荐热门
联系我们 | 网站地图 | 财务资料 | 范文大全 | 求职简历 | 财会考试 | 成功励志
Copyright 二六求职资料网 All Right Reserved.
1 2 3 4 5 6 7 8 9 10