湖南青果软件有限公司 高级程序员笔试题
10-15 23:59:20
来源:http://www.qz26.com 笔试题目 阅读:8570次
导读:A.string s = #”n Test string”;B.string s = “’n Test string”;C.string s = @”n Test string”;D.string s = “n Test string”;7:以下的C程序代码片段运行后C和d的值分别是多少 Int a =1,b =2; Int c,d; c =(a&b)&&a; d =(a&&b)&a; A.0,0B.0,1C.1,0D.1,18:Which of the following operations can you NOT perform on an ADO.NET DataSet?A.A DataSet can be synchronised with a RecordSet.B.A DataSet can be synchronised with the database.C.A DataSet c
湖南青果软件有限公司 高级程序员笔试题,标签:银行笔试题目,企业笔试题目,http://www.qz26.com
7:以下的C程序代码片段运行后C和d的值分别是多少
Int a =1,b =2;
Int c,d;
c =(a&b)&&a;
d =(a&&b)&a;
8:Which of the following operations can you NOT perform on an ADO.NET DataSet? 9:软件生命周期的瀑布模型把软件项目分为3个阶段、8个子阶段,以下哪一个是正常的开发顺序? 10: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();
}
}
请问,此程序输出结果是: www.qz26.com 11:假定a和b为int型变量,则执行下述语句组后,b的值为
a=1;
b=10;
do
{
b-=a;
a++;
} while (b--<0); 12:在C#中利用Socket进行网络通信编程的一般步骤是:建立Socket侦听、( )、利用Socket接收和发送数据。
7:以下的C程序代码片段运行后C和d的值分别是多少
Int a =1,b =2;
Int c,d;
c =(a&b)&&a;
d =(a&&b)&a;
8:Which of the following operations can you NOT perform on an ADO.NET DataSet? 9:软件生命周期的瀑布模型把软件项目分为3个阶段、8个子阶段,以下哪一个是正常的开发顺序? 10: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();
}
}
请问,此程序输出结果是: www.qz26.com 11:假定a和b为int型变量,则执行下述语句组后,b的值为
a=1;
b=10;
do
{
b-=a;
a++;
} while (b--<0); 12:在C#中利用Socket进行网络通信编程的一般步骤是:建立Socket侦听、( )、利用Socket接收和发送数据。
Tag:笔试题目,银行笔试题目,企业笔试题目,求职笔试面试 - 笔试题目