定位到同一字段最后一条记录中的快捷键是( )。
- A.【End】
- B.【Ctrl】+【End】
- C.【Ctrl】+【↓】
- D.【Ctrl】+【Home】
热度🔥596
解析:打开微信小程序查看本题解析
有三个关系R、S和T如下:
由关系R和S通过运算得到关系T,则所使用的运算为( )。
有以下程序(注:字符a的ASCII码值为97) :
#include
main()
{ char *s ={ "abc" };
do
{ printf ("%d", *s%10); ++s; }
while ( *s );
}
程序运行后的输出结果是( )。
若有以下程序
#include
#include
typedef struct stu { char name[10], gender;
int score;
} STU;
void f( char *p )
{ strcpy( p, "Qian" ); }
main()
{ STU a={"Zhao", 'm', 290}, b;
b=a;
f(b.name);
b.gender = 'f'; b.score = 350;
printf("%s,%c,%d,", a.name, a.gender, a.score);
printf("%s,%c,%d\n", b.name, b.gender, b.score);
}
则程序的输出结果是
设有如下通用过程:Public Function f(x As Integer) Dim y As Integer x=20 y=2 f=x * yEnd Function在窗体上画一个命令按钮,其名称为Command1,然后编写如下事件过程:Private Sub Command1_Click() Static x As Integer x=10 y=5 y=f(x) Print x; yEnd Sub程序运行后,如果单击命令按钮,则在窗体上显示的内容是( )。
下列都属于计算机低级语言的是( )。