一套Java+软件工程的面试题

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={},y={1}”, x, y);
}
}
class Program
{
static void Main(string[] args)
{
B a = new B();
Console.ReadKey();
}
}
}
1.
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求各个班“数据类型”课不及格的学生数量

应用存储过程写个交叉表。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值