设为首页收藏本站

嘻皮客娱乐学习网

 找回密码
 中文注册
搜索
打印 上一主题 下一主题
开启左侧

[面试题库] 西安当代医院管理研究院笔试题

[复制链接]
跳转到指定楼层
楼主
发表于 2014-11-30 14:46:34 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
1.String s = new String(‘xyz’); 请问产生几个String Object?
2.软件工程可以分为几个阶段?请问各个阶段的作用是什么?
3.值类型与引用类型的区别?用C#事例说明?
4.编写一个冒泡排序的程序。
6.举例说明你所熟悉几种设计模式,说明各种模式在何种情况下使用?
7.你如何理解委托,一般在什么情况下用?
8.你做过的C/S结构程序中你用的是几层架构,为什么要用,各层间的关系是什么?
9.请问此程序的输出结果:
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{

public class A
{
public A()
{
Fun();
}

public virtual void Fun()
{

}

}

class B : A
{
int x = 1;
int y;
public B()
{
y = 1;
}

public override void Fun()
{
Console.WriteLine(“x={0},y={1}”, x, y);
}
}
class Program
{
static void Main(string[] args)
{
B a = new B();
Console.ReadKey();
}
}
}
10.
Student学生信息表
Id(primary key) name sex class
Sch科目表
ID(primary key) name
Score成绩表
ID Uid(foreign key references Student(Id)) Sid(foreign key references Sch (ID)) num
A求各个班的总人数
B求1班的男生和2班的女生的平均成绩
C求各个班“数据类型”课不及格的学生数量
应用存储过程写个交叉表。
回复

使用道具 举报

小黑屋|手机版|嘻皮客网 ( 京ICP备10218169号|京公网安备11010802013797  

GMT+8, 2024-4-29 14:04 , Processed in 0.164928 second(s), 21 queries , Gzip On.

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表