柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
在计算机内部,大写字母“G”的ASCⅡ码为“1000111”,大写字母“K”的ASCⅡ码为( )。
A.1001001
B.1001100
C.1001010
D.1001011
热度🔥770
参考答案:D
解析:
1000111对应的十进制数是71,则“K”的码值是75,转换成二进制位1001011,故本题答案为D。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
有以下程序: #include #include typedef struct { char name[9]; char sex; int score[2]; } STU; STU f (STU a) { STU b={"Zhao", 'm', 85, 90}; int i; strcpy( a.name, b.name ); a.sex = b.sex; for ( i=0; i<2; i++ ) a.score[i] = b.score[i]; return a; } main() { STU c= { "Qian", 'f', 95, 92 }, d; d = f(c); printf ("%s,%c,%d,%d, ", d.name, d.sex, d.score[0], d.score[1]); printf ("%s,%c,%d,%d\n", c.name, c.sex, c.score[0], c.score[1]); } 程序运行后的输出结果是( )。
命令按钮Command1的事件过程如下:Private Sub Command1_Click() Dim arr(5, 5)As Integer Dim i As Integer, j As Integer For i=1 To 4 For j=2 To 4 arr(i, j)=i+j Next j Next i Print arr(1, 3)+arr(3, 4)End Sub执行上述过程,输出结果是( )。
在建立ID号为999,不给定VLAN名的VLAN时,系统自动使用的缺省VLAN名是()
关于IM系统的描述中,正确的是
标签
计算机二级Office
1000111
1001011
asc
大写字母