First impressions are the most lasting. After all, you never get __ second chance to make __
first impression.
A. a; the
B. the; the
C. a; a
D. the; a
第1题:
A.First / 1774
B.First / 1776
C.Second / 1774
D.Second / 1776
第2题:
下面程序的输出结果是【 】。
include<iostream>
using namespace std;
int x;
void funA(int&,int);
void funB(int,int&);
int main()
{
int first;
int second=5;
x=6;
funA(first,seconD) ;
fimB(first,seconD) ;
cout<<first<<" "<<second<<" "<<x<<end1;
return 0;
}
void funA(int &a,int B)
{
int first;
first=a+b;
a=2*b;
b=first+4;
}
void funB(int u,int &v)
{
int second;
second=x;
v=second+4;
x=u+v;
}
第3题:
有以下程序: #include <iostream> using namespace std; char *x[]={"First", "Second", "Third" }; void f(char *z[ ]) { cout<<*z++<<end1; } int main ( ) { char **y; y=x; f(y); return 0; }
A.产生语法错误
B.First
C.Secpnd
D.Third
第4题:
执行下列程序,显示的结果是______。
first="china"
second=""
a=LEN(first)
i=a
DO WHILE i>=1
second=second+SUBSTR(first,i,1)
i=i-1
ENDDO
?second
第5题:
下面程序的输出结果是______。
include<iostream>
using namespace std;
int x;
void funA(int&,int);
void funB(int,int&);
int main()
{
int first;
int second=5;
x=6;
funA(first,second);
funB(first,second);
cout<<first<<””<<second<<””<<x<<endl;
return 0;
}
void funA(int &a,int b)
{
int first;
first=a+b;
a=2*b;
b=first+4;
}
void funB(int u, int &v)
{
int second;
second=x;
v=second+4;
x=u+v;
}
第6题:
下列选项中,修改表名的基本语法格式是
A.ALTER TABLE表名 MODIFY 字段名1 FIRST|AFTER 字段名2
B.EXEC sp_name 旧表名,新表名
C.ALTER TABLE表名 CHANGE字段名1 数据类型 FIRST|AFTER 字段名2
D.ALTER TABLE表名 CHANGE字段名1 数据类型 FIRST|AFTER 字段名2