题目内容

甲、乙为好朋友,某日甲得病急需用钱,乙便送去3000元,并对甲说:“你先用着,以后再说。”甲接收,并表示谢意。3年以后,二人因口角闹翻,乙要求甲返还3000元,被甲拒绝,理由是乙的还款请求超过了诉讼时效。甲的说法是错误的。

A. 对
B. 错

查看答案
更多问题

根据下述资料,回答第66-70题。中正集团公司因经济效益下降,亏损已成定局,董事长赵某授意财务科科长刘某在年度财务报告中做一些技术处理,刘某认为“对外报送的财务报告的真实性、完整性由单位负责人承.担责任,我服从就行了”,便虚拟了几笔销售业务,使公司财务报表由亏变盈。经财政部门签字并作了相应的处理。 对直接责任人刘某可能给予的法律制裁形式有( )。

A. 责令限期改正
B. 罚款3000~50000元
C. 给予直接开除的行政处分
D. 吊销会计从业资格证

请使用VC6或使用[答题]菜单打开考生文件夹proj2下的工程proj2,该工程中包含一个程序文件main.cpp,其中有类AutoMobile(“汽车”)及其派生类Car(“小轿车”)、Truck(“卡车”)的定义,还有主函数main的定义。请在横线处填写适当的代码并删除横线,以实现上述类定义。此程序的正确输出结果应为: 车牌号:冀ABCl234 品牌:ForLand 类别:卡车 当前档位:0 最大载重量:12 车牌号:冀ABC1234 品牌:ForLand 类别:卡车 当前档位:2 最大载重量:12 车牌号:沪XYZ5678 品牌:QQ 类别:小轿车 当前档位:0 座位数:5 车牌号:沪XYZ5678 品牌:QQ 类别:小轿车 当前档位:-1 座位数:5 注意:只能在横线处填写适当的代码,不要改动程序中的其他内容,也不要删除或移动“//****found****”。 #include <iostream> #include <iomanip> #include <cmath> using namespace std; class AutoMobile{ //"汽车"类 char * brand; //汽车品牌 char * number; //车牌号 int speed; //档位: 1、2、3、4、5, 空档: 0,倒档: -1 public: AutoMobile (const char * the_brand, const char * the_number): speed(0) { brand = new char [strlen (the_brand) +1]; //********** found********** ______; //********** found********** ______; strcpy (number, the_number); } ~AutoMobile ( ) {delete[ ] brand;delete[] number; } const char * theBrand const { reurn brand; } //返回品牌名称 const char * theNumber const{ return number; } //返回车牌号 int currentSpeed const { returnspeed; } //返回当前档位 void changeGearTo (int the speed) if(speed>= -1 && speed<=5) speed = the_speed; } virtual const char * category const =0; //类别: 卡车、小轿车等 virtual void show const { cout << "车牌号" << theNumber //**********found********** << "品牌:" << << "类别:" << category < ; } }; class Car: public AutoMobile { int seats; //座位数 public: Car (const char * the_brand, constchar * the_number, int the seats):AutoMobile (the_brand, the _number),seats (the seats) {} int numberOfSeat const { returnseats; } const char * category const{ return "小轿车"; } //返回汽车类别 void show const{ AutoMobile::show ; cout <<"座位数" <<numberOfSeat <<endl; } }; class Truck: public AutoMobile { //int max_load; //最大载重量 public: Truck (const char * the _brand,const char * the number, int the_max_load): AutoMobile (the_brand, the_number), max_load (the_max_load) { } int maxLoad const { return max_load; } //返回最大载重量 //********** found********** const char * category ______//返回汽车类别 void show const{ AutoMobile::show ; cout <<"最大载重量:" <<maxmoad <<endl; } }; int main { Truck truck ( "ForLand", "ABC1234", 12); truck.show ; truck.changeGearTo(2); truck.show ; Car car("QQ", "沪XYZ5678", 5); car.show ; car.changeGearTo(-1); car.show ; cout<<endl; return 0; }

银行汇票的绝对记载事项包括( )。

A. 无条件支付的承诺
B. 无条件支付的承诺
C. 出票日期
D. 付款日期

广州某服装公司专门生产休闲化的新款牛仔服,其“德克西”牌系列休闲服因款式新颖、舒适大方,深受不同收入阶层的青睐,在该市的同类产品市场上长期稳居第一,近年来每年的销售增长率保持在6%左右。从去年起,日本一家著名牛仔服生产商在该市正式投产,其产品给这家服装公司在该市的销售带来了巨大压力。今年上半年“德克西”牌系列的销售量比去年同期有较大幅度下降,有鉴于此,该公司决定进行战略调整,主要策略是开发新产品,经过研究发现,该市的服装消费需求出现了高档化趋势。该公司决定,终止原有产品的生产,清理存货,集中力量开发出高档、新款服装,目标市场定为高收入群体,在销售方式上,准备设立多家专卖店,直接面向顾客。 [问题] 该公司采取的新业务计划是什么

答案查题题库