题目详情
当前位置:首页 > 外语类考试 > 大学英语四级
题目详情:
发布时间:2024-06-24 02:10:59

[填空题]PowerPoint is a public-speaking application included in the Microsoft Office software package.

更多"PowerPoint is a public-speaking app"的相关试题:

[单项选择]Which of the following statements should be included when teaching clients about monoamine oxidase (MAO) inhibitor antidepressants
A. Don’t take prescribed or over-the-counter medications without consulting the physician.
B. Avoid strenuous activity because of the cardiac effects of the drug.
C. Have blood levels screened weekly for leukopenia.
D. Don’t take with aspirin or nonsteroidal anti-inflammatory drugs (NSAIDs).
[单项选择]The process of software development doesn’t include ______.
A. verification function
B. writing code
C. management function
D. validation function
[单项选择]Windows provides a user-friendly graphical()including pop-up menus, scroll bars,dialogue boxes, icons and etc.
A. display
B. surface
C. interface
D. help
[单项选择]The criteria to determine a word’s category include all the following EXCEPT
A. inflection.
B. distribution.
C. meaning.
D. style.
[填空题]以下程序的输出结果是 [9] 。 include<iostream.h> include <string.h> void main 0 { char s[50]; strcpy(&s[O], "No" ); strcpy(&s[1], "123" ); strcpy (&s[2], "23456" ); cout<<s; }
[填空题]下列程序的输出结果是 [10] 。 #include<iostream.h> #include<string.h> void main( ){ char b[30]; strcpy(&b[0],"XY"); strcpy(&b[1],"YZW"); strcpy(&b[2],"ZXY"); cout<<b<<end1; }
[填空题]以下程序运行后的输出结果是 【14】
#include <iostream>
#include <string>
using namespace std;
class Y;
class X

int x;
char *strx;
public:
X(int a, char *str)

x=a;
strx=new char[strlen(str)+l];
strcpy(strx,str);

void show(Y &ob) ;
;
class Y

private:
int y;
char *stry;
public:
Y(int b,char *str)

y=b;
stry=new char[strlen(str)+l];
strcpy(stry, str);

friend void X::show(Y &ob) ;
;
void X::show(Y &ob)

cout<<strx<<",";
cout<<ob.stry<<end1;

int main( )

X a(10,"stringX");
Y b(20,"stringY");
a. show (B) ;
return 0;

[填空题]以下程序运行后的输出结果是 【17】 。 #include <stdio, h> #include <string, h> main( ) { char ch[] ="abc".,x[3] [4]: int i: for(i=0;i<3:i ++) strcpy(x[i] ,ch): for(i =0;i<3:i++) printf( "% s" ,&x[i] [i]); printf(" /n" ) }
[判断题]在PowerPoint中可以利用内容提示向导来创建新的PowerPoint幻灯片。
[填空题]以下程序的运行结果是______。 #include<iostream.h> #include<math.h> template<class T> class TAdd//定义类模板TAdd,T为类型 { Tx,y; public: TAdd (Ta,Tb) {x=a,y=b;) //构造函数 Tadd( ) { retum x+y;}//成员函数 }; void main( ) { TAdd<int>A (5,6); //定义TAdd<int>模板类的一个对象A TAddB(2.4,5.8); //定义TAdd<double>模板类的一个对象B cout<<"s1="<<A.add( )<<endl; cout<<"s2="<<B.add( )<<endl; }
[简答题]在下面程序的横线处填上适当内容,使程序执行结果为:"hello,andylin"。
#include<iostream>
#include<string.h>
using namespace std;
class mystring
public:
char*pdata;
mystring(int len)
pdata=new char[len+1];
~mystring( )
delete pdata;
void show( )cout<<pdata<<endl;

void fun(mystring**array,int len)
mystring*old=*array;
______
memcpy(*array,old,len);

void main( )
mystring str(20);
mystring*pstr=&str;
mystring**ppstr=&pstr;
strcpy(str.pdata,"hello,andylin");
fun(ppstr,20);
______

[简答题]【说明】Point是平面坐标系上的点类,Line是从Point派生出来的直线类。 #include <iostream.h> class Point {public: Point (int x, int y) ; Point (Point &p) ; ~Point( ); void set (double x, double y) ; void print( ); private:double X,Y; }; Point::Point (int x, int y) //Point 构造函数 {X=x; Y=y; } Point::Point ( (1) ) //Point 拷贝构造函数 {X=p.X; Y=p.Y;} void Point::set (double x, double y) {X=x; Y=y; } void Point::print( ) {cout<<’ (’<<X<<","<<Y<<") "<<endl; } Point::~Point( ) {cout<<"Point 的析构函数被调用! "<<endl; class Line: public Point {public: Line (int x, int y, int k) ; Line (Line &s) ; ~Line( ); void set (double x, double y, double k) void print( ); private:double K; }; (2) //Line 构造函数实现 { K=k;} (3) //Line 拷贝构造函数实现 {K=s.K;} void Line::set (double x, double y, double k) { (4) ; K=k; } void Line::print( ) {cout<<" 直线经过点"; (5) ; cout<<"斜率为: k="<<K<<endl; } Line: :~Line( ) {cout<<
[单项选择]在PowerPoint2000中,已创建的演示文稿也可以在没有安装PowerPoint2000软件的计算机上播放。要实现此功能,应对该演示文稿执行()操作。
A. 设置自定义放映
B. 设置放映方式
C. 打包
D. 发送
[填空题]以下程序运行时,若从键盘输入:10 20 30 <回车>,输出的结果是 【6】 。 #include<stdio.h> main( ) { int i=0,j=0,k=0; scanf("% d%* d%d", &i,&j,&k); prinff("%d%d%d/n",i,j,k); }
[填空题]函数main( )的功能是:在带头结点的单链表中查找数据域中值最小的结点。请填空。
#include<stdio.h>
struct node
int data;
struct node * next;

int main(struct node * first)/*指针first为链表头指针*/
struct node * p;int m;
p=first->next;m=p->data;p=p->next;
for(; p!=NULL;p=______)
if(p->data<m)m=p->data;
return m;

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码